PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.11.2
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.11.2
2.3.1 2.3.0 2.2.8 2.2.7 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.11.0 1.11.1 1.11.2 1.6 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 All 59 releases
merchant / assets / css / tooltip.css

tooltip.css in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 1.11.2, at assets/css/tooltip.css

42 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 }