File size: 1,245 Bytes
89ce340 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
.tippy-box[data-theme~='tooltip'] {
background-color: #262626;
color: #fff;
border-radius: $borderRadius;
padding: 8px;
font-size: 12px;
line-height: 1.5;
.tippy-arrow {
width: 12px;
height: 12px;
color: #262626;
&::before {
content: '';
position: absolute;
border-color: transparent;
border-style: solid;
}
}
&[data-placement^='top'] > .tippy-arrow {
bottom: 0;
&::before {
bottom: -5px;
left: 0;
border-width: 6px 6px 0;
border-top-color: initial;
transform-origin: center top;
}
}
&[data-placement^='bottom'] > .tippy-arrow {
top: 0;
&::before {
top: -5px;
left: 0;
border-width: 0 6px 6px;
border-bottom-color: initial;
transform-origin: center bottom;
}
}
&[data-placement^='left'] > .tippy-arrow {
right: 0;
&::before {
border-width: 6px 0 6px 6px;
border-left-color: initial;
right: -5px;
transform-origin: center left;
}
}
&[data-placement^='right'] > .tippy-arrow {
left: 0;
&::before {
left: -5px;
border-width: 6px 6px 6px 0;
border-right-color: initial;
transform-origin: center right;
}
}
} |