mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
25 lines
546 B
Text
25 lines
546 B
Text
/* Bubble Right */
|
|
.bubble-right() {
|
|
.hacks();
|
|
position: relative;
|
|
|
|
&:before {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
z-index: -1;
|
|
content: '';
|
|
border-style: solid;
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-property, transform);
|
|
top: calc(~"50%" - @tipHeight);
|
|
right: 0;
|
|
border-width: @tipHeight 0 @tipHeight @tipWidth;
|
|
border-color: transparent transparent transparent @tipColor;
|
|
}
|
|
|
|
&:hover:before,
|
|
&:focus:before,
|
|
&:active:before {
|
|
.prefixed(transform, translateX(@tipWidth));
|
|
}
|
|
}
|