PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.6
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.6
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 / modules / recently-viewed-products / admin / preview.css

preview.css in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 1.6, at assets/css/modules/recently-viewed-products/admin/preview.css

106 lines 3.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Recently Viewed Products
3 *
4 */
5 .merchant-module-page-preview-browser-inner {
6 display: -webkit-box;
7 display: -ms-flexbox;
8 display: flex;
9 -webkit-box-flex: 0;
10 -ms-flex-positive: 0;
11 flex-grow: 0;
12 max-width: 100%;
13 width: 100%;
14 margin: auto;
15 padding: 0 25px;
16 }
17
18 .merchant-recently-viewed-products-section {
19 width: 100%;
20 }
21
22 .merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .image-wrapper {
23 background-color: #f5f5f5;
24 height: 220px;
25 }
26
27 @media (min-width: 992px) {
28 .merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .image-wrapper {
29 height: 11vw;
30 max-height: 220px;
31 }
32 }
33
34 .merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .product-summary h3 {
35 margin-bottom: 10px;
36 }
37
38 .merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .product-summary p {
39 margin-top: 0;
40 }
41
42 .merchant-recently-viewed-products-section .merchant-recently-viewed-products .slider-navigation {
43 display: none;
44 }
45
46 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products {
47 position: relative;
48 }
49
50 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation {
51 display: -webkit-box;
52 display: -ms-flexbox;
53 display: flex;
54 -webkit-box-pack: justify;
55 -ms-flex-pack: justify;
56 justify-content: space-between;
57 padding: 0 20px;
58 position: absolute;
59 top: 0;
60 left: 0;
61 width: 100%;
62 -webkit-transform: translateY(-50%);
63 transform: translateY(-50%);
64 margin-top: calc( 107px + var( --mrc-rvp-columns-gap ));
65 z-index: 10;
66 }
67
68 @media (min-width: 992px) and (max-width: 1280px) {
69 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation {
70 margin-top: calc( 70px + var( --mrc-rvp-columns-gap ));
71 }
72 }
73
74 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev,
75 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next {
76 display: -webkit-box;
77 display: -ms-flexbox;
78 display: flex;
79 -webkit-box-align: center;
80 -ms-flex-align: center;
81 align-items: center;
82 -webkit-box-pack: center;
83 -ms-flex-pack: center;
84 justify-content: center;
85 background: var(--mrc-carousel-nav-color, #212121);
86 border-radius: 50%;
87 width: 30px;
88 height: 30px;
89 }
90
91 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev svg,
92 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next svg {
93 width: 12px;
94 height: 12px;
95 }
96
97 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev svg path,
98 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next svg path {
99 stroke: var(--mrc-carousel-nav-icon-color, #FFF);
100 }
101
102 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev:hover,
103 .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next:hover {
104 background: var(--mrc-carousel-nav-color-hover, #757575);
105 }
106