| 1 |
[data-merchant-tooltip]] { |
| 2 |
position: relative; |
| 3 |
|
| 4 |
&:before { |
| 5 |
content: attr(data-merchant-tooltip); |
| 6 |
position: absolute; |
| 7 |
bottom: calc( 100% + 10px ); |
| 8 |
left: 50%; |
| 9 |
background: #212121; |
| 10 |
color: #FFF; |
| 11 |
padding: 11px 14px; |
| 12 |
font-size: 0.8rem; |
| 13 |
border-radius: 4px; |
| 14 |
white-space: nowrap; |
| 15 |
opacity: 0; |
| 16 |
visibility: hidden; |
| 17 |
transform: translate3d(-50%, 0, 0); |
| 18 |
transition: ease opacity 300ms; |
| 19 |
} |
| 20 |
&:after { |
| 21 |
content: ''; |
| 22 |
position: absolute; |
| 23 |
bottom: calc( 100% + 3px ); |
| 24 |
left: 50%; |
| 25 |
width: 0; |
| 26 |
height: 0; |
| 27 |
border-left: 7px solid rgba(0,0,0,0); |
| 28 |
border-right: 7px solid rgba(0,0,0,0); |
| 29 |
border-top: 7px solid #212121; |
| 30 |
opacity: 0; |
| 31 |
visibility: hidden; |
| 32 |
transform: translate3d(-50%, 0, 0); |
| 33 |
transition: ease opacity 300ms; |
| 34 |
} |
| 35 |
|
| 36 |
&:hover { |
| 37 |
&:before, |
| 38 |
&:after { |
| 39 |
opacity: 1; |
| 40 |
visibility: visible; |
| 41 |
} |
| 42 |
} |
| 43 |
} |