| 1 |
[data-merchant-tooltip] { |
| 2 |
position: relative; |
| 3 |
} |
| 4 |
[data-merchant-tooltip]: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 |
-webkit-transform: translate3d(-50%, 0, 0); |
| 18 |
transform: translate3d(-50%, 0, 0); |
| 19 |
-webkit-transition: ease opacity 300ms; |
| 20 |
transition: ease opacity 300ms; |
| 21 |
} |
| 22 |
[data-merchant-tooltip]:after { |
| 23 |
content: ""; |
| 24 |
position: absolute; |
| 25 |
bottom: calc(100% + 3px); |
| 26 |
left: 50%; |
| 27 |
width: 0; |
| 28 |
height: 0; |
| 29 |
border-left: 7px solid rgba(0, 0, 0, 0); |
| 30 |
border-right: 7px solid rgba(0, 0, 0, 0); |
| 31 |
border-top: 7px solid #212121; |
| 32 |
opacity: 0; |
| 33 |
visibility: hidden; |
| 34 |
-webkit-transform: translate3d(-50%, 0, 0); |
| 35 |
transform: translate3d(-50%, 0, 0); |
| 36 |
-webkit-transition: ease opacity 300ms; |
| 37 |
transition: ease opacity 300ms; |
| 38 |
} |
| 39 |
[data-merchant-tooltip]:hover:before, [data-merchant-tooltip]:hover:after { |
| 40 |
opacity: 1; |
| 41 |
visibility: visible; |
| 42 |
} |