quasar-ui-sellmate-ui-kit 3.2.19 → 3.2.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +2 -2
- package/dist/index.css +461 -328
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +2 -2
- package/dist/index.rtl.css +461 -328
- package/dist/index.rtl.min.css +2 -2
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/STable.vue +7 -1
- package/src/css/default.scss +111 -592
package/src/css/default.scss
CHANGED
|
@@ -16,85 +16,42 @@
|
|
|
16
16
|
// s-@@-xl - 22px
|
|
17
17
|
// s-@@-xxl - 30px
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
padding-bottom: 6px;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.s-pr-xxs {
|
|
33
|
-
padding-right: 6px;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.s-pl-xxs {
|
|
37
|
-
padding-left: 6px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.s-py-xxs {
|
|
41
|
-
padding-top: 6px;
|
|
42
|
-
padding-bottom: 6px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.s-px-xxs {
|
|
46
|
-
padding-right: 6px;
|
|
47
|
-
padding-left: 6px;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.s-pa-xs {
|
|
51
|
-
padding: 10px;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.s-pt-xs {
|
|
55
|
-
padding-top: 10px;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.s-pb-xs {
|
|
59
|
-
padding-bottom: 10px;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.s-pr-xs {
|
|
63
|
-
padding-right: 10px;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.s-pl-xs {
|
|
67
|
-
padding-left: 10px;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.s-py-xs {
|
|
71
|
-
padding-top: 10px;
|
|
72
|
-
padding-bottom: 10px;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.s-px-xs {
|
|
76
|
-
padding-right: 10px;
|
|
77
|
-
padding-left: 10px;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
.s-pa-sm {
|
|
81
|
-
padding: 12px;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.s-pt-sm {
|
|
85
|
-
padding-top: 12px;
|
|
86
|
-
}
|
|
19
|
+
/***** spacing *****/
|
|
20
|
+
$sellmate-spacings: (
|
|
21
|
+
'xxs': 6,
|
|
22
|
+
'xs': 10,
|
|
23
|
+
'sm': 12,
|
|
24
|
+
'md': 18,
|
|
25
|
+
'lg': 20,
|
|
26
|
+
'xl': 22,
|
|
27
|
+
'xxl': 30,
|
|
28
|
+
);
|
|
87
29
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
30
|
+
$direction-positions: (
|
|
31
|
+
'l': (left),
|
|
32
|
+
'r': (right),
|
|
33
|
+
't': (top),
|
|
34
|
+
'b': (bottom),
|
|
35
|
+
'x': (left, right),
|
|
36
|
+
'y': (top, bottom),
|
|
37
|
+
'a': (left, right, top, bottom)
|
|
38
|
+
);
|
|
91
39
|
|
|
92
|
-
|
|
93
|
-
|
|
40
|
+
@mixin spacing($property, $size, $position) {
|
|
41
|
+
@each $dir in map-get($direction-positions, $position) {
|
|
42
|
+
#{$property}-#{$dir}: #{$size}px;
|
|
43
|
+
}
|
|
94
44
|
}
|
|
95
45
|
|
|
96
|
-
|
|
97
|
-
|
|
46
|
+
@each $key, $value in $sellmate-spacings {
|
|
47
|
+
@each $p in ('t', 'r', 'b', 'l', 'x', 'y', 'a') {
|
|
48
|
+
.s-m#{$p}-#{$key} {
|
|
49
|
+
@include spacing(margin, #{$value}, #{$p});
|
|
50
|
+
}
|
|
51
|
+
.s-p#{$p}-#{$key} {
|
|
52
|
+
@include spacing(padding, #{$value}, #{$p});
|
|
53
|
+
}
|
|
54
|
+
}
|
|
98
55
|
}
|
|
99
56
|
|
|
100
57
|
.s-py-sm {
|
|
@@ -102,376 +59,19 @@
|
|
|
102
59
|
padding-bottom: 12px !important;
|
|
103
60
|
}
|
|
104
61
|
|
|
105
|
-
.s-px-sm {
|
|
106
|
-
padding-right: 12px;
|
|
107
|
-
padding-left: 12px;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.s-pa-md {
|
|
111
|
-
padding: 18px;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.s-pt-md {
|
|
115
|
-
padding-top: 18px;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.s-pb-md {
|
|
119
|
-
padding-bottom: 18px;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.s-pr-md {
|
|
123
|
-
padding-right: 18px;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.s-pl-md {
|
|
127
|
-
padding-left: 18px;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.s-py-md {
|
|
131
|
-
padding-top: 18px;
|
|
132
|
-
padding-bottom: 18px;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.s-px-md {
|
|
136
|
-
padding-right: 18px;
|
|
137
|
-
padding-left: 18px;
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.s-pa-lg {
|
|
141
|
-
padding: 20px;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.s-pt-lg {
|
|
145
|
-
padding-top: 20px;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.s-pb-lg {
|
|
149
|
-
padding-bottom: 20px;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.s-pr-lg {
|
|
153
|
-
padding-right: 20px;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.s-pl-lg {
|
|
157
|
-
padding-left: 20px;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.s-py-lg {
|
|
161
|
-
padding-top: 20px;
|
|
162
|
-
padding-bottom: 20px;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
62
|
.s-px-lg {
|
|
166
63
|
padding-right: 20px !important;
|
|
167
64
|
padding-left: 20px !important;
|
|
168
65
|
}
|
|
169
66
|
|
|
170
|
-
.s-pa-xl {
|
|
171
|
-
padding: 22px;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.s-pt-xl {
|
|
175
|
-
padding-top: 22px;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.s-pb-xl {
|
|
179
|
-
padding-bottom: 22px;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.s-pr-xl {
|
|
183
|
-
padding-right: 22px;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.s-pl-xl {
|
|
187
|
-
padding-left: 22px;
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.s-py-xl {
|
|
191
|
-
padding-top: 22px;
|
|
192
|
-
padding-bottom: 22px;
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.s-px-xl {
|
|
196
|
-
padding-right: 22px;
|
|
197
|
-
padding-left: 22px;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
.s-pa-xxl {
|
|
201
|
-
padding: 30px;
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.s-pt-xxl {
|
|
205
|
-
padding-top: 30px;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.s-pb-xxl {
|
|
209
|
-
padding-bottom: 30px;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.s-pr-xxl {
|
|
213
|
-
padding-right: 30px;
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
.s-pl-xxl {
|
|
217
|
-
padding-left: 30px;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.s-py-xxl {
|
|
221
|
-
padding-top: 30px;
|
|
222
|
-
padding-bottom: 30px;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.s-px-xxl {
|
|
226
|
-
padding-right: 30px;
|
|
227
|
-
padding-left: 30px;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
.s-pa-none {
|
|
231
|
-
padding: 0 !important;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
// margin
|
|
235
|
-
.s-ma-xxs {
|
|
236
|
-
margin: 6px;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.s-mt-xxs {
|
|
240
|
-
margin-top: 6px;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.s-mb-xxs {
|
|
244
|
-
margin-bottom: 6px;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.s-mr-xxs {
|
|
248
|
-
margin-right: 6px;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.s-ml-xxs {
|
|
252
|
-
margin-left: 6px;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
.s-my-xxs {
|
|
256
|
-
margin-top: 6px;
|
|
257
|
-
margin-bottom: 6px;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.s-mx-xxs {
|
|
261
|
-
margin-left: 6px;
|
|
262
|
-
margin-right: 6px;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.s-ma-xs {
|
|
266
|
-
margin: 10px;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.s-mt-xs {
|
|
270
|
-
margin-top: 10px;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.s-mb-xs {
|
|
274
|
-
margin-bottom: 10px;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
.s-mr-xs {
|
|
278
|
-
margin-right: 10px;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.s-ml-xs {
|
|
282
|
-
margin-left: 10px;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.s-my-xs {
|
|
286
|
-
margin-top: 10px;
|
|
287
|
-
margin-bottom: 10px;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.s-mx-xs {
|
|
291
|
-
margin-left: 10px;
|
|
292
|
-
margin-right: 10px;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.s-ma-sm {
|
|
296
|
-
margin: 12px;
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
.s-mt-sm {
|
|
300
|
-
margin-top: 12px;
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
.s-mb-sm {
|
|
304
|
-
margin-bottom: 12px;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
67
|
.s-mr-sm {
|
|
308
|
-
margin-right: 12px;
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.s-ml-sm {
|
|
312
|
-
margin-left: 12px;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.s-my-sm {
|
|
316
|
-
margin-top: 12px;
|
|
317
|
-
margin-bottom: 12px;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.s-mx-sm {
|
|
321
|
-
margin-left: 12px;
|
|
322
|
-
margin-right: 12px;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.s-ma-md {
|
|
326
|
-
margin: 18px;
|
|
327
|
-
}
|
|
328
|
-
|
|
329
|
-
.s-mt-md {
|
|
330
|
-
margin-top: 18px;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.s-mb-md {
|
|
334
|
-
margin-bottom: 18px;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
.s-mr-md {
|
|
338
|
-
margin-right: 18px;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
.s-ml-md {
|
|
342
|
-
margin-left: 18px;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.s-my-md {
|
|
346
|
-
margin-top: 18px;
|
|
347
|
-
margin-bottom: 18px;
|
|
348
|
-
}
|
|
349
|
-
|
|
350
|
-
.s-mx-md {
|
|
351
|
-
margin-left: 18px;
|
|
352
|
-
margin-right: 18px;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
.s-ma-lg {
|
|
356
|
-
margin: 20px;
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
.s-mt-lg {
|
|
360
|
-
margin-top: 20px;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
.s-mb-lg {
|
|
364
|
-
margin-bottom: 20px;
|
|
68
|
+
margin-right: 12px !important;
|
|
365
69
|
}
|
|
366
70
|
|
|
367
71
|
.s-mr-lg {
|
|
368
72
|
margin-right: 20px !important; // rfid issue-history
|
|
369
73
|
}
|
|
370
74
|
|
|
371
|
-
.s-ml-lg {
|
|
372
|
-
margin-left: 20px;
|
|
373
|
-
}
|
|
374
|
-
|
|
375
|
-
.s-my-lg {
|
|
376
|
-
margin-top: 20px;
|
|
377
|
-
margin-bottom: 20px;
|
|
378
|
-
}
|
|
379
|
-
|
|
380
|
-
.s-mx-lg {
|
|
381
|
-
margin-left: 20px;
|
|
382
|
-
margin-right: 20px;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
.s-ma-xl {
|
|
386
|
-
margin: 22px;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
.s-mt-xl {
|
|
390
|
-
margin-top: 22px;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.s-mb-xl {
|
|
394
|
-
margin-bottom: 22px;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.s-mr-xl {
|
|
398
|
-
margin-right: 22px;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
.s-ml-xl {
|
|
402
|
-
margin-left: 22px;
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
.s-my-xl {
|
|
406
|
-
margin-top: 22px;
|
|
407
|
-
margin-bottom: 22px;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.s-mx-xl {
|
|
411
|
-
margin-left: 22px;
|
|
412
|
-
margin-right: 22px;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
.s-ma-xxl {
|
|
416
|
-
margin: 30px;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
.s-mt-xxl {
|
|
420
|
-
margin-top: 30px;
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
.s-mb-xxl {
|
|
424
|
-
margin-bottom: 30px;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.s-mr-xxl {
|
|
428
|
-
margin-right: 30px;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
|
-
.s-ml-xxl {
|
|
432
|
-
margin-left: 30px;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
.s-my-xxl {
|
|
436
|
-
margin-top: 30px;
|
|
437
|
-
margin-bottom: 30px;
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
.s-mx-xxl {
|
|
441
|
-
margin-left: 30px;
|
|
442
|
-
margin-right: 30px;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.s-ma-xxl {
|
|
446
|
-
margin: 30px;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
.s-mt-xxl {
|
|
450
|
-
margin-top: 30px;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.s-mb-xxl {
|
|
454
|
-
margin-bottom: 30px;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.s-mr-xxl {
|
|
458
|
-
margin-right: 30px;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.s-ml-xxl {
|
|
462
|
-
margin-left: 30px;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.s-my-xxl {
|
|
466
|
-
margin-top: 30px;
|
|
467
|
-
margin-bottom: 30px;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.s-mx-xxl {
|
|
471
|
-
margin-left: 30px;
|
|
472
|
-
margin-right: 30px;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
75
|
$colorList: (
|
|
476
76
|
'primary': '#051d36',
|
|
477
77
|
'secondary': '#555555',
|
|
@@ -604,7 +204,6 @@ $colorList: (
|
|
|
604
204
|
$positions: 'top', 'right', 'left', 'bottom';
|
|
605
205
|
|
|
606
206
|
@mixin position($name, $color) {
|
|
607
|
-
|
|
608
207
|
@each $posi in $positions {
|
|
609
208
|
.s-border-#{$posi}-#{$name} {
|
|
610
209
|
border-#{$posi}: 1px solid unquote($color);
|
|
@@ -652,170 +251,56 @@ $color in $colorList {
|
|
|
652
251
|
// QUASAR
|
|
653
252
|
// rounded-borders - border-radius: 2px
|
|
654
253
|
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
.s-border-radius-md {
|
|
669
|
-
border-radius: 10px;
|
|
670
|
-
}
|
|
671
|
-
|
|
672
|
-
.s-border-radius-lg {
|
|
673
|
-
border-radius: 12px;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
.s-border-radius-xl {
|
|
677
|
-
border-radius: 14px;
|
|
678
|
-
}
|
|
679
|
-
|
|
680
|
-
.s-border-radius-xxl {
|
|
681
|
-
border-radius: 16px;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
.s-border-radius-chip {
|
|
685
|
-
border-radius: 40px;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.s-border-radius-left-rounded {
|
|
689
|
-
border-radius: 2px 0 0 2px;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.s-border-radius-left-xxs {
|
|
693
|
-
border-radius: 4px 0 0 4px;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.s-border-radius-left-xs {
|
|
697
|
-
border-radius: 6px 0 0 6px;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.s-border-radius-left-sm {
|
|
701
|
-
border-radius: 8px 0 0 8px;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.s-border-radius-left-md {
|
|
705
|
-
border-radius: 10px 0 0 10px;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
.s-border-radius-left-lg {
|
|
709
|
-
border-radius: 12px 0 0 12px;
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
.s-border-radius-left-xl {
|
|
713
|
-
border-radius: 14px 0 0 14px;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
.s-border-radius-left-xxl {
|
|
717
|
-
border-radius: 16px 0 0 16px;
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
.s-border-radius-right-rounded {
|
|
721
|
-
border-radius: 0 2px 2px 0;
|
|
722
|
-
}
|
|
723
|
-
|
|
724
|
-
.s-border-radius-right-xxs {
|
|
725
|
-
border-radius: 0 4px 4px 0;
|
|
726
|
-
}
|
|
727
|
-
|
|
728
|
-
.s-border-radius-right-xs {
|
|
729
|
-
border-radius: 0 6px 6px 0;
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
.s-border-radius-right-sm {
|
|
733
|
-
border-radius: 0 8px 8px 0;
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
.s-border-radius-right-md {
|
|
737
|
-
border-radius: 0 10px 10px 0;
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
.s-border-radius-right-lg {
|
|
741
|
-
border-radius: 0 12px 12px 0;
|
|
742
|
-
}
|
|
743
|
-
|
|
744
|
-
.s-border-radius-right-xl {
|
|
745
|
-
border-radius: 0 14px 14px 0;
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
.s-border-radius-right-xxl {
|
|
749
|
-
border-radius: 0 16px 16px 0;
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
// QUASAR
|
|
753
|
-
// no-border-radius - border-radius: none;
|
|
754
|
-
|
|
755
|
-
.s-border-radius-top-rounded {
|
|
756
|
-
border-radius: 2px 2px 0 0;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
.s-border-radius-top-xxs {
|
|
760
|
-
border-radius: 4px 4px 0 0;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
.s-border-radius-top-xs {
|
|
764
|
-
border-radius: 6px 6px 0 0;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
.s-border-radius-top-sm {
|
|
768
|
-
border-radius: 8px 8px 0 0;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.s-border-radius-top-md {
|
|
772
|
-
border-radius: 10px 10px 0 0;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.s-border-radius-top-lg {
|
|
776
|
-
border-radius: 12px 12px 0 0;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.s-border-radius-top-xl {
|
|
780
|
-
border-radius: 14px 14px 0 0;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.s-border-radius-top-xxl {
|
|
784
|
-
border-radius: 16px 16px 0 0;
|
|
785
|
-
}
|
|
786
|
-
|
|
787
|
-
.s-border-radius-bottom-rounded {
|
|
788
|
-
border-radius: 0 0 2px 2px;
|
|
789
|
-
}
|
|
254
|
+
// 반복되는 border-radius 값 설정을 위한 맵
|
|
255
|
+
$radius-sizes: (
|
|
256
|
+
"xxs": 4,
|
|
257
|
+
"xs": 6,
|
|
258
|
+
"sm": 8,
|
|
259
|
+
"md": 10,
|
|
260
|
+
"lg": 12,
|
|
261
|
+
"xl": 14,
|
|
262
|
+
"xxl": 16,
|
|
263
|
+
"chip": 40,
|
|
264
|
+
"rounded": 2,
|
|
265
|
+
);
|
|
790
266
|
|
|
791
|
-
|
|
792
|
-
|
|
267
|
+
// 일반적인 border-radius
|
|
268
|
+
@each $name, $size in $radius-sizes {
|
|
269
|
+
.s-border-radius-#{$name} {
|
|
270
|
+
border-radius: #{$size}px !important;
|
|
271
|
+
}
|
|
793
272
|
}
|
|
794
273
|
|
|
795
|
-
|
|
796
|
-
|
|
274
|
+
// 왼쪽만 둥글게 처리
|
|
275
|
+
@each $name, $size in $radius-sizes {
|
|
276
|
+
.s-border-radius-left-#{$name} {
|
|
277
|
+
border-radius: #{$size}px 0 0 #{$size}px;
|
|
278
|
+
}
|
|
797
279
|
}
|
|
798
280
|
|
|
799
|
-
|
|
800
|
-
|
|
281
|
+
// 오른쪽만 둥글게 처리
|
|
282
|
+
@each $name, $size in $radius-sizes {
|
|
283
|
+
.s-border-radius-right-#{$name} {
|
|
284
|
+
border-radius: 0 #{$size}px #{$size}px 0;
|
|
285
|
+
}
|
|
801
286
|
}
|
|
802
287
|
|
|
803
|
-
|
|
804
|
-
|
|
288
|
+
// 상단만 둥글게 처리
|
|
289
|
+
@each $name, $size in $radius-sizes {
|
|
290
|
+
.s-border-radius-top-#{$name} {
|
|
291
|
+
border-radius: #{$size}px #{$size}px 0 0;
|
|
292
|
+
}
|
|
805
293
|
}
|
|
806
294
|
|
|
807
|
-
|
|
808
|
-
|
|
295
|
+
// 하단만 둥글게 처리
|
|
296
|
+
@each $name, $size in $radius-sizes {
|
|
297
|
+
.s-border-radius-bottom-#{$name} {
|
|
298
|
+
border-radius: 0 0 #{$size}px #{$size}px;
|
|
299
|
+
}
|
|
809
300
|
}
|
|
810
301
|
|
|
811
|
-
.s-border-radius-bottom-xl {
|
|
812
|
-
border-radius: 0 0 14px 14px;
|
|
813
|
-
}
|
|
814
|
-
|
|
815
|
-
.s-border-radius-bottom-xxl {
|
|
816
|
-
border-radius: 0 0 16px 16px;
|
|
817
|
-
}
|
|
818
302
|
|
|
303
|
+
// 특정 모서리의 radius 제거
|
|
819
304
|
.s-border-top-left-radius-none {
|
|
820
305
|
border-top-left-radius: 0;
|
|
821
306
|
}
|
|
@@ -832,6 +317,11 @@ $color in $colorList {
|
|
|
832
317
|
border-bottom-right-radius: 0;
|
|
833
318
|
}
|
|
834
319
|
|
|
320
|
+
// no-border-radius 처리 (Quasar framework 관련 주석 참고)
|
|
321
|
+
.no-border-radius {
|
|
322
|
+
border-radius: 0;
|
|
323
|
+
}
|
|
324
|
+
|
|
835
325
|
/*********** font ***********/
|
|
836
326
|
$fontSize: (
|
|
837
327
|
'9': 9,
|
|
@@ -858,17 +348,46 @@ $fontWeight: (
|
|
|
858
348
|
);
|
|
859
349
|
|
|
860
350
|
@mixin fonts($size, $weight) {
|
|
861
|
-
font-size: $size
|
|
351
|
+
font-size: #{$size}px;
|
|
862
352
|
font-weight: $weight;
|
|
863
353
|
}
|
|
864
354
|
|
|
865
|
-
@each $sizeKey,
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
355
|
+
@each $sizeKey,
|
|
356
|
+
$size in $fontSize {
|
|
357
|
+
|
|
358
|
+
@each $weightKey,
|
|
359
|
+
$weight in $fontWeight {
|
|
870
360
|
.font-#{$sizeKey}-#{$weightKey} {
|
|
871
361
|
@include fonts(#{$size}, #{$weight});
|
|
872
362
|
}
|
|
873
363
|
}
|
|
874
364
|
}
|
|
365
|
+
|
|
366
|
+
/***** gap *****/
|
|
367
|
+
$sellmate-gap-sizes: (
|
|
368
|
+
'0': 0,
|
|
369
|
+
'4': 4,
|
|
370
|
+
'6': 6,
|
|
371
|
+
'8': 8,
|
|
372
|
+
'10': 10,
|
|
373
|
+
'12': 12,
|
|
374
|
+
'16': 16,
|
|
375
|
+
'18': 18,
|
|
376
|
+
'20': 20,
|
|
377
|
+
'22': 22,
|
|
378
|
+
'24': 24,
|
|
379
|
+
'30': 30,
|
|
380
|
+
'48': 48,
|
|
381
|
+
);
|
|
382
|
+
|
|
383
|
+
@each $name, $size in $sellmate-gap-sizes {
|
|
384
|
+
.s-gap-x-#{$name} {
|
|
385
|
+
column-gap: #{$size}px;
|
|
386
|
+
}
|
|
387
|
+
.s-gap-y-#{$name} {
|
|
388
|
+
row-gap: #{$size}px;
|
|
389
|
+
}
|
|
390
|
+
.s-gap-#{$name} {
|
|
391
|
+
gap: #{$size}px
|
|
392
|
+
}
|
|
393
|
+
}
|