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 / quick-view / 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/quick-view/admin/preview.css

121 lines 3.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * Admin Preview
3 * Quick View
4 *
5 */
6 .merchant-module-page-preview-browser-inner {
7 display: -webkit-box;
8 display: -ms-flexbox;
9 display: flex;
10 -webkit-box-flex: 0;
11 -ms-flex-positive: 0;
12 flex-grow: 0;
13 max-width: 300px;
14 width: 100%;
15 margin: auto;
16 padding: 55px 25px;
17 }
18
19 .merchant-quick-view-preview {
20 width: 100%;
21 }
22
23 .merchant-quick-view-preview .image-wrapper {
24 position: relative;
25 height: 11vw;
26 max-height: 220px;
27 background-color: #f5f5f5;
28 }
29
30 .merchant-quick-view-preview h3 {
31 margin-bottom: 10px;
32 }
33
34 .merchant-quick-view-preview p {
35 margin-top: 0;
36 }
37
38 .merchant-quick-view-preview .add_to_cart_button,
39 .merchant-quick-view-preview .merchant-quick-view-button {
40 display: inline-block;
41 background-color: #212121;
42 font-size: 0.9rem;
43 color: #FFF;
44 padding: 12px 25px;
45 text-decoration: none;
46 margin: 0.5em 0;
47 white-space: nowrap;
48 }
49
50 .merchant-quick-view-preview .merchant-quick-view-button {
51 color: var(--mrc-qv-button-color, #FFF);
52 background-color: var(--mrc-qv-button-bg-color, #212121);
53 border-color: var(--mrc-qv-button-border-color, #212121);
54 }
55
56 .merchant-quick-view-preview .merchant-quick-view-button svg {
57 fill: var(--mrc-qv-button-icon-color, #FFF);
58 width: 15px;
59 }
60
61 .merchant-quick-view-preview .merchant-quick-view-button:hover {
62 color: var(--mrc-qv-button-color-hover, #FFF);
63 background-color: var(--mrc-qv-button-bg-color-hover, #414141);
64 border-color: var(--mrc-qv-button-border-color-hover, #414141);
65 }
66
67 .merchant-quick-view-preview .merchant-quick-view-button:hover svg {
68 fill: var(--mrc-qv-button-icon-color-hover, #FFF);
69 }
70
71 .merchant-quick-view-preview .button-position {
72 display: none;
73 }
74
75 .merchant-quick-view-preview.before .button-position-before {
76 display: block;
77 }
78
79 .merchant-quick-view-preview.after .button-position-after {
80 display: block;
81 }
82
83 .merchant-quick-view-preview.overlay .button-position-overlay {
84 display: block;
85 }
86
87 .merchant-quick-view-preview.overlay .button-position-overlay .merchant-quick-view-button {
88 position: absolute;
89 top: var(--mrc-qv-button-position-top, 50%);
90 left: var(--mrc-qv-button-position-left, 50%);
91 -webkit-transform: translate(calc(var(--mrc-qv-button-position-top, 50%) * -1), calc(var(--mrc-qv-button-position-left, 50%) * -1));
92 transform: translate(calc(var(--mrc-qv-button-position-top, 50%) * -1), calc(var(--mrc-qv-button-position-left, 50%) * -1));
93 }
94
95 .merchant-quick-view-preview .merchant-quick-view-button .button-type {
96 display: none;
97 }
98
99 .merchant-quick-view-preview .merchant-quick-view-button.icon .button-type-icon {
100 display: block;
101 }
102
103 .merchant-quick-view-preview .merchant-quick-view-button.icon-text .button-type-icon-text {
104 display: -webkit-box;
105 display: -ms-flexbox;
106 display: flex;
107 -webkit-box-align: center;
108 -ms-flex-align: center;
109 align-items: center;
110 gap: 10px;
111 }
112
113 .merchant-quick-view-preview .merchant-quick-view-button.icon-text .button-type-icon-text .quick-view-icon {
114 position: relative;
115 top: 2px;
116 }
117
118 .merchant-quick-view-preview .merchant-quick-view-button.text .button-type-text {
119 display: block;
120 }
121