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 / modules / quick-view / admin / preview.css
assets/css/modules/quick-view/admin
preview.css 3.0 KB 1 month ago preview.min.css 2.7 KB 1 month ago

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

102 lines 3.0 KB 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 .merchant-quick-view-preview .image-wrapper {
23 position: relative;
24 height: 11vw;
25 max-height: 220px;
26 background-color: #f5f5f5;
27 }
28 .merchant-quick-view-preview h3 {
29 margin-bottom: 10px;
30 }
31 .merchant-quick-view-preview p {
32 margin-top: 0;
33 }
34 .merchant-quick-view-preview .add_to_cart_button,
35 .merchant-quick-view-preview .merchant-quick-view-button {
36 display: inline-block;
37 background-color: #212121;
38 font-size: 0.9rem;
39 color: #FFF;
40 padding: 12px 25px;
41 text-decoration: none;
42 margin: 0.5em 0;
43 white-space: nowrap;
44 }
45 .merchant-quick-view-preview .merchant-quick-view-button {
46 color: var(--mrc-qv-button-color, #FFF);
47 background-color: var(--mrc-qv-button-bg-color, #212121);
48 border-color: var(--mrc-qv-button-border-color, #212121);
49 }
50 .merchant-quick-view-preview .merchant-quick-view-button svg {
51 fill: var(--mrc-qv-button-icon-color, #FFF);
52 width: 15px;
53 }
54 .merchant-quick-view-preview .merchant-quick-view-button:hover {
55 color: var(--mrc-qv-button-color-hover, #FFF);
56 background-color: var(--mrc-qv-button-bg-color-hover, #414141);
57 border-color: var(--mrc-qv-button-border-color-hover, #414141);
58 }
59 .merchant-quick-view-preview .merchant-quick-view-button:hover svg {
60 fill: var(--mrc-qv-button-icon-color-hover, #FFF);
61 }
62 .merchant-quick-view-preview .button-position {
63 display: none;
64 }
65 .merchant-quick-view-preview.before .button-position-before {
66 display: block;
67 }
68 .merchant-quick-view-preview.after .button-position-after {
69 display: block;
70 }
71 .merchant-quick-view-preview.overlay .button-position-overlay {
72 display: block;
73 }
74 .merchant-quick-view-preview.overlay .button-position-overlay .merchant-quick-view-button {
75 position: absolute;
76 top: var(--mrc-qv-button-position-top, 50%);
77 left: var(--mrc-qv-button-position-left, 50%);
78 -webkit-transform: translate(calc(var(--mrc-qv-button-position-top, 50%) * -1), calc(var(--mrc-qv-button-position-left, 50%) * -1));
79 transform: translate(calc(var(--mrc-qv-button-position-top, 50%) * -1), calc(var(--mrc-qv-button-position-left, 50%) * -1));
80 }
81 .merchant-quick-view-preview .merchant-quick-view-button .button-type {
82 display: none;
83 }
84 .merchant-quick-view-preview .merchant-quick-view-button.icon .button-type-icon {
85 display: block;
86 }
87 .merchant-quick-view-preview .merchant-quick-view-button.icon-text .button-type-icon-text {
88 display: -webkit-box;
89 display: -ms-flexbox;
90 display: flex;
91 -webkit-box-align: center;
92 -ms-flex-align: center;
93 align-items: center;
94 gap: 10px;
95 }
96 .merchant-quick-view-preview .merchant-quick-view-button.icon-text .button-type-icon-text .quick-view-icon {
97 position: relative;
98 top: 2px;
99 }
100 .merchant-quick-view-preview .merchant-quick-view-button.text .button-type-text {
101 display: block;
102 }