quasar-ui-sellmate-ui-kit 3.0.3 → 3.0.5
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/.prettierrc +25 -25
- package/README.md +156 -156
- package/dist/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +3829 -3829
- package/dist/index.umd.min.js +2 -2
- package/package.json +83 -83
- package/src/assets/icons.js +28 -28
- package/src/components/SBreadcrumbs.vue +55 -55
- package/src/components/SButton.vue +206 -206
- package/src/components/SButtonGroup.vue +41 -41
- package/src/components/SButtonToggle.vue +200 -200
- package/src/components/SCaution.vue +102 -102
- package/src/components/SCheckbox.vue +123 -123
- package/src/components/SChip.vue +99 -99
- package/src/components/SDate.vue +717 -717
- package/src/components/SDateAutoRangePicker.vue +341 -341
- package/src/components/SDatePicker.vue +472 -472
- package/src/components/SDateRange.vue +470 -470
- package/src/components/SDateRangePicker.vue +660 -660
- package/src/components/SDateTimePicker.vue +349 -349
- package/src/components/SDialog.vue +250 -250
- package/src/components/SDropdown.vue +216 -216
- package/src/components/SEditor.vue +490 -490
- package/src/components/SFilePicker.vue +207 -207
- package/src/components/SHelp.vue +146 -146
- package/src/components/SInput.vue +343 -343
- package/src/components/SInputCounter.vue +46 -46
- package/src/components/SInputNumber.vue +179 -179
- package/src/components/SList.vue +29 -29
- package/src/components/SMarkupTable.vue +141 -141
- package/src/components/SPagination.vue +266 -266
- package/src/components/SRadio.vue +78 -78
- package/src/components/SRouteTab.vue +67 -67
- package/src/components/SSelect.vue +294 -294
- package/src/components/SSelectCheckbox.vue +222 -222
- package/src/components/SSelectCustom.vue +189 -189
- package/src/components/SSelectGroupCheckbox.vue +235 -235
- package/src/components/SSelectSearch.vue +261 -261
- package/src/components/SSelectSearchAutoComplete.vue +172 -172
- package/src/components/SSelectSearchCheckbox.vue +356 -356
- package/src/components/SStringToInput.vue +66 -66
- package/src/components/STab.vue +77 -77
- package/src/components/STable.vue +425 -425
- package/src/components/STableTree.vue +210 -210
- package/src/components/STabs.vue +32 -32
- package/src/components/STimePicker.vue +159 -159
- package/src/components/SToggle.vue +68 -68
- package/src/components/STooltip.vue +209 -209
- package/src/components/SelelctItem.vue +21 -21
- package/src/components/TimePickerCard.vue +352 -352
- package/src/composables/date.js +11 -11
- package/src/composables/modelBinder.js +13 -13
- package/src/composables/table/use-navigator.js +110 -110
- package/src/composables/table/use-resizable.js +80 -80
- package/src/css/app.scss +90 -90
- package/src/css/default.scss +875 -875
- package/src/css/extends.scss +154 -154
- package/src/css/quasar.variables.scss +189 -189
- package/src/directives/Directive.js +7 -7
- package/src/index.scss +3 -3
- package/src/vue-plugin.js +91 -91
- package/tsconfig.json +35 -35
package/src/css/default.scss
CHANGED
|
@@ -1,875 +1,875 @@
|
|
|
1
|
-
/*********** spacing ***********/
|
|
2
|
-
// QUASAR
|
|
3
|
-
// q-@@-none - none
|
|
4
|
-
// q-@@-xs - 4px
|
|
5
|
-
// q-@@-sm - 8px
|
|
6
|
-
// q-@@-md - 16px
|
|
7
|
-
// q-@@-lg - 24px
|
|
8
|
-
// q-@@-xl - 48px
|
|
9
|
-
|
|
10
|
-
// SELLMATE
|
|
11
|
-
// s-@@-xxs - 6px
|
|
12
|
-
// s-@@-xs - 10px
|
|
13
|
-
// s-@@-sm - 12px
|
|
14
|
-
// s-@@-md - 18px
|
|
15
|
-
// s-@@-lg - 20px
|
|
16
|
-
// s-@@-xl - 22px
|
|
17
|
-
// s-@@-xxl - 30px
|
|
18
|
-
|
|
19
|
-
// padding
|
|
20
|
-
.s-pa-xxs {
|
|
21
|
-
padding: 6px;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.s-pt-xxs {
|
|
25
|
-
padding-top: 6px;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.s-pb-xxs {
|
|
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
|
-
}
|
|
87
|
-
|
|
88
|
-
.s-pb-sm {
|
|
89
|
-
padding-bottom: 12px;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.s-pr-sm {
|
|
93
|
-
padding-right: 12px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.s-pl-sm {
|
|
97
|
-
padding-left: 12px;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.s-py-sm {
|
|
101
|
-
padding-top: 12px !important;
|
|
102
|
-
padding-bottom: 12px !important;
|
|
103
|
-
}
|
|
104
|
-
|
|
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
|
-
.s-px-lg {
|
|
166
|
-
padding-right: 20px !important;
|
|
167
|
-
padding-left: 20px !important;
|
|
168
|
-
}
|
|
169
|
-
|
|
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
|
-
.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;
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
.s-mr-lg {
|
|
368
|
-
margin-right: 20px !important; // rfid issue-history
|
|
369
|
-
}
|
|
370
|
-
|
|
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
|
-
$colorList: (
|
|
476
|
-
'primary': '#051d36',
|
|
477
|
-
'secondary': '#555555',
|
|
478
|
-
'accent': '#9c27b0',
|
|
479
|
-
'positive': '#0075ff',
|
|
480
|
-
'negative': '#e30000',
|
|
481
|
-
'info': '#00cd52',
|
|
482
|
-
'warning': '#f2c037',
|
|
483
|
-
'Red_Darken-5': '#220000',
|
|
484
|
-
'Red_Darken-4': '#440000',
|
|
485
|
-
'Red_Darken-3': '#5E0000',
|
|
486
|
-
'Red_Darken-2': '#820000',
|
|
487
|
-
'Red_Darken-1': '#AD0000',
|
|
488
|
-
'Red_Default': '#E30000',
|
|
489
|
-
'Red_Lighten-1': '#FB4444',
|
|
490
|
-
'Red_Lighten-2': '#FF7C7C',
|
|
491
|
-
'Red_Lighten-3': '#FFB5B5',
|
|
492
|
-
'Red_Lighten-4': '#FFD3D3',
|
|
493
|
-
'Red_Lighten-5': '#FCE6E6',
|
|
494
|
-
'Red_Lighten-6': '#FCEFEF',
|
|
495
|
-
'Caution_Bg': '#FEF1F1',
|
|
496
|
-
'Caution_Icon': '#fd9595',
|
|
497
|
-
'Orange_Darken-5': '#2F1100',
|
|
498
|
-
'Orange_Darken-4': '#4D1B00',
|
|
499
|
-
'Orange_Darken-3': '#752A00',
|
|
500
|
-
'Orange_Darken-2': '#9B3700',
|
|
501
|
-
'Orange_Darken-1': '#CE4900',
|
|
502
|
-
'Orange_Default': '#FF6B00',
|
|
503
|
-
'Orange_Lighten-1': '#FF7F22',
|
|
504
|
-
'Orange_Lighten-2': '#FFA452',
|
|
505
|
-
'Orange_Lighten-3': '#FFBC81',
|
|
506
|
-
'Orange_Lighten-4': '#FFD5AF',
|
|
507
|
-
'Orange_Lighten-5': '#FFEAD7',
|
|
508
|
-
'Orange_Lighten-6': '#FEF1EA',
|
|
509
|
-
'Header_Alert': '#FF7A00',
|
|
510
|
-
// header alert
|
|
511
|
-
'Yellow_Darken-5': '#553D00',
|
|
512
|
-
'Yellow_Darken-4': '#7D5A00',
|
|
513
|
-
'Yellow_Darken-3': '#A87900',
|
|
514
|
-
'Yellow_Darken-2': '#CD9400',
|
|
515
|
-
'Yellow_Darken-1': '#F3BE00',
|
|
516
|
-
'Yellow_Default': '#FFC700',
|
|
517
|
-
'Yellow_Lighten-1': '#FFD359',
|
|
518
|
-
'Yellow_Lighten-2': '#FFDF87',
|
|
519
|
-
'Yellow_Lighten-3': '#FFECB9',
|
|
520
|
-
'Yellow_Lighten-4': '#FFF3D0',
|
|
521
|
-
'Yellow_Lighten-5': '#FFF6DE',
|
|
522
|
-
'Yellow_Lighten-6': '#FFFBF2',
|
|
523
|
-
'Greenish-yellow_Darken-5': '#2C2C00',
|
|
524
|
-
'Greenish-yellow_Darken-4': '#454500',
|
|
525
|
-
'Greenish-yellow_Darken-3': '#636300',
|
|
526
|
-
'Greenish-yellow_Darken-2': '#838300',
|
|
527
|
-
'Greenish-Yellow_Darken-1': '#A5A500',
|
|
528
|
-
'Greenish-Yellow_Default': '#C7C700',
|
|
529
|
-
'Greenish-Yellow_Lighten-1': '#E0E01F',
|
|
530
|
-
'Greenish-Yellow_Lighten-2': '#F3F354',
|
|
531
|
-
'Greenish-Yellow_Lighten-3': '#FFFF80',
|
|
532
|
-
'Greenish-Yellow_Lighten-4': '#FAFAB2',
|
|
533
|
-
'Greenish-Yellow_Lighten-5': '#FAFAD8',
|
|
534
|
-
'Greenish-Yellow_Lighten-6': '#F9F9E4',
|
|
535
|
-
'Green_Darken-5': '#001D0B',
|
|
536
|
-
'Green_Darken-4': '#003013',
|
|
537
|
-
'Green_Darken-3': '#00461C',
|
|
538
|
-
'Green_Darken-2': '#006629',
|
|
539
|
-
'Green_Darken-1': '#007B31',
|
|
540
|
-
'Green_Default': '#00973C',
|
|
541
|
-
'Green_Lighten-1': '#01BB4B',
|
|
542
|
-
'Green_Lighten-2': '#05D358',
|
|
543
|
-
'Green_Lighten-3': '#3EE882',
|
|
544
|
-
'Green_Lighten-4': '#87EDB0',
|
|
545
|
-
'Green_Lighten-5': '#C4F9D9',
|
|
546
|
-
'Green_Lighten-6': '#E8F9EF',
|
|
547
|
-
'Blue_A_Darken-5': '#021a25',
|
|
548
|
-
'Blue_A_Darken-4': '#02212f',
|
|
549
|
-
'Blue_A_Darken-3': '#032d40',
|
|
550
|
-
'Blue_A_Darken-2': '#033f59',
|
|
551
|
-
'Blue_A_Darken-1': '#06587d',
|
|
552
|
-
'Blue_A_Default': '#066d9b',
|
|
553
|
-
'Blue_A_Lighten-1': '#128fc7',
|
|
554
|
-
'Blue_A_Lighten-2': '#229fd7',
|
|
555
|
-
'Blue_A_Lighten-3': '#50bff0',
|
|
556
|
-
'Blue_A_Lighten-4': '#a4e2fd',
|
|
557
|
-
'Blue_A_Lighten-5': '#d9f2fd',
|
|
558
|
-
'Blue_A_Lighten-6': '#ecf8fd',
|
|
559
|
-
'Blue_B_Darken-5': '#011428',
|
|
560
|
-
'Blue_B_Darken-4': '#03172d',
|
|
561
|
-
'Blue_B_Darken-3': '#051d36',
|
|
562
|
-
'Blue_B_Darken-2': '#07284a',
|
|
563
|
-
'Blue_B_Darken-1': '#004177',
|
|
564
|
-
'Blue_B_Default': '#025497',
|
|
565
|
-
'Blue_B_Lighten-1': '#006ac1',
|
|
566
|
-
'Blue_B_Lighten-2': '#1f8ae1',
|
|
567
|
-
'Blue_B_Lighten-3': '#5cb0f3',
|
|
568
|
-
'Blue_B_Lighten-4': '#9cd1fc',
|
|
569
|
-
'Blue_B_Lighten-5': '#d5ebfe',
|
|
570
|
-
'Blue_B_Lighten-6': '#eaf5fe',
|
|
571
|
-
'Blue_C_Darken-5': '#001226',
|
|
572
|
-
'Blue_C_Darken-4': '#001b39',
|
|
573
|
-
'Blue_C_Darken-3': '#002b5e',
|
|
574
|
-
'Blue_C_Darken-2': '#004290',
|
|
575
|
-
'Blue_C_Darken-1': '#005cc9',
|
|
576
|
-
'Blue_C_Default': '#0075ff',
|
|
577
|
-
'Blue_C_Lighten-1': '#2d8dff',
|
|
578
|
-
'Blue_C_Lighten-2': '#64abff',
|
|
579
|
-
'Blue_C_Lighten-3': '#93c4ff',
|
|
580
|
-
'Blue_C_Lighten-4': '#bbdaff',
|
|
581
|
-
'Blue_C_Lighten-5': '#d9eaff',
|
|
582
|
-
'Blue_C_Lighten-6': '#e6f1ff',
|
|
583
|
-
'Blue_C_Lighten-7': '#eff6ff',
|
|
584
|
-
'Blue_C_Lighten-8': '#f5faff',
|
|
585
|
-
// table-title
|
|
586
|
-
'Grey_Darken-5': '#222222',
|
|
587
|
-
'Grey_Darken-4': '#333333',
|
|
588
|
-
'Grey_Darken-3': '#444444',
|
|
589
|
-
'Grey_Darken-2': '#555555',
|
|
590
|
-
'Grey_Darken-1': '#737373',
|
|
591
|
-
'Grey_Default': '#888888',
|
|
592
|
-
'Grey_Lighten-1': '#aaaaaa',
|
|
593
|
-
'Grey_Lighten-2': '#cccccc',
|
|
594
|
-
'Grey_Lighten-3': '#e1e1e1',
|
|
595
|
-
'Grey_Lighten-4': '#eeeeee',
|
|
596
|
-
'Grey_Lighten-5': '#f6f6f6',
|
|
597
|
-
'Grey_Lighten-6': '#f9f9f9',
|
|
598
|
-
'Grey_Lighten-7' : '#E5E5E5',
|
|
599
|
-
'Grey_Lighten-8' : '#D8D8D8',
|
|
600
|
-
'white': '#ffffff',
|
|
601
|
-
'black': '#000000',
|
|
602
|
-
);
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
$positions: 'top', 'right', 'left', 'bottom';
|
|
606
|
-
|
|
607
|
-
@mixin position($name, $color) {
|
|
608
|
-
|
|
609
|
-
@each $posi in $positions {
|
|
610
|
-
.s-border-#{$posi}-#{$name} {
|
|
611
|
-
border-#{$posi}: 1px solid unquote($color);
|
|
612
|
-
}
|
|
613
|
-
}
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
@each $name,
|
|
617
|
-
$color in $colorList {
|
|
618
|
-
.s-border-#{$name} {
|
|
619
|
-
border: 1px solid unquote($color);
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
@include position($name, $color);
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
@each $name,
|
|
626
|
-
$color in $colorList {
|
|
627
|
-
.s-border-color-#{$name} {
|
|
628
|
-
border-color: unquote($color);
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
.text-#{$name} {
|
|
632
|
-
color: unquote($color);
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
.bg-#{$name} {
|
|
636
|
-
background-color: unquote($color);
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
@include position($name, $color);
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
// QUASAR
|
|
643
|
-
// no-border - border: none;
|
|
644
|
-
|
|
645
|
-
@each $position in $positions {
|
|
646
|
-
.s-border-#{$position}-none {
|
|
647
|
-
border-#{$position}: none !important;
|
|
648
|
-
}
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
/*********** border-radius ***********/
|
|
653
|
-
// QUASAR
|
|
654
|
-
// rounded-borders - border-radius: 2px
|
|
655
|
-
|
|
656
|
-
.s-border-radius-xxs {
|
|
657
|
-
border-radius: 4px !important;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.s-border-radius-xs {
|
|
661
|
-
border-radius: 6px;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.s-border-radius-sm {
|
|
665
|
-
border-radius: 8px !important;
|
|
666
|
-
// rfid issue-history 에 필요
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.s-border-radius-md {
|
|
670
|
-
border-radius: 10px;
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.s-border-radius-lg {
|
|
674
|
-
border-radius: 12px;
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.s-border-radius-xl {
|
|
678
|
-
border-radius: 14px;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.s-border-radius-xxl {
|
|
682
|
-
border-radius: 16px;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.s-border-radius-chip {
|
|
686
|
-
border-radius: 40px;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.s-border-radius-left-rounded {
|
|
690
|
-
border-radius: 2px 0 0 2px;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.s-border-radius-left-xxs {
|
|
694
|
-
border-radius: 4px 0 0 4px;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
.s-border-radius-left-xs {
|
|
698
|
-
border-radius: 6px 0 0 6px;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.s-border-radius-left-sm {
|
|
702
|
-
border-radius: 8px 0 0 8px;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.s-border-radius-left-md {
|
|
706
|
-
border-radius: 10px 0 0 10px;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
.s-border-radius-left-lg {
|
|
710
|
-
border-radius: 12px 0 0 12px;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.s-border-radius-left-xl {
|
|
714
|
-
border-radius: 14px 0 0 14px;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.s-border-radius-left-xxl {
|
|
718
|
-
border-radius: 16px 0 0 16px;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.s-border-radius-right-rounded {
|
|
722
|
-
border-radius: 0 2px 2px 0;
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.s-border-radius-right-xxs {
|
|
726
|
-
border-radius: 0 4px 4px 0;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.s-border-radius-right-xs {
|
|
730
|
-
border-radius: 0 6px 6px 0;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
.s-border-radius-right-sm {
|
|
734
|
-
border-radius: 0 8px 8px 0;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.s-border-radius-right-md {
|
|
738
|
-
border-radius: 0 10px 10px 0;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.s-border-radius-right-lg {
|
|
742
|
-
border-radius: 0 12px 12px 0;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.s-border-radius-right-xl {
|
|
746
|
-
border-radius: 0 14px 14px 0;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
.s-border-radius-right-xxl {
|
|
750
|
-
border-radius: 0 16px 16px 0;
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
// QUASAR
|
|
754
|
-
// no-border-radius - border-radius: none;
|
|
755
|
-
|
|
756
|
-
.s-border-radius-top-rounded {
|
|
757
|
-
border-radius: 2px 2px 0 0;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.s-border-radius-top-xxs {
|
|
761
|
-
border-radius: 4px 4px 0 0;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.s-border-radius-top-xs {
|
|
765
|
-
border-radius: 6px 6px 0 0;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
|
-
.s-border-radius-top-sm {
|
|
769
|
-
border-radius: 8px 8px 0 0;
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
.s-border-radius-top-md {
|
|
773
|
-
border-radius: 10px 10px 0 0;
|
|
774
|
-
}
|
|
775
|
-
|
|
776
|
-
.s-border-radius-top-lg {
|
|
777
|
-
border-radius: 12px 12px 0 0;
|
|
778
|
-
}
|
|
779
|
-
|
|
780
|
-
.s-border-radius-top-xl {
|
|
781
|
-
border-radius: 14px 14px 0 0;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.s-border-radius-top-xxl {
|
|
785
|
-
border-radius: 16px 16px 0 0;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
.s-border-radius-bottom-rounded {
|
|
789
|
-
border-radius: 0 0 2px 2px;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
.s-border-radius-bottom-xxs {
|
|
793
|
-
border-radius: 0 0 4px 4px;
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.s-border-radius-bottom-xs {
|
|
797
|
-
border-radius: 0 0 6px 6px;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.s-border-radius-bottom-sm {
|
|
801
|
-
border-radius: 0 0 8px 8px;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.s-border-radius-bottom-md {
|
|
805
|
-
border-radius: 0 0 10px 10px;
|
|
806
|
-
}
|
|
807
|
-
|
|
808
|
-
.s-border-radius-bottom-lg {
|
|
809
|
-
border-radius: 0 0 12px 12px;
|
|
810
|
-
}
|
|
811
|
-
|
|
812
|
-
.s-border-radius-bottom-xl {
|
|
813
|
-
border-radius: 0 0 14px 14px;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
.s-border-radius-bottom-xxl {
|
|
817
|
-
border-radius: 0 0 16px 16px;
|
|
818
|
-
}
|
|
819
|
-
|
|
820
|
-
.s-border-top-left-radius-none {
|
|
821
|
-
border-top-left-radius: 0;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
.s-border-top-right-radius-none {
|
|
825
|
-
border-top-right-radius: 0;
|
|
826
|
-
}
|
|
827
|
-
|
|
828
|
-
.s-border-bottom-left-radius-none {
|
|
829
|
-
border-bottom-left-radius: 0;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.s-border-bottom-right-radius-none {
|
|
833
|
-
border-bottom-right-radius: 0;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
/*********** font ***********/
|
|
837
|
-
$fontSize: (
|
|
838
|
-
'9': 9,
|
|
839
|
-
'10': 10,
|
|
840
|
-
'11': 11,
|
|
841
|
-
'12': 12,
|
|
842
|
-
'13': 13,
|
|
843
|
-
'14': 14,
|
|
844
|
-
'15': 15,
|
|
845
|
-
'16': 16,
|
|
846
|
-
'17': 17,
|
|
847
|
-
'18': 18,
|
|
848
|
-
'19': 19,
|
|
849
|
-
'20': 20,
|
|
850
|
-
'24': 24,
|
|
851
|
-
'40': 40,
|
|
852
|
-
'66': 66,
|
|
853
|
-
);
|
|
854
|
-
$fontWeight: (
|
|
855
|
-
'400': 400,
|
|
856
|
-
'500': 500,
|
|
857
|
-
'600': 600,
|
|
858
|
-
'700': 700,
|
|
859
|
-
);
|
|
860
|
-
|
|
861
|
-
@mixin fonts($size, $weight) {
|
|
862
|
-
font-size: $size + 'px';
|
|
863
|
-
font-weight: $weight;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
@each $sizeKey, $size in $fontSize {
|
|
867
|
-
.font-#{$sizeKey} {
|
|
868
|
-
@include fonts(#{$size}, 400);
|
|
869
|
-
}
|
|
870
|
-
@each $weightKey, $weight in $fontWeight {
|
|
871
|
-
.font-#{$sizeKey}-#{$weightKey} {
|
|
872
|
-
@include fonts(#{$size}, #{$weight});
|
|
873
|
-
}
|
|
874
|
-
}
|
|
875
|
-
}
|
|
1
|
+
/*********** spacing ***********/
|
|
2
|
+
// QUASAR
|
|
3
|
+
// q-@@-none - none
|
|
4
|
+
// q-@@-xs - 4px
|
|
5
|
+
// q-@@-sm - 8px
|
|
6
|
+
// q-@@-md - 16px
|
|
7
|
+
// q-@@-lg - 24px
|
|
8
|
+
// q-@@-xl - 48px
|
|
9
|
+
|
|
10
|
+
// SELLMATE
|
|
11
|
+
// s-@@-xxs - 6px
|
|
12
|
+
// s-@@-xs - 10px
|
|
13
|
+
// s-@@-sm - 12px
|
|
14
|
+
// s-@@-md - 18px
|
|
15
|
+
// s-@@-lg - 20px
|
|
16
|
+
// s-@@-xl - 22px
|
|
17
|
+
// s-@@-xxl - 30px
|
|
18
|
+
|
|
19
|
+
// padding
|
|
20
|
+
.s-pa-xxs {
|
|
21
|
+
padding: 6px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.s-pt-xxs {
|
|
25
|
+
padding-top: 6px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.s-pb-xxs {
|
|
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
|
+
}
|
|
87
|
+
|
|
88
|
+
.s-pb-sm {
|
|
89
|
+
padding-bottom: 12px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.s-pr-sm {
|
|
93
|
+
padding-right: 12px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.s-pl-sm {
|
|
97
|
+
padding-left: 12px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.s-py-sm {
|
|
101
|
+
padding-top: 12px !important;
|
|
102
|
+
padding-bottom: 12px !important;
|
|
103
|
+
}
|
|
104
|
+
|
|
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
|
+
.s-px-lg {
|
|
166
|
+
padding-right: 20px !important;
|
|
167
|
+
padding-left: 20px !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
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
|
+
.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;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.s-mr-lg {
|
|
368
|
+
margin-right: 20px !important; // rfid issue-history
|
|
369
|
+
}
|
|
370
|
+
|
|
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
|
+
$colorList: (
|
|
476
|
+
'primary': '#051d36',
|
|
477
|
+
'secondary': '#555555',
|
|
478
|
+
'accent': '#9c27b0',
|
|
479
|
+
'positive': '#0075ff',
|
|
480
|
+
'negative': '#e30000',
|
|
481
|
+
'info': '#00cd52',
|
|
482
|
+
'warning': '#f2c037',
|
|
483
|
+
'Red_Darken-5': '#220000',
|
|
484
|
+
'Red_Darken-4': '#440000',
|
|
485
|
+
'Red_Darken-3': '#5E0000',
|
|
486
|
+
'Red_Darken-2': '#820000',
|
|
487
|
+
'Red_Darken-1': '#AD0000',
|
|
488
|
+
'Red_Default': '#E30000',
|
|
489
|
+
'Red_Lighten-1': '#FB4444',
|
|
490
|
+
'Red_Lighten-2': '#FF7C7C',
|
|
491
|
+
'Red_Lighten-3': '#FFB5B5',
|
|
492
|
+
'Red_Lighten-4': '#FFD3D3',
|
|
493
|
+
'Red_Lighten-5': '#FCE6E6',
|
|
494
|
+
'Red_Lighten-6': '#FCEFEF',
|
|
495
|
+
'Caution_Bg': '#FEF1F1',
|
|
496
|
+
'Caution_Icon': '#fd9595',
|
|
497
|
+
'Orange_Darken-5': '#2F1100',
|
|
498
|
+
'Orange_Darken-4': '#4D1B00',
|
|
499
|
+
'Orange_Darken-3': '#752A00',
|
|
500
|
+
'Orange_Darken-2': '#9B3700',
|
|
501
|
+
'Orange_Darken-1': '#CE4900',
|
|
502
|
+
'Orange_Default': '#FF6B00',
|
|
503
|
+
'Orange_Lighten-1': '#FF7F22',
|
|
504
|
+
'Orange_Lighten-2': '#FFA452',
|
|
505
|
+
'Orange_Lighten-3': '#FFBC81',
|
|
506
|
+
'Orange_Lighten-4': '#FFD5AF',
|
|
507
|
+
'Orange_Lighten-5': '#FFEAD7',
|
|
508
|
+
'Orange_Lighten-6': '#FEF1EA',
|
|
509
|
+
'Header_Alert': '#FF7A00',
|
|
510
|
+
// header alert
|
|
511
|
+
'Yellow_Darken-5': '#553D00',
|
|
512
|
+
'Yellow_Darken-4': '#7D5A00',
|
|
513
|
+
'Yellow_Darken-3': '#A87900',
|
|
514
|
+
'Yellow_Darken-2': '#CD9400',
|
|
515
|
+
'Yellow_Darken-1': '#F3BE00',
|
|
516
|
+
'Yellow_Default': '#FFC700',
|
|
517
|
+
'Yellow_Lighten-1': '#FFD359',
|
|
518
|
+
'Yellow_Lighten-2': '#FFDF87',
|
|
519
|
+
'Yellow_Lighten-3': '#FFECB9',
|
|
520
|
+
'Yellow_Lighten-4': '#FFF3D0',
|
|
521
|
+
'Yellow_Lighten-5': '#FFF6DE',
|
|
522
|
+
'Yellow_Lighten-6': '#FFFBF2',
|
|
523
|
+
'Greenish-yellow_Darken-5': '#2C2C00',
|
|
524
|
+
'Greenish-yellow_Darken-4': '#454500',
|
|
525
|
+
'Greenish-yellow_Darken-3': '#636300',
|
|
526
|
+
'Greenish-yellow_Darken-2': '#838300',
|
|
527
|
+
'Greenish-Yellow_Darken-1': '#A5A500',
|
|
528
|
+
'Greenish-Yellow_Default': '#C7C700',
|
|
529
|
+
'Greenish-Yellow_Lighten-1': '#E0E01F',
|
|
530
|
+
'Greenish-Yellow_Lighten-2': '#F3F354',
|
|
531
|
+
'Greenish-Yellow_Lighten-3': '#FFFF80',
|
|
532
|
+
'Greenish-Yellow_Lighten-4': '#FAFAB2',
|
|
533
|
+
'Greenish-Yellow_Lighten-5': '#FAFAD8',
|
|
534
|
+
'Greenish-Yellow_Lighten-6': '#F9F9E4',
|
|
535
|
+
'Green_Darken-5': '#001D0B',
|
|
536
|
+
'Green_Darken-4': '#003013',
|
|
537
|
+
'Green_Darken-3': '#00461C',
|
|
538
|
+
'Green_Darken-2': '#006629',
|
|
539
|
+
'Green_Darken-1': '#007B31',
|
|
540
|
+
'Green_Default': '#00973C',
|
|
541
|
+
'Green_Lighten-1': '#01BB4B',
|
|
542
|
+
'Green_Lighten-2': '#05D358',
|
|
543
|
+
'Green_Lighten-3': '#3EE882',
|
|
544
|
+
'Green_Lighten-4': '#87EDB0',
|
|
545
|
+
'Green_Lighten-5': '#C4F9D9',
|
|
546
|
+
'Green_Lighten-6': '#E8F9EF',
|
|
547
|
+
'Blue_A_Darken-5': '#021a25',
|
|
548
|
+
'Blue_A_Darken-4': '#02212f',
|
|
549
|
+
'Blue_A_Darken-3': '#032d40',
|
|
550
|
+
'Blue_A_Darken-2': '#033f59',
|
|
551
|
+
'Blue_A_Darken-1': '#06587d',
|
|
552
|
+
'Blue_A_Default': '#066d9b',
|
|
553
|
+
'Blue_A_Lighten-1': '#128fc7',
|
|
554
|
+
'Blue_A_Lighten-2': '#229fd7',
|
|
555
|
+
'Blue_A_Lighten-3': '#50bff0',
|
|
556
|
+
'Blue_A_Lighten-4': '#a4e2fd',
|
|
557
|
+
'Blue_A_Lighten-5': '#d9f2fd',
|
|
558
|
+
'Blue_A_Lighten-6': '#ecf8fd',
|
|
559
|
+
'Blue_B_Darken-5': '#011428',
|
|
560
|
+
'Blue_B_Darken-4': '#03172d',
|
|
561
|
+
'Blue_B_Darken-3': '#051d36',
|
|
562
|
+
'Blue_B_Darken-2': '#07284a',
|
|
563
|
+
'Blue_B_Darken-1': '#004177',
|
|
564
|
+
'Blue_B_Default': '#025497',
|
|
565
|
+
'Blue_B_Lighten-1': '#006ac1',
|
|
566
|
+
'Blue_B_Lighten-2': '#1f8ae1',
|
|
567
|
+
'Blue_B_Lighten-3': '#5cb0f3',
|
|
568
|
+
'Blue_B_Lighten-4': '#9cd1fc',
|
|
569
|
+
'Blue_B_Lighten-5': '#d5ebfe',
|
|
570
|
+
'Blue_B_Lighten-6': '#eaf5fe',
|
|
571
|
+
'Blue_C_Darken-5': '#001226',
|
|
572
|
+
'Blue_C_Darken-4': '#001b39',
|
|
573
|
+
'Blue_C_Darken-3': '#002b5e',
|
|
574
|
+
'Blue_C_Darken-2': '#004290',
|
|
575
|
+
'Blue_C_Darken-1': '#005cc9',
|
|
576
|
+
'Blue_C_Default': '#0075ff',
|
|
577
|
+
'Blue_C_Lighten-1': '#2d8dff',
|
|
578
|
+
'Blue_C_Lighten-2': '#64abff',
|
|
579
|
+
'Blue_C_Lighten-3': '#93c4ff',
|
|
580
|
+
'Blue_C_Lighten-4': '#bbdaff',
|
|
581
|
+
'Blue_C_Lighten-5': '#d9eaff',
|
|
582
|
+
'Blue_C_Lighten-6': '#e6f1ff',
|
|
583
|
+
'Blue_C_Lighten-7': '#eff6ff',
|
|
584
|
+
'Blue_C_Lighten-8': '#f5faff',
|
|
585
|
+
// table-title
|
|
586
|
+
'Grey_Darken-5': '#222222',
|
|
587
|
+
'Grey_Darken-4': '#333333',
|
|
588
|
+
'Grey_Darken-3': '#444444',
|
|
589
|
+
'Grey_Darken-2': '#555555',
|
|
590
|
+
'Grey_Darken-1': '#737373',
|
|
591
|
+
'Grey_Default': '#888888',
|
|
592
|
+
'Grey_Lighten-1': '#aaaaaa',
|
|
593
|
+
'Grey_Lighten-2': '#cccccc',
|
|
594
|
+
'Grey_Lighten-3': '#e1e1e1',
|
|
595
|
+
'Grey_Lighten-4': '#eeeeee',
|
|
596
|
+
'Grey_Lighten-5': '#f6f6f6',
|
|
597
|
+
'Grey_Lighten-6': '#f9f9f9',
|
|
598
|
+
'Grey_Lighten-7' : '#E5E5E5',
|
|
599
|
+
'Grey_Lighten-8' : '#D8D8D8',
|
|
600
|
+
'white': '#ffffff',
|
|
601
|
+
'black': '#000000',
|
|
602
|
+
);
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
$positions: 'top', 'right', 'left', 'bottom';
|
|
606
|
+
|
|
607
|
+
@mixin position($name, $color) {
|
|
608
|
+
|
|
609
|
+
@each $posi in $positions {
|
|
610
|
+
.s-border-#{$posi}-#{$name} {
|
|
611
|
+
border-#{$posi}: 1px solid unquote($color);
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
@each $name,
|
|
617
|
+
$color in $colorList {
|
|
618
|
+
.s-border-#{$name} {
|
|
619
|
+
border: 1px solid unquote($color);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
@include position($name, $color);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
@each $name,
|
|
626
|
+
$color in $colorList {
|
|
627
|
+
.s-border-color-#{$name} {
|
|
628
|
+
border-color: unquote($color);
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.text-#{$name} {
|
|
632
|
+
color: unquote($color);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.bg-#{$name} {
|
|
636
|
+
background-color: unquote($color);
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
@include position($name, $color);
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
// QUASAR
|
|
643
|
+
// no-border - border: none;
|
|
644
|
+
|
|
645
|
+
@each $position in $positions {
|
|
646
|
+
.s-border-#{$position}-none {
|
|
647
|
+
border-#{$position}: none !important;
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
/*********** border-radius ***********/
|
|
653
|
+
// QUASAR
|
|
654
|
+
// rounded-borders - border-radius: 2px
|
|
655
|
+
|
|
656
|
+
.s-border-radius-xxs {
|
|
657
|
+
border-radius: 4px !important;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.s-border-radius-xs {
|
|
661
|
+
border-radius: 6px;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.s-border-radius-sm {
|
|
665
|
+
border-radius: 8px !important;
|
|
666
|
+
// rfid issue-history 에 필요
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.s-border-radius-md {
|
|
670
|
+
border-radius: 10px;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.s-border-radius-lg {
|
|
674
|
+
border-radius: 12px;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.s-border-radius-xl {
|
|
678
|
+
border-radius: 14px;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.s-border-radius-xxl {
|
|
682
|
+
border-radius: 16px;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.s-border-radius-chip {
|
|
686
|
+
border-radius: 40px;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.s-border-radius-left-rounded {
|
|
690
|
+
border-radius: 2px 0 0 2px;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.s-border-radius-left-xxs {
|
|
694
|
+
border-radius: 4px 0 0 4px;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.s-border-radius-left-xs {
|
|
698
|
+
border-radius: 6px 0 0 6px;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.s-border-radius-left-sm {
|
|
702
|
+
border-radius: 8px 0 0 8px;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.s-border-radius-left-md {
|
|
706
|
+
border-radius: 10px 0 0 10px;
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.s-border-radius-left-lg {
|
|
710
|
+
border-radius: 12px 0 0 12px;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
.s-border-radius-left-xl {
|
|
714
|
+
border-radius: 14px 0 0 14px;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.s-border-radius-left-xxl {
|
|
718
|
+
border-radius: 16px 0 0 16px;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.s-border-radius-right-rounded {
|
|
722
|
+
border-radius: 0 2px 2px 0;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
.s-border-radius-right-xxs {
|
|
726
|
+
border-radius: 0 4px 4px 0;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.s-border-radius-right-xs {
|
|
730
|
+
border-radius: 0 6px 6px 0;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.s-border-radius-right-sm {
|
|
734
|
+
border-radius: 0 8px 8px 0;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.s-border-radius-right-md {
|
|
738
|
+
border-radius: 0 10px 10px 0;
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.s-border-radius-right-lg {
|
|
742
|
+
border-radius: 0 12px 12px 0;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.s-border-radius-right-xl {
|
|
746
|
+
border-radius: 0 14px 14px 0;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.s-border-radius-right-xxl {
|
|
750
|
+
border-radius: 0 16px 16px 0;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
// QUASAR
|
|
754
|
+
// no-border-radius - border-radius: none;
|
|
755
|
+
|
|
756
|
+
.s-border-radius-top-rounded {
|
|
757
|
+
border-radius: 2px 2px 0 0;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.s-border-radius-top-xxs {
|
|
761
|
+
border-radius: 4px 4px 0 0;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.s-border-radius-top-xs {
|
|
765
|
+
border-radius: 6px 6px 0 0;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.s-border-radius-top-sm {
|
|
769
|
+
border-radius: 8px 8px 0 0;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.s-border-radius-top-md {
|
|
773
|
+
border-radius: 10px 10px 0 0;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.s-border-radius-top-lg {
|
|
777
|
+
border-radius: 12px 12px 0 0;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.s-border-radius-top-xl {
|
|
781
|
+
border-radius: 14px 14px 0 0;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.s-border-radius-top-xxl {
|
|
785
|
+
border-radius: 16px 16px 0 0;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.s-border-radius-bottom-rounded {
|
|
789
|
+
border-radius: 0 0 2px 2px;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.s-border-radius-bottom-xxs {
|
|
793
|
+
border-radius: 0 0 4px 4px;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.s-border-radius-bottom-xs {
|
|
797
|
+
border-radius: 0 0 6px 6px;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.s-border-radius-bottom-sm {
|
|
801
|
+
border-radius: 0 0 8px 8px;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.s-border-radius-bottom-md {
|
|
805
|
+
border-radius: 0 0 10px 10px;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.s-border-radius-bottom-lg {
|
|
809
|
+
border-radius: 0 0 12px 12px;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.s-border-radius-bottom-xl {
|
|
813
|
+
border-radius: 0 0 14px 14px;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.s-border-radius-bottom-xxl {
|
|
817
|
+
border-radius: 0 0 16px 16px;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.s-border-top-left-radius-none {
|
|
821
|
+
border-top-left-radius: 0;
|
|
822
|
+
}
|
|
823
|
+
|
|
824
|
+
.s-border-top-right-radius-none {
|
|
825
|
+
border-top-right-radius: 0;
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.s-border-bottom-left-radius-none {
|
|
829
|
+
border-bottom-left-radius: 0;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.s-border-bottom-right-radius-none {
|
|
833
|
+
border-bottom-right-radius: 0;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
/*********** font ***********/
|
|
837
|
+
$fontSize: (
|
|
838
|
+
'9': 9,
|
|
839
|
+
'10': 10,
|
|
840
|
+
'11': 11,
|
|
841
|
+
'12': 12,
|
|
842
|
+
'13': 13,
|
|
843
|
+
'14': 14,
|
|
844
|
+
'15': 15,
|
|
845
|
+
'16': 16,
|
|
846
|
+
'17': 17,
|
|
847
|
+
'18': 18,
|
|
848
|
+
'19': 19,
|
|
849
|
+
'20': 20,
|
|
850
|
+
'24': 24,
|
|
851
|
+
'40': 40,
|
|
852
|
+
'66': 66,
|
|
853
|
+
);
|
|
854
|
+
$fontWeight: (
|
|
855
|
+
'400': 400,
|
|
856
|
+
'500': 500,
|
|
857
|
+
'600': 600,
|
|
858
|
+
'700': 700,
|
|
859
|
+
);
|
|
860
|
+
|
|
861
|
+
@mixin fonts($size, $weight) {
|
|
862
|
+
font-size: $size + 'px';
|
|
863
|
+
font-weight: $weight;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
@each $sizeKey, $size in $fontSize {
|
|
867
|
+
.font-#{$sizeKey} {
|
|
868
|
+
@include fonts(#{$size}, 400);
|
|
869
|
+
}
|
|
870
|
+
@each $weightKey, $weight in $fontWeight {
|
|
871
|
+
.font-#{$sizeKey}-#{$weightKey} {
|
|
872
|
+
@include fonts(#{$size}, #{$weight});
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
}
|