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 / size-chart / size-chart.css

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

239 lines 5.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .merchant-product-size-chart {
2 margin-bottom: 20px;
3 }
4
5 .merchant-product-size-chart-button {
6 display: -webkit-box;
7 display: -ms-flexbox;
8 display: flex;
9 }
10
11 .merchant-product-size-chart-button a,
12 .merchant-product-size-chart-button a:visited {
13 display: -webkit-box;
14 display: -ms-flexbox;
15 display: flex;
16 grid-gap: 8px;
17 -webkit-box-align: center;
18 -ms-flex-align: center;
19 align-items: center;
20 font-size: 0.9rem;
21 font-weight: bold;
22 color: var(--mrc-sc-title-text-color, #212121);
23 }
24
25 .merchant-product-size-chart-button a:hover {
26 color: var(--mrc-sc-title-text-color-hover, #757575);
27 }
28
29 .merchant-product-size-chart-button svg {
30 fill: var(--mrc-sc-icon-color, var(--mrc-sc-title-text-color, #212121));
31 width: var(--mrc-sc-icon-size, 24px);
32 height: var(--mrc-sc-icon-size, 24px);
33 -webkit-transition: all .2s;
34 transition: all .2s;
35 }
36
37 .merchant-product-size-chart-button a:hover svg {
38 fill: var(--mrc-sc-icon-color-hover, var(--mrc-sc-title-text-color-hover, #757575));
39 }
40
41 .merchant-product-size-chart-modal {
42 display: none;
43 position: fixed;
44 z-index: 99999;
45 top: 0;
46 left: 0;
47 right: 0;
48 bottom: 0;
49 background-color: rgba(0, 0, 0, 0.85);
50 }
51
52 .merchant-product-size-chart-modal-open {
53 overflow: hidden;
54 }
55
56 .merchant-product-size-chart-modal-open .bhfb-header {
57 z-index: 0;
58 }
59
60 .merchant-product-size-chart-modal-open .merchant-product-size-chart-modal {
61 display: -webkit-box;
62 display: -ms-flexbox;
63 display: flex;
64 -webkit-box-pack: center;
65 -ms-flex-pack: center;
66 justify-content: center;
67 -webkit-box-align: center;
68 -ms-flex-align: center;
69 align-items: center;
70 }
71
72 .merchant-product-size-chart-modal-inner {
73 position: relative;
74 z-index: 1;
75 display: -webkit-box;
76 display: -ms-flexbox;
77 display: flex;
78 -webkit-box-orient: vertical;
79 -webkit-box-direction: normal;
80 -ms-flex-direction: column;
81 flex-direction: column;
82 padding: 30px 40px;
83 width: var(--mrc-sc-popup-width, 750px);
84 max-width: 90%;
85 max-height: calc(100% - 100px);
86 overflow-y: auto;
87 font-size: 14px;
88 background-color: var(--mrc-sc-background-color, #f2f2f2);
89 }
90
91 .merchant-product-size-chart-modal-inner > *:last-child {
92 margin-bottom: 0;
93 }
94
95 .merchant-product-size-chart-modal-title {
96 margin-bottom: 20px;
97 }
98
99 .merchant-product-size-chart-modal-tabs {
100 display: -webkit-box;
101 display: -ms-flexbox;
102 display: flex;
103 -ms-flex-wrap: wrap;
104 flex-wrap: wrap;
105 -webkit-box-pack: center;
106 -ms-flex-pack: center;
107 justify-content: center;
108 margin-bottom: 30px;
109 }
110
111 .merchant-product-size-chart-modal-tabs:empty {
112 display: none;
113 }
114
115 .merchant-product-size-chart-modal-tab {
116 cursor: pointer;
117 margin: 0;
118 padding: 10px 15px;
119 font-size: 14px;
120 font-weight: bold;
121 text-align: center;
122 min-width: 100px;
123 max-width: 100%;
124 color: var(--mrc-sc-tabs-color, #757575);
125 border-bottom: 3px solid var(--mrc-sc-tabs-color, #757575);
126 }
127
128 .merchant-product-size-chart-modal-tab.active {
129 color: var(--mrc-sc-tabs-color-active, #212121);
130 border-bottom-color: var(--mrc-sc-tabs-color-active, #212121);
131 }
132
133 .merchant-product-size-chart-modal-tables {
134 margin-bottom: 30px;
135 }
136
137 .merchant-product-size-chart-modal-table {
138 display: none;
139 border: 0;
140 margin: 0;
141 padding: 0;
142 text-align: center;
143 table-layout: fixed;
144 }
145
146 .merchant-product-size-chart-modal-table.active {
147 display: table;
148 }
149
150 .merchant-product-size-chart-modal-table tr,
151 .merchant-product-size-chart-modal-table th,
152 .merchant-product-size-chart-modal-table td {
153 padding: 7px;
154 border: 1px solid rgba(0, 0, 0, 0.1);
155 color: var(--mrc-sc-table-body-text-color, #212121);
156 background-color: var(--mrc-sc-table-body-background-color, #ffffff);
157 }
158
159 .merchant-product-size-chart-modal-table thead tr,
160 .merchant-product-size-chart-modal-table thead th {
161 border: 0;
162 color: var(--mrc-sc-table-headings-text-color, #ffffff);
163 background-color: var(--mrc-sc-table-headings-background-color, #212121);
164 border: 1px solid rgba(255, 255, 255, 0.1);
165 }
166
167 .merchant-product-size-chart-modal-close {
168 -webkit-user-select: none;
169 -moz-user-select: none;
170 -ms-user-select: none;
171 user-select: none;
172 cursor: pointer;
173 position: absolute;
174 z-index: 1;
175 top: 10px;
176 right: 10px;
177 width: 30px;
178 height: 30px;
179 display: -webkit-box;
180 display: -ms-flexbox;
181 display: flex;
182 -webkit-box-pack: center;
183 -ms-flex-pack: center;
184 justify-content: center;
185 -webkit-box-align: center;
186 -ms-flex-align: center;
187 align-items: center;
188 font-size: 14px;
189 line-height: 1em;
190 color: #fff;
191 }
192
193 .merchant-product-size-chart-modal-close svg {
194 fill: var(--mrc-sc-close-icon-color, #212121);
195 width: 1em;
196 height: 1em;
197 -webkit-transition: all .2s;
198 transition: all .2s;
199 }
200
201 .merchant-product-size-chart-modal-close svg path {
202 -webkit-transform: scale(0.75);
203 transform: scale(0.75);
204 }
205
206 .merchant-product-size-chart-modal-close:hover svg {
207 fill: var(--mrc-sc-close-icon-color-hover, #757575);
208 }
209
210 .merchant-product-size-chart-modal-title {
211 font-size: 20px;
212 text-transform: uppercase;
213 font-weight: bold;
214 text-align: center;
215 color: var(--mrc-sc-title-color, #212121);
216 }
217
218 .merchant-product-size-chart-modal-content {
219 color: var(--mrc-sc-description-text-color, #212121);
220 }
221
222 .merchant-product-size-chart-modal-content a {
223 color: var(--mrc-sc-description-link-color, #212121);
224 }
225
226 .merchant-product-size-chart-modal-content a:hover {
227 color: var(--mrc-sc-description-link-color-hover, #757575);
228 }
229
230 .merchant-product-size-chart-modal-content > *:last-child {
231 margin-bottom: 0;
232 }
233
234 @media (max-width: 768px) {
235 .merchant-product-size-chart-modal-inner {
236 max-height: 100%;
237 }
238 }
239