PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 2.3.1
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v2.3.1
2.3.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 All 60 releases
merchant / assets / css / tooltip.css
assets/css
admin 1 month ago compatibility 1 month ago modules 1 month ago carousel.css 5.8 KB 1 month ago carousel.min.css 5.1 KB 1 month ago grid.css 1.1 KB 1 month ago grid.min.css 774 B 1 month ago merchant.css 10.4 KB 1 month ago merchant.min.css 9.2 KB 1 month ago modal.css 1.5 KB 1 month ago modal.min.css 1.2 KB 1 month ago pagination.css 4.3 KB 1 month ago pagination.min.css 3.5 KB 1 month ago tooltip.css 1.1 KB 1 month ago tooltip.min.css 919 B 1 month ago

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

42 lines 1.1 KB 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 }