PluginProbe
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant / 1.8
Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant v1.8
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 / sass / modules / countdown-timer / admin / preview.scss

preview.scss in Product Labels, Quick View, Buy Now, Pre-Orders, Frequently Bought Together & More for WooCommerce – Merchant 1.8, at assets/sass/modules/countdown-timer/admin/preview.scss

103 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Admin Preview
3 * Countdown Timer
4 *
5 */
6
7 // Canvas.
8 .merchant-module-page-preview-browser-inner {
9 display: flex;
10 flex-grow: 0;
11 width: 100%;
12 margin: auto;
13 padding: 25px;
14 }
15
16 // Canvas Placeholder (Single Product Style).
17 .mrc-preview-single-product-elements {
18 width: 100%;
19 display: flex;
20 gap: 25px;
21
22 .mrc-preview-left-column {
23 width: 30%;
24 min-width: 30%;
25 }
26
27 .mrc-preview-right-column {
28 width: 70%;
29 padding-top: 25px;
30 }
31
32 .mrc-preview-product-image-wrapper {
33 .mrc-preview-product-image {
34 background-color: #f5f5f5;
35 height: 12vw;
36 }
37
38 .mrc-preview-product-image-thumbs {
39 width: 100%;
40 display: flex;
41 gap: 10px;
42 flex-wrap: nowrap;
43
44 .mrc-preview-product-image-thumb {
45 width: 100%;
46 height: 3vw;
47 background-color: #f5f5f5;
48 margin-top: 10px;
49 }
50 }
51 }
52 }
53
54 .mrc-mw-70 {
55 max-width: 70%;
56 }
57
58 .mrc-mw-30 {
59 max-width: 30%;
60 }
61
62 .mrc-mw-40 {
63 max-width: 40%;
64 }
65
66 @media(max-width: 1281px) {
67 .mrc-hide-on-smaller-screens {
68 display: none;
69 }
70 }
71
72 .mrc-preview-text-placeholder {
73 background-color: #f5f5f5;
74 height: 13px;
75
76 & + .mrc-preview-text-placeholder,
77 & + .mrc-preview-addtocart-placeholder {
78 margin-top: 15px;
79 }
80 }
81
82 .mrc-preview-addtocart-placeholder {
83 background-color: #e5e5e5;
84 width: 140px;
85 height: 30px;
86 }
87
88 @media(max-width: 991px) {
89 .mrc-preview-single-product-elements {
90 .mrc-preview-product-image-wrapper {
91 .mrc-preview-product-image {
92 height: 33vw;
93 }
94
95 .mrc-preview-product-image-thumbs {
96 .mrc-preview-product-image-thumb {
97 height: 7vw;
98 }
99 }
100 }
101 }
102 }
103