PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 3.1.4
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v3.1.4
3.1.4 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 All 93 releases
ultimate-store-kit / src / scss / widgets / product-table.scss

product-table.scss in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 3.1.4, at src/scss/widgets/product-table.scss

278 lines 6.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .usk-wc-products-table {
2 overflow-x: auto;
3
4 .usk-rating {
5 display: table-cell !important;
6 }
7
8
9 .dataTables_wrapper {
10 margin-bottom: 50px;
11
12 .dataTables_length {
13 float: left;
14
15 label {
16 font-size: 16px;
17 text-transform: capitalize;
18 color: #1f2027;
19 display: flex;
20 align-items: center;
21 grid-column-gap: 12px;
22
23 select {
24 height: auto;
25 width: auto;
26 border-color: #d0d1e9;
27 border-radius: 3px;
28 }
29 }
30 }
31
32 .dataTables_info {
33 float: left;
34 }
35
36 .dataTables_paginate {
37 float: right;
38 margin-top: 20px;
39
40 a {
41 display: inline-block;
42 padding-left: 4px;
43 padding-right: 4px;
44 cursor: pointer;
45 }
46 }
47
48 .dataTables_filter {
49 float: left;
50 margin-bottom: 20px;
51 margin-top: 15px;
52
53 label {
54 font-size: 16px;
55 font-weight: 500;
56 color: #403f3f;
57 text-transform: capitalize;
58 display: flex;
59 align-items: center;
60
61 input {
62 border-radius: 3px;
63 // padding: 8px;
64 // height: 40px;
65 background-color: transparent;
66 border: 1px solid #ddd;
67 padding: 9px 10px;
68 border-radius: 2px;
69 margin-left: 8px;
70 outline: none;
71
72 &:focus {
73 border: 1px solid #a0a0a0;
74 border-radius: none;
75 }
76 }
77 }
78 }
79 }
80
81 .usk-wc-product {
82 width: 100%;
83 margin: 0 auto;
84 clear: both;
85 border-collapse: separate;
86 border-spacing: 0;
87 // border: 1px solid #c1c1c18c;
88 border-collapse: collapse;
89 text-align: left;
90
91 th,
92 td {
93 padding: 10px 18px;
94 border-collapse: collapse;
95 }
96
97 thead {
98 white-space: nowrap;
99
100 th {
101 display: table-cell;
102 background: #e62a3f;
103 color: #fff;
104 font-size: 16px;
105 font-weight: 600;
106 }
107
108 .shorting {
109 background-image: none;
110
111 &::before {
112 content: '';
113 }
114
115 &::after {
116 content: '';
117 }
118 }
119 }
120
121 tbody {
122 .usk-thumb {
123 width: 60px !important;
124 }
125
126 .usk-title {
127 .usk-wc-product-title {
128 font-size: 16px;
129 font-weight: 500;
130 line-height: 1.4;
131
132 a {
133 color: #e62a3f;
134 }
135 }
136 }
137
138 .usk-excerpt {
139 width: 350px !important;
140
141 .usk-wc-product-excerpt {
142 font-size: 14px;
143 color: #7d7575;
144 line-height: 1.6;
145 }
146 }
147
148 .usk-categories {
149 .usk-wc-product-categories {
150 a {
151 font-size: 14px;
152 color: #e62a3f;
153 font-weight: 500;
154 }
155 }
156 }
157
158 .usk-price {
159 .usk-wc-product-price {
160 .price {
161 font-size: 14px;
162 font-weight: 500;
163 color: #5c5959;
164 margin: 0;
165
166 del {
167 font-weight: 300;
168 color: #928f8f;
169 }
170
171 ins {
172 background: transparent;
173 text-decoration: none;
174 padding-left: 5px;
175 }
176 }
177 }
178 }
179
180 .usk-quick-view-title {
181 .usk-shoping-icon-quickview {
182 background: #e62a3f;
183 padding: 4px 8px;
184 color: #fff;
185 border-radius: 3px;
186 font-size: 14px;
187 }
188 }
189
190 .usk-wc-quantity {
191 .quantity {
192 input {
193 height: 37px;
194 width: 80px;
195 padding: 5px;
196 outline: none;
197 border: 1px solid #dacecf;
198 color: #716b6b;
199 border-radius: 3px;
200 background: transparent;
201
202 &:focus {
203 border: 1px solid #a8a3a4;
204 }
205 }
206 }
207 }
208 }
209
210 .usk-wc-add-to-cart {
211 .add_to_cart_button.added {
212 display: none !important;
213 }
214
215 .button,
216 .added_to_cart {
217 background: #e62a3f;
218 width: 100px;
219 height: 35px;
220 line-height: 35px;
221 text-align: center;
222 font-size: 12px;
223 color: #fff;
224 font-weight: 600;
225 border-radius: 3px;
226 display: inline-block;
227 padding: 0;
228 }
229 }
230 }
231 table:not(.cell-border) {
232 th,
233 td {
234 border: none;
235 border-block-start: none !important;
236 }
237 }
238 .cell-border th {
239 border: 1px solid #ddd !important;
240 }
241 }
242
243 // table td,
244 // table th,
245 // .wp-block-table td,
246 // .wp-block-table th {
247 // border: transparent;
248 // }
249
250 table.dataTable.stripe tbody tr.odd,
251 table.dataTable.display tbody tr.odd {
252 background-color: #f9f9f9;
253 }
254
255 @media (min-width: 768px) {
256 .usk-wc-products-table {
257 overflow: auto;
258
259 .dataTables_wrapper {
260 .dataTables_filter {
261 float: right;
262 margin-top: 0;
263 }
264 }
265 }
266 }
267
268 @media (min-width: 1024px) {}
269
270 @media (min-width: 1400px) {
271 .usk-wc-products-table {
272 overflow: visible;
273 }
274 }
275
276 // table.dataTable thead th, table.dataTable thead td {
277 // background-color: transparent !important;
278 // }