@bigtablet/design-system 1.23.0 → 1.24.1
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.css +637 -577
- package/dist/index.d.ts +526 -240
- package/dist/index.js +875 -660
- package/dist/next.css +28 -28
- package/dist/next.d.ts +1 -1
- package/dist/next.js +99 -147
- package/dist/styles/scss/_a11y.scss +4 -4
- package/dist/styles/scss/_breakpoints.scss +19 -13
- package/dist/styles/scss/_colors.scss +67 -55
- package/dist/styles/scss/_radius.scss +6 -5
- package/dist/styles/scss/_shadows.scss +5 -20
- package/dist/styles/scss/_spacing.scss +14 -12
- package/dist/styles/scss/_typography.scss +61 -64
- package/dist/styles/scss/_z-index.scss +6 -3
- package/dist/vanilla/bigtablet.min.css +1 -1
- package/dist/vanilla/bigtablet.min.js +2 -2
- package/package.json +148 -146
package/dist/index.css
CHANGED
|
@@ -8,42 +8,43 @@
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
.card {
|
|
11
|
-
background: #
|
|
11
|
+
background: #FFFFFF;
|
|
12
12
|
border-radius: 12px;
|
|
13
13
|
}
|
|
14
14
|
.card_bordered {
|
|
15
|
-
border: 1px solid #
|
|
15
|
+
border: 1px solid #E5E5E5;
|
|
16
16
|
}
|
|
17
17
|
.card_shadow_none {
|
|
18
18
|
box-shadow: none;
|
|
19
19
|
}
|
|
20
20
|
.card_shadow_sm {
|
|
21
|
-
box-shadow: 0
|
|
21
|
+
box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.2), 0 3px 3px 0px rgba(0, 0, 0, 0.12);
|
|
22
22
|
}
|
|
23
23
|
.card_shadow_md {
|
|
24
|
-
box-shadow: 0
|
|
24
|
+
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2), 0 6px 6px 0px rgba(0, 0, 0, 0.12);
|
|
25
25
|
}
|
|
26
26
|
.card_shadow_lg {
|
|
27
|
-
box-shadow: 0
|
|
27
|
+
box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2), 0 9px 9px 0px rgba(0, 0, 0, 0.12);
|
|
28
28
|
}
|
|
29
29
|
.card_p_none {
|
|
30
30
|
padding: 0;
|
|
31
31
|
}
|
|
32
32
|
.card_p_sm {
|
|
33
|
-
padding:
|
|
33
|
+
padding: 8px;
|
|
34
34
|
}
|
|
35
35
|
.card_p_md {
|
|
36
|
-
padding:
|
|
36
|
+
padding: 16px;
|
|
37
37
|
}
|
|
38
38
|
.card_p_lg {
|
|
39
|
-
padding:
|
|
39
|
+
padding: 24px;
|
|
40
40
|
}
|
|
41
41
|
.card_title {
|
|
42
|
-
font-size:
|
|
43
|
-
font-weight:
|
|
44
|
-
line-height:
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
font-size: 20px;
|
|
43
|
+
font-weight: 400;
|
|
44
|
+
line-height: 28px;
|
|
45
|
+
letter-spacing: 0px;
|
|
46
|
+
margin-bottom: 12px;
|
|
47
|
+
color: #121212;
|
|
47
48
|
}
|
|
48
49
|
.card_body {
|
|
49
50
|
width: 100%;
|
|
@@ -83,38 +84,41 @@
|
|
|
83
84
|
display: flex;
|
|
84
85
|
align-items: center;
|
|
85
86
|
justify-content: center;
|
|
86
|
-
z-index:
|
|
87
|
+
z-index: 1000;
|
|
87
88
|
animation: alert_fade_in 0.2s ease-in-out;
|
|
88
89
|
}
|
|
89
90
|
.alert_modal {
|
|
90
|
-
background: #
|
|
91
|
+
background: #FFFFFF;
|
|
91
92
|
border-radius: 12px;
|
|
92
93
|
min-width: 320px;
|
|
93
94
|
max-width: 480px;
|
|
94
|
-
box-shadow: 0
|
|
95
|
+
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2), 0 15px 15px 0px rgba(0, 0, 0, 0.12);
|
|
95
96
|
animation: alert_slide_up 0.3s ease-in-out;
|
|
96
97
|
overflow: hidden;
|
|
97
98
|
}
|
|
98
99
|
.alert_title {
|
|
99
|
-
font-size:
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
100
|
+
font-size: 18px;
|
|
101
|
+
font-weight: 400;
|
|
102
|
+
line-height: 24px;
|
|
103
|
+
letter-spacing: 0px;
|
|
104
|
+
font-weight: 500;
|
|
105
|
+
color: #3B82F6;
|
|
106
|
+
padding: 12px 20px 4px;
|
|
104
107
|
}
|
|
105
108
|
.alert_message {
|
|
106
|
-
font-size:
|
|
109
|
+
font-size: 15px;
|
|
107
110
|
font-weight: 400;
|
|
108
|
-
line-height:
|
|
111
|
+
line-height: 22.5px;
|
|
112
|
+
letter-spacing: 0px;
|
|
109
113
|
color: #666666;
|
|
110
|
-
padding:
|
|
111
|
-
line-height:
|
|
114
|
+
padding: 20px;
|
|
115
|
+
line-height: 28px;
|
|
112
116
|
}
|
|
113
117
|
.alert_actions {
|
|
114
118
|
display: flex;
|
|
115
|
-
gap:
|
|
119
|
+
gap: 8px;
|
|
116
120
|
align-items: center;
|
|
117
|
-
padding: 0
|
|
121
|
+
padding: 0 20px 20px;
|
|
118
122
|
}
|
|
119
123
|
.alert_actions_left {
|
|
120
124
|
justify-content: flex-start;
|
|
@@ -129,10 +133,10 @@
|
|
|
129
133
|
min-width: 80px;
|
|
130
134
|
padding: 10px 24px;
|
|
131
135
|
border-radius: 6px;
|
|
132
|
-
font-weight:
|
|
136
|
+
font-weight: 500;
|
|
133
137
|
cursor: pointer;
|
|
134
138
|
border: 1px solid transparent;
|
|
135
|
-
line-height:
|
|
139
|
+
line-height: 24px;
|
|
136
140
|
transition:
|
|
137
141
|
background 0.2s ease-in-out,
|
|
138
142
|
border-color 0.2s ease-in-out,
|
|
@@ -141,7 +145,7 @@
|
|
|
141
145
|
}
|
|
142
146
|
.alert_button:focus-visible {
|
|
143
147
|
outline: none;
|
|
144
|
-
box-shadow: 0 0 0 3px rgba(
|
|
148
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
145
149
|
}
|
|
146
150
|
.alert_button:active:not(:disabled) {
|
|
147
151
|
transform: scale(0.98);
|
|
@@ -151,56 +155,56 @@
|
|
|
151
155
|
opacity: 0.6;
|
|
152
156
|
}
|
|
153
157
|
.alert_button_cancel {
|
|
154
|
-
background: #
|
|
155
|
-
border-color: #
|
|
156
|
-
color: #
|
|
158
|
+
background: #FFFFFF;
|
|
159
|
+
border-color: #E5E5E5;
|
|
160
|
+
color: #121212;
|
|
157
161
|
}
|
|
158
162
|
.alert_button_cancel:hover:not(:disabled) {
|
|
159
|
-
background: #
|
|
163
|
+
background: #F4F4F4;
|
|
160
164
|
border-color: rgba(0, 0, 0, 0.08);
|
|
161
165
|
}
|
|
162
166
|
.alert_button_confirm {
|
|
163
|
-
color: #
|
|
167
|
+
color: #FFFFFF;
|
|
164
168
|
}
|
|
165
169
|
.alert_variant_info .alert_title {
|
|
166
|
-
color: #
|
|
170
|
+
color: #3B82F6;
|
|
167
171
|
}
|
|
168
172
|
.alert_variant_info .alert_button_confirm {
|
|
169
|
-
background: #
|
|
170
|
-
border-color: #
|
|
173
|
+
background: #3B82F6;
|
|
174
|
+
border-color: #3B82F6;
|
|
171
175
|
}
|
|
172
176
|
.alert_variant_info .alert_button_confirm:hover:not(:disabled) {
|
|
173
177
|
background: rgb(29.7434146341, 111.3414634146, 244.6565853659);
|
|
174
178
|
border-color: rgb(29.7434146341, 111.3414634146, 244.6565853659);
|
|
175
179
|
}
|
|
176
180
|
.alert_variant_success .alert_title {
|
|
177
|
-
color: #
|
|
181
|
+
color: #10B981;
|
|
178
182
|
}
|
|
179
183
|
.alert_variant_success .alert_button_confirm {
|
|
180
|
-
background: #
|
|
181
|
-
border-color: #
|
|
184
|
+
background: #10B981;
|
|
185
|
+
border-color: #10B981;
|
|
182
186
|
}
|
|
183
187
|
.alert_variant_success .alert_button_confirm:hover:not(:disabled) {
|
|
184
188
|
background: rgb(13.5641791045, 156.8358208955, 109.3611940299);
|
|
185
189
|
border-color: rgb(13.5641791045, 156.8358208955, 109.3611940299);
|
|
186
190
|
}
|
|
187
191
|
.alert_variant_warning .alert_title {
|
|
188
|
-
color: #
|
|
192
|
+
color: #F59E0B;
|
|
189
193
|
}
|
|
190
194
|
.alert_variant_warning .alert_button_confirm {
|
|
191
|
-
background: #
|
|
192
|
-
border-color: #
|
|
195
|
+
background: #F59E0B;
|
|
196
|
+
border-color: #F59E0B;
|
|
193
197
|
}
|
|
194
198
|
.alert_variant_warning .alert_button_confirm:hover:not(:disabled) {
|
|
195
199
|
background: rgb(216.525984252, 139.3220472441, 8.874015748);
|
|
196
200
|
border-color: rgb(216.525984252, 139.3220472441, 8.874015748);
|
|
197
201
|
}
|
|
198
202
|
.alert_variant_error .alert_title {
|
|
199
|
-
color: #
|
|
203
|
+
color: #EF4444;
|
|
200
204
|
}
|
|
201
205
|
.alert_variant_error .alert_button_confirm {
|
|
202
|
-
background: #
|
|
203
|
-
border-color: #
|
|
206
|
+
background: #EF4444;
|
|
207
|
+
border-color: #EF4444;
|
|
204
208
|
}
|
|
205
209
|
.alert_variant_error .alert_button_confirm:hover:not(:disabled) {
|
|
206
210
|
background: rgb(236.5881773399, 39.8118226601, 39.8118226601);
|
|
@@ -225,47 +229,11 @@
|
|
|
225
229
|
display: inline-block;
|
|
226
230
|
box-sizing: border-box;
|
|
227
231
|
border-radius: 50%;
|
|
228
|
-
border: 2px solid #
|
|
229
|
-
border-top-color: #
|
|
232
|
+
border: 2px solid #E5E5E5;
|
|
233
|
+
border-top-color: #121212;
|
|
230
234
|
animation: spinner_spin 0.8s linear infinite;
|
|
231
235
|
}
|
|
232
236
|
|
|
233
|
-
/* src/ui/feedback/top-loading/style.scss */
|
|
234
|
-
@keyframes skeleton_loading {
|
|
235
|
-
0% {
|
|
236
|
-
background-position: 100% 0;
|
|
237
|
-
}
|
|
238
|
-
100% {
|
|
239
|
-
background-position: 0 0;
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
.top_loading {
|
|
243
|
-
position: fixed;
|
|
244
|
-
top: 0;
|
|
245
|
-
left: 0;
|
|
246
|
-
right: 0;
|
|
247
|
-
z-index: 10001;
|
|
248
|
-
overflow: hidden;
|
|
249
|
-
background-color: transparent;
|
|
250
|
-
}
|
|
251
|
-
.top_loading_bar {
|
|
252
|
-
height: 100%;
|
|
253
|
-
background-color: #000000;
|
|
254
|
-
transition: width 0.2s ease-in-out;
|
|
255
|
-
}
|
|
256
|
-
.top_loading_indeterminate {
|
|
257
|
-
width: 30%;
|
|
258
|
-
animation: top_loading_indeterminate 1.5s ease-in-out infinite;
|
|
259
|
-
}
|
|
260
|
-
@keyframes top_loading_indeterminate {
|
|
261
|
-
0% {
|
|
262
|
-
transform: translateX(-100%);
|
|
263
|
-
}
|
|
264
|
-
100% {
|
|
265
|
-
transform: translateX(400%);
|
|
266
|
-
}
|
|
267
|
-
}
|
|
268
|
-
|
|
269
237
|
/* src/ui/feedback/toast/style.scss */
|
|
270
238
|
@keyframes skeleton_loading {
|
|
271
239
|
0% {
|
|
@@ -305,12 +273,12 @@
|
|
|
305
273
|
}
|
|
306
274
|
.toast_container {
|
|
307
275
|
position: fixed;
|
|
308
|
-
top:
|
|
309
|
-
right:
|
|
310
|
-
z-index:
|
|
276
|
+
top: 16px;
|
|
277
|
+
right: 16px;
|
|
278
|
+
z-index: 200;
|
|
311
279
|
display: flex;
|
|
312
280
|
flex-direction: column;
|
|
313
|
-
gap:
|
|
281
|
+
gap: 8px;
|
|
314
282
|
pointer-events: none;
|
|
315
283
|
width: 360px;
|
|
316
284
|
max-width: calc(100vw - 32px);
|
|
@@ -321,17 +289,17 @@
|
|
|
321
289
|
overflow: hidden;
|
|
322
290
|
display: flex;
|
|
323
291
|
align-items: flex-start;
|
|
324
|
-
gap:
|
|
325
|
-
padding:
|
|
326
|
-
background: #
|
|
327
|
-
border: 1px solid #
|
|
292
|
+
gap: 8px;
|
|
293
|
+
padding: 12px 12px 16px;
|
|
294
|
+
background: #FFFFFF;
|
|
295
|
+
border: 1px solid #E5E5E5;
|
|
328
296
|
border-radius: 12px;
|
|
329
|
-
box-shadow: 0
|
|
297
|
+
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2), 0 6px 6px 0px rgba(0, 0, 0, 0.12);
|
|
330
298
|
font-family: "Pretendard", sans-serif;
|
|
331
|
-
font-size:
|
|
299
|
+
font-size: 14px;
|
|
332
300
|
font-weight: 500;
|
|
333
|
-
color: #
|
|
334
|
-
line-height:
|
|
301
|
+
color: #121212;
|
|
302
|
+
line-height: 24px;
|
|
335
303
|
animation: toast_slide_in 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
336
304
|
}
|
|
337
305
|
.toast_item_exiting {
|
|
@@ -343,16 +311,16 @@
|
|
|
343
311
|
display: flex;
|
|
344
312
|
}
|
|
345
313
|
.toast_icon_success {
|
|
346
|
-
color: #
|
|
314
|
+
color: #10B981;
|
|
347
315
|
}
|
|
348
316
|
.toast_icon_error {
|
|
349
|
-
color: #
|
|
317
|
+
color: #EF4444;
|
|
350
318
|
}
|
|
351
319
|
.toast_icon_warning {
|
|
352
|
-
color: #
|
|
320
|
+
color: #F59E0B;
|
|
353
321
|
}
|
|
354
322
|
.toast_icon_info {
|
|
355
|
-
color: #
|
|
323
|
+
color: #3B82F6;
|
|
356
324
|
}
|
|
357
325
|
.toast_icon_default {
|
|
358
326
|
color: #666666;
|
|
@@ -373,17 +341,17 @@
|
|
|
373
341
|
border: none;
|
|
374
342
|
background: none;
|
|
375
343
|
cursor: pointer;
|
|
376
|
-
color: #
|
|
344
|
+
color: #888888;
|
|
377
345
|
border-radius: 6px;
|
|
378
346
|
transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
|
|
379
347
|
}
|
|
380
348
|
.toast_close:hover {
|
|
381
|
-
color: #
|
|
382
|
-
background-color: #
|
|
349
|
+
color: #121212;
|
|
350
|
+
background-color: #F4F4F4;
|
|
383
351
|
}
|
|
384
352
|
.toast_close:focus-visible {
|
|
385
353
|
outline: none;
|
|
386
|
-
box-shadow: 0 0 0 3px rgba(
|
|
354
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
387
355
|
}
|
|
388
356
|
.toast_progress {
|
|
389
357
|
position: absolute;
|
|
@@ -394,22 +362,22 @@
|
|
|
394
362
|
animation: toast_progress var(--toast-duration, 3000ms) linear forwards;
|
|
395
363
|
}
|
|
396
364
|
.toast_progress_success {
|
|
397
|
-
background: #
|
|
365
|
+
background: #10B981;
|
|
398
366
|
}
|
|
399
367
|
.toast_progress_error {
|
|
400
|
-
background: #
|
|
368
|
+
background: #EF4444;
|
|
401
369
|
}
|
|
402
370
|
.toast_progress_warning {
|
|
403
|
-
background: #
|
|
371
|
+
background: #F59E0B;
|
|
404
372
|
}
|
|
405
373
|
.toast_progress_info {
|
|
406
|
-
background: #
|
|
374
|
+
background: #3B82F6;
|
|
407
375
|
}
|
|
408
376
|
.toast_progress_default {
|
|
409
377
|
background: #666666;
|
|
410
378
|
}
|
|
411
379
|
|
|
412
|
-
/* src/ui/
|
|
380
|
+
/* src/ui/feedback/top-loading/style.scss */
|
|
413
381
|
@keyframes skeleton_loading {
|
|
414
382
|
0% {
|
|
415
383
|
background-position: 100% 0;
|
|
@@ -418,83 +386,31 @@
|
|
|
418
386
|
background-position: 0 0;
|
|
419
387
|
}
|
|
420
388
|
}
|
|
421
|
-
.
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
font-weight: 500;
|
|
430
|
-
transition:
|
|
431
|
-
background 0.2s ease-in-out,
|
|
432
|
-
color 0.2s ease-in-out,
|
|
433
|
-
box-shadow 0.2s ease-in-out,
|
|
434
|
-
transform 0.2s ease-in-out;
|
|
435
|
-
}
|
|
436
|
-
.button:disabled {
|
|
437
|
-
cursor: not-allowed;
|
|
438
|
-
opacity: 0.6;
|
|
439
|
-
}
|
|
440
|
-
.button_size_sm {
|
|
441
|
-
padding: 0.5rem 1rem;
|
|
442
|
-
font-size: 0.875rem;
|
|
443
|
-
line-height: 1.5;
|
|
444
|
-
}
|
|
445
|
-
.button_size_md {
|
|
446
|
-
padding: 0.75rem 1.25rem;
|
|
447
|
-
font-size: 0.9375rem;
|
|
448
|
-
line-height: 1.5;
|
|
449
|
-
}
|
|
450
|
-
.button_size_lg {
|
|
451
|
-
padding: 1rem 1.5rem;
|
|
452
|
-
font-size: 1rem;
|
|
453
|
-
line-height: 1.5;
|
|
454
|
-
}
|
|
455
|
-
.button_variant_primary {
|
|
456
|
-
background: #000000;
|
|
457
|
-
color: #ffffff;
|
|
458
|
-
}
|
|
459
|
-
.button_variant_primary:hover:not(:disabled) {
|
|
460
|
-
background: #333333;
|
|
461
|
-
}
|
|
462
|
-
.button_variant_primary:active:not(:disabled) {
|
|
463
|
-
transform: scale(0.98);
|
|
464
|
-
}
|
|
465
|
-
.button_variant_secondary {
|
|
466
|
-
background: transparent;
|
|
467
|
-
border: 1px solid #e5e5e5;
|
|
468
|
-
color: #1a1a1a;
|
|
469
|
-
}
|
|
470
|
-
.button_variant_secondary:hover:not(:disabled) {
|
|
471
|
-
background: #fafafa;
|
|
472
|
-
}
|
|
473
|
-
.button_variant_secondary:active:not(:disabled) {
|
|
474
|
-
transform: scale(0.98);
|
|
475
|
-
}
|
|
476
|
-
.button_variant_ghost {
|
|
477
|
-
background: transparent;
|
|
478
|
-
color: #1a1a1a;
|
|
479
|
-
}
|
|
480
|
-
.button_variant_ghost:hover:not(:disabled) {
|
|
481
|
-
background: rgba(0, 0, 0, 0.05);
|
|
482
|
-
}
|
|
483
|
-
.button_variant_ghost:active:not(:disabled) {
|
|
484
|
-
transform: scale(0.96);
|
|
485
|
-
}
|
|
486
|
-
.button_variant_danger {
|
|
487
|
-
background: #ef4444;
|
|
488
|
-
color: #ffffff;
|
|
389
|
+
.top_loading {
|
|
390
|
+
position: fixed;
|
|
391
|
+
top: 0;
|
|
392
|
+
left: 0;
|
|
393
|
+
right: 0;
|
|
394
|
+
z-index: 500;
|
|
395
|
+
overflow: hidden;
|
|
396
|
+
background-color: transparent;
|
|
489
397
|
}
|
|
490
|
-
.
|
|
491
|
-
|
|
398
|
+
.top_loading_bar {
|
|
399
|
+
height: 100%;
|
|
400
|
+
background-color: #121212;
|
|
401
|
+
transition: width 0.2s ease-in-out;
|
|
492
402
|
}
|
|
493
|
-
.
|
|
494
|
-
|
|
403
|
+
.top_loading_indeterminate {
|
|
404
|
+
width: 30%;
|
|
405
|
+
animation: top_loading_indeterminate 1.5s ease-in-out infinite;
|
|
495
406
|
}
|
|
496
|
-
|
|
497
|
-
|
|
407
|
+
@keyframes top_loading_indeterminate {
|
|
408
|
+
0% {
|
|
409
|
+
transform: translateX(-100%);
|
|
410
|
+
}
|
|
411
|
+
100% {
|
|
412
|
+
transform: translateX(400%);
|
|
413
|
+
}
|
|
498
414
|
}
|
|
499
415
|
|
|
500
416
|
/* src/ui/form/checkbox/style.scss */
|
|
@@ -509,7 +425,7 @@
|
|
|
509
425
|
.checkbox {
|
|
510
426
|
display: inline-flex;
|
|
511
427
|
align-items: center;
|
|
512
|
-
gap:
|
|
428
|
+
gap: 8px;
|
|
513
429
|
cursor: pointer;
|
|
514
430
|
user-select: none;
|
|
515
431
|
position: relative;
|
|
@@ -527,9 +443,9 @@
|
|
|
527
443
|
width: 1.125rem;
|
|
528
444
|
height: 1.125rem;
|
|
529
445
|
box-sizing: border-box;
|
|
530
|
-
border: 1px solid #
|
|
446
|
+
border: 1px solid #E5E5E5;
|
|
531
447
|
border-radius: 6px;
|
|
532
|
-
background: #
|
|
448
|
+
background: #FFFFFF;
|
|
533
449
|
transition:
|
|
534
450
|
background 0.2s ease-in-out,
|
|
535
451
|
border-color 0.2s ease-in-out,
|
|
@@ -538,17 +454,21 @@
|
|
|
538
454
|
position: relative;
|
|
539
455
|
}
|
|
540
456
|
.checkbox_label {
|
|
541
|
-
font-size:
|
|
542
|
-
|
|
543
|
-
|
|
457
|
+
font-size: 15px;
|
|
458
|
+
font-weight: 400;
|
|
459
|
+
line-height: 22.5px;
|
|
460
|
+
letter-spacing: 0px;
|
|
461
|
+
color: #121212;
|
|
544
462
|
}
|
|
545
463
|
.checkbox_size_sm .checkbox_box {
|
|
546
464
|
width: 1rem;
|
|
547
465
|
height: 1rem;
|
|
548
466
|
}
|
|
549
467
|
.checkbox_size_sm .checkbox_label {
|
|
550
|
-
font-size:
|
|
551
|
-
|
|
468
|
+
font-size: 12px;
|
|
469
|
+
font-weight: 400;
|
|
470
|
+
line-height: 16px;
|
|
471
|
+
letter-spacing: 0px;
|
|
552
472
|
}
|
|
553
473
|
.checkbox_size_md .checkbox_box {
|
|
554
474
|
width: 1.125rem;
|
|
@@ -559,12 +479,14 @@
|
|
|
559
479
|
height: 1.25rem;
|
|
560
480
|
}
|
|
561
481
|
.checkbox_size_lg .checkbox_label {
|
|
562
|
-
font-size:
|
|
563
|
-
|
|
482
|
+
font-size: 16px;
|
|
483
|
+
font-weight: 400;
|
|
484
|
+
line-height: 24px;
|
|
485
|
+
letter-spacing: 0px;
|
|
564
486
|
}
|
|
565
487
|
.checkbox_input:focus-visible + .checkbox_box {
|
|
566
488
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
567
|
-
border-color: #
|
|
489
|
+
border-color: #121212;
|
|
568
490
|
}
|
|
569
491
|
.checkbox_input:disabled + .checkbox_box,
|
|
570
492
|
.checkbox_input:disabled ~ .checkbox_label {
|
|
@@ -579,7 +501,7 @@
|
|
|
579
501
|
top: 50%;
|
|
580
502
|
width: 0.7rem;
|
|
581
503
|
height: 2px;
|
|
582
|
-
background:
|
|
504
|
+
background: rgba(26, 26, 26, 0.38);
|
|
583
505
|
border-radius: 9999px;
|
|
584
506
|
}
|
|
585
507
|
.checkbox_input:disabled:not(:checked):not(:indeterminate) + .checkbox_box::before {
|
|
@@ -590,8 +512,8 @@
|
|
|
590
512
|
}
|
|
591
513
|
.checkbox_input:checked + .checkbox_box,
|
|
592
514
|
.checkbox_input:indeterminate + .checkbox_box {
|
|
593
|
-
background: #
|
|
594
|
-
border-color: #
|
|
515
|
+
background: #121212;
|
|
516
|
+
border-color: #121212;
|
|
595
517
|
}
|
|
596
518
|
.checkbox_input:checked + .checkbox_box::after {
|
|
597
519
|
content: "";
|
|
@@ -600,7 +522,7 @@
|
|
|
600
522
|
top: 50%;
|
|
601
523
|
width: 0.28rem;
|
|
602
524
|
height: 0.55rem;
|
|
603
|
-
border: 2px solid #
|
|
525
|
+
border: 2px solid #FFFFFF;
|
|
604
526
|
border-top: 0;
|
|
605
527
|
border-left: 0;
|
|
606
528
|
transform: translate(-50%, -58%) rotate(45deg);
|
|
@@ -612,11 +534,127 @@
|
|
|
612
534
|
top: 50%;
|
|
613
535
|
width: 0.65rem;
|
|
614
536
|
height: 2px;
|
|
615
|
-
background: #
|
|
537
|
+
background: #FFFFFF;
|
|
616
538
|
transform: translate(-50%, -50%);
|
|
617
539
|
border-radius: 9999px;
|
|
618
540
|
}
|
|
619
541
|
|
|
542
|
+
/* src/ui/form/date-picker/style.scss */
|
|
543
|
+
@keyframes skeleton_loading {
|
|
544
|
+
0% {
|
|
545
|
+
background-position: 100% 0;
|
|
546
|
+
}
|
|
547
|
+
100% {
|
|
548
|
+
background-position: 0 0;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
.date_picker {
|
|
552
|
+
display: flex;
|
|
553
|
+
flex-direction: column;
|
|
554
|
+
gap: 4px;
|
|
555
|
+
}
|
|
556
|
+
.date_picker select {
|
|
557
|
+
min-width: 88px;
|
|
558
|
+
height: 44px;
|
|
559
|
+
padding: 0 12px;
|
|
560
|
+
font-family: "Pretendard", sans-serif;
|
|
561
|
+
font-size: 15px;
|
|
562
|
+
font-weight: 400;
|
|
563
|
+
line-height: 22.5px;
|
|
564
|
+
letter-spacing: 0px;
|
|
565
|
+
color: #121212;
|
|
566
|
+
background-color: #FFFFFF;
|
|
567
|
+
border: 1px solid #E5E5E5;
|
|
568
|
+
border-radius: 6px;
|
|
569
|
+
cursor: pointer;
|
|
570
|
+
transition:
|
|
571
|
+
border-color 0.1s ease-in-out,
|
|
572
|
+
box-shadow 0.1s ease-in-out,
|
|
573
|
+
background-color 0.1s ease-in-out;
|
|
574
|
+
appearance: none;
|
|
575
|
+
background-image:
|
|
576
|
+
linear-gradient(
|
|
577
|
+
45deg,
|
|
578
|
+
transparent 50%,
|
|
579
|
+
#666666 50%),
|
|
580
|
+
linear-gradient(
|
|
581
|
+
135deg,
|
|
582
|
+
#666666 50%,
|
|
583
|
+
transparent 50%);
|
|
584
|
+
background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
|
|
585
|
+
background-size: 5px 5px;
|
|
586
|
+
background-repeat: no-repeat;
|
|
587
|
+
}
|
|
588
|
+
.date_picker select:hover:not(:disabled) {
|
|
589
|
+
border-color: #121212;
|
|
590
|
+
background-color: #F4F4F4;
|
|
591
|
+
}
|
|
592
|
+
.date_picker select:focus-visible {
|
|
593
|
+
outline: none;
|
|
594
|
+
border-color: #121212;
|
|
595
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
596
|
+
background-color: #FFFFFF;
|
|
597
|
+
}
|
|
598
|
+
.date_picker select:disabled {
|
|
599
|
+
cursor: not-allowed;
|
|
600
|
+
color: rgba(26, 26, 26, 0.38);
|
|
601
|
+
background-color: #F4F4F4;
|
|
602
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
603
|
+
}
|
|
604
|
+
.date_picker select option {
|
|
605
|
+
color: #121212;
|
|
606
|
+
}
|
|
607
|
+
@media (max-width: 480px) {
|
|
608
|
+
.date_picker select {
|
|
609
|
+
flex: 1;
|
|
610
|
+
min-width: 0;
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
.date_picker_label {
|
|
614
|
+
color: #121212;
|
|
615
|
+
margin-bottom: 4px;
|
|
616
|
+
font-weight: 500;
|
|
617
|
+
font-size: 14px;
|
|
618
|
+
line-height: 24px;
|
|
619
|
+
}
|
|
620
|
+
.date_picker_required {
|
|
621
|
+
margin-left: 4px;
|
|
622
|
+
color: #EF4444;
|
|
623
|
+
}
|
|
624
|
+
.date_picker_fields {
|
|
625
|
+
display: flex;
|
|
626
|
+
gap: 8px;
|
|
627
|
+
}
|
|
628
|
+
@media (max-width: 480px) {
|
|
629
|
+
.date_picker_fields {
|
|
630
|
+
gap: 4px;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
.date_picker_full_width {
|
|
634
|
+
width: 100%;
|
|
635
|
+
}
|
|
636
|
+
.date_picker_full_width .date_picker_fields {
|
|
637
|
+
width: 100%;
|
|
638
|
+
}
|
|
639
|
+
.date_picker_full_width select {
|
|
640
|
+
flex: 1;
|
|
641
|
+
min-width: 0;
|
|
642
|
+
}
|
|
643
|
+
.date_picker_disabled .date_picker_label {
|
|
644
|
+
color: rgba(26, 26, 26, 0.38);
|
|
645
|
+
}
|
|
646
|
+
.date_picker_sr_only {
|
|
647
|
+
position: absolute;
|
|
648
|
+
width: 1px;
|
|
649
|
+
height: 1px;
|
|
650
|
+
padding: 0;
|
|
651
|
+
margin: -1px;
|
|
652
|
+
overflow: hidden;
|
|
653
|
+
clip: rect(0, 0, 0, 0);
|
|
654
|
+
white-space: nowrap;
|
|
655
|
+
border: 0;
|
|
656
|
+
}
|
|
657
|
+
|
|
620
658
|
/* src/ui/form/file/style.scss */
|
|
621
659
|
@keyframes skeleton_loading {
|
|
622
660
|
0% {
|
|
@@ -644,13 +682,15 @@
|
|
|
644
682
|
cursor: pointer;
|
|
645
683
|
}
|
|
646
684
|
.file_input_label {
|
|
647
|
-
border: 1px solid #
|
|
685
|
+
border: 1px solid #E5E5E5;
|
|
648
686
|
border-radius: 8px;
|
|
649
|
-
background: #
|
|
650
|
-
padding:
|
|
651
|
-
font-size:
|
|
652
|
-
|
|
653
|
-
|
|
687
|
+
background: #FFFFFF;
|
|
688
|
+
padding: 8px 16px;
|
|
689
|
+
font-size: 15px;
|
|
690
|
+
font-weight: 400;
|
|
691
|
+
line-height: 22.5px;
|
|
692
|
+
letter-spacing: 0px;
|
|
693
|
+
color: #121212;
|
|
654
694
|
transition:
|
|
655
695
|
background 0.2s ease-in-out,
|
|
656
696
|
border-color 0.2s ease-in-out,
|
|
@@ -658,13 +698,15 @@
|
|
|
658
698
|
}
|
|
659
699
|
.file_input_control:focus-visible + .file_input_label {
|
|
660
700
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
661
|
-
border-color: #
|
|
701
|
+
border-color: #121212;
|
|
662
702
|
}
|
|
663
703
|
.file_input_helper {
|
|
664
704
|
display: block;
|
|
665
|
-
margin-top:
|
|
666
|
-
font-size:
|
|
667
|
-
|
|
705
|
+
margin-top: 4px;
|
|
706
|
+
font-size: 12px;
|
|
707
|
+
font-weight: 400;
|
|
708
|
+
line-height: 16px;
|
|
709
|
+
letter-spacing: 0px;
|
|
668
710
|
color: #666666;
|
|
669
711
|
}
|
|
670
712
|
.file_input_disabled {
|
|
@@ -678,7 +720,7 @@
|
|
|
678
720
|
cursor: not-allowed;
|
|
679
721
|
}
|
|
680
722
|
.file_input_disabled:hover .file_input_label {
|
|
681
|
-
border-color: #
|
|
723
|
+
border-color: #E5E5E5;
|
|
682
724
|
}
|
|
683
725
|
|
|
684
726
|
/* src/ui/form/radio/style.scss */
|
|
@@ -694,7 +736,7 @@
|
|
|
694
736
|
position: relative;
|
|
695
737
|
display: inline-flex;
|
|
696
738
|
align-items: center;
|
|
697
|
-
gap:
|
|
739
|
+
gap: 8px;
|
|
698
740
|
cursor: pointer;
|
|
699
741
|
user-select: none;
|
|
700
742
|
}
|
|
@@ -706,12 +748,12 @@
|
|
|
706
748
|
margin: 0;
|
|
707
749
|
}
|
|
708
750
|
.radio_dot {
|
|
709
|
-
width:
|
|
710
|
-
height:
|
|
751
|
+
width: 16px;
|
|
752
|
+
height: 16px;
|
|
711
753
|
box-sizing: border-box;
|
|
712
|
-
border: 1px solid #
|
|
754
|
+
border: 1px solid #E5E5E5;
|
|
713
755
|
border-radius: 9999px;
|
|
714
|
-
background: #
|
|
756
|
+
background: #FFFFFF;
|
|
715
757
|
transition:
|
|
716
758
|
background 0.2s ease-in-out,
|
|
717
759
|
border-color 0.2s ease-in-out,
|
|
@@ -720,17 +762,21 @@
|
|
|
720
762
|
display: inline-block;
|
|
721
763
|
}
|
|
722
764
|
.radio_label {
|
|
723
|
-
font-size:
|
|
724
|
-
|
|
725
|
-
|
|
765
|
+
font-size: 15px;
|
|
766
|
+
font-weight: 400;
|
|
767
|
+
line-height: 22.5px;
|
|
768
|
+
letter-spacing: 0px;
|
|
769
|
+
color: #121212;
|
|
726
770
|
}
|
|
727
771
|
.radio_size_sm .radio_dot {
|
|
728
772
|
width: 1rem;
|
|
729
773
|
height: 1rem;
|
|
730
774
|
}
|
|
731
775
|
.radio_size_sm .radio_label {
|
|
732
|
-
font-size:
|
|
733
|
-
|
|
776
|
+
font-size: 12px;
|
|
777
|
+
font-weight: 400;
|
|
778
|
+
line-height: 16px;
|
|
779
|
+
letter-spacing: 0px;
|
|
734
780
|
}
|
|
735
781
|
.radio_size_md .radio_dot {
|
|
736
782
|
width: 1.125rem;
|
|
@@ -741,15 +787,17 @@
|
|
|
741
787
|
height: 1.25rem;
|
|
742
788
|
}
|
|
743
789
|
.radio_size_lg .radio_label {
|
|
744
|
-
font-size:
|
|
745
|
-
|
|
790
|
+
font-size: 16px;
|
|
791
|
+
font-weight: 400;
|
|
792
|
+
line-height: 24px;
|
|
793
|
+
letter-spacing: 0px;
|
|
746
794
|
}
|
|
747
795
|
.radio_input:focus-visible + .radio_dot {
|
|
748
796
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
749
|
-
border-color: #
|
|
797
|
+
border-color: #121212;
|
|
750
798
|
}
|
|
751
799
|
.radio_input:checked + .radio_dot {
|
|
752
|
-
border-color: #
|
|
800
|
+
border-color: #121212;
|
|
753
801
|
}
|
|
754
802
|
.radio_input:checked + .radio_dot::after {
|
|
755
803
|
content: "";
|
|
@@ -759,7 +807,7 @@
|
|
|
759
807
|
width: 60%;
|
|
760
808
|
height: 60%;
|
|
761
809
|
transform: translate(-50%, -50%);
|
|
762
|
-
background: #
|
|
810
|
+
background: #121212;
|
|
763
811
|
border-radius: 9999px;
|
|
764
812
|
}
|
|
765
813
|
.radio_input:disabled + .radio_dot,
|
|
@@ -768,7 +816,7 @@
|
|
|
768
816
|
cursor: not-allowed;
|
|
769
817
|
}
|
|
770
818
|
|
|
771
|
-
/* src/ui/
|
|
819
|
+
/* src/ui/form/switch/style.scss */
|
|
772
820
|
@keyframes skeleton_loading {
|
|
773
821
|
0% {
|
|
774
822
|
background-position: 100% 0;
|
|
@@ -777,210 +825,28 @@
|
|
|
777
825
|
background-position: 0 0;
|
|
778
826
|
}
|
|
779
827
|
}
|
|
780
|
-
.
|
|
828
|
+
.switch {
|
|
781
829
|
position: relative;
|
|
782
830
|
display: inline-flex;
|
|
783
|
-
flex-direction: column;
|
|
784
|
-
width: 100%;
|
|
785
|
-
gap: 0.25rem;
|
|
786
|
-
font-family: "Pretendard", sans-serif;
|
|
787
|
-
}
|
|
788
|
-
.select_label {
|
|
789
|
-
font-size: 0.875rem;
|
|
790
|
-
line-height: 1.5;
|
|
791
|
-
font-weight: 500;
|
|
792
|
-
color: #1a1a1a;
|
|
793
|
-
}
|
|
794
|
-
.select_control {
|
|
795
|
-
width: 100%;
|
|
796
|
-
display: inline-flex;
|
|
797
831
|
align-items: center;
|
|
798
|
-
|
|
799
|
-
|
|
832
|
+
width: 40px;
|
|
833
|
+
height: 22px;
|
|
834
|
+
padding: 2px;
|
|
835
|
+
border-radius: 9999px;
|
|
836
|
+
background: #E5E5E5;
|
|
837
|
+
transition: background 0.2s ease-in-out;
|
|
800
838
|
cursor: pointer;
|
|
801
|
-
color: #1a1a1a;
|
|
802
|
-
background: #ffffff;
|
|
803
|
-
border-radius: 8px;
|
|
804
|
-
transition:
|
|
805
|
-
border-color 0.2s ease-in-out,
|
|
806
|
-
box-shadow 0.2s ease-in-out,
|
|
807
|
-
background 0.2s ease-in-out;
|
|
808
|
-
font-size: 0.9375rem;
|
|
809
|
-
line-height: 1.5;
|
|
810
|
-
}
|
|
811
|
-
.select_control:disabled,
|
|
812
|
-
.select_control.is_disabled {
|
|
813
|
-
cursor: not-allowed;
|
|
814
|
-
opacity: 0.7;
|
|
815
|
-
background: #fafafa;
|
|
816
|
-
color: #999999;
|
|
817
839
|
}
|
|
818
|
-
.
|
|
819
|
-
|
|
840
|
+
.switch_thumb {
|
|
841
|
+
width: 18px;
|
|
842
|
+
height: 18px;
|
|
843
|
+
background: #FFFFFF;
|
|
844
|
+
border-radius: 9999px;
|
|
845
|
+
transition: transform 0.2s ease-in-out;
|
|
846
|
+
transform: translateX(0);
|
|
820
847
|
}
|
|
821
|
-
.
|
|
822
|
-
|
|
823
|
-
}
|
|
824
|
-
.select_variant_outline.is_open {
|
|
825
|
-
border-color: #000000;
|
|
826
|
-
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
827
|
-
}
|
|
828
|
-
.select_variant_filled {
|
|
829
|
-
background: #fafafa;
|
|
830
|
-
border: 1px solid transparent;
|
|
831
|
-
}
|
|
832
|
-
.select_variant_filled:hover:not(.is_disabled) {
|
|
833
|
-
background: rgb(253.5, 253.5, 253.5);
|
|
834
|
-
}
|
|
835
|
-
.select_variant_filled.is_open {
|
|
836
|
-
background: #ffffff;
|
|
837
|
-
border-color: #000000;
|
|
838
|
-
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
839
|
-
}
|
|
840
|
-
.select_variant_ghost {
|
|
841
|
-
background: transparent;
|
|
842
|
-
border: 1px solid transparent;
|
|
843
|
-
}
|
|
844
|
-
.select_variant_ghost:hover:not(.is_disabled) {
|
|
845
|
-
background: rgba(0, 0, 0, 0.03);
|
|
846
|
-
}
|
|
847
|
-
.select_variant_ghost.is_open {
|
|
848
|
-
background: #ffffff;
|
|
849
|
-
border-color: #000000;
|
|
850
|
-
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
851
|
-
}
|
|
852
|
-
.select_size_sm {
|
|
853
|
-
padding: 0.5rem 1rem;
|
|
854
|
-
font-size: 0.875rem;
|
|
855
|
-
line-height: 1.5;
|
|
856
|
-
}
|
|
857
|
-
.select_size_md {
|
|
858
|
-
padding: 0.75rem 1.25rem;
|
|
859
|
-
font-size: 0.9375rem;
|
|
860
|
-
line-height: 1.5;
|
|
861
|
-
}
|
|
862
|
-
.select_size_lg {
|
|
863
|
-
padding: 1rem 1.5rem;
|
|
864
|
-
font-size: 1rem;
|
|
865
|
-
line-height: 1.5;
|
|
866
|
-
}
|
|
867
|
-
.select_value {
|
|
868
|
-
flex: 1 1 auto;
|
|
869
|
-
min-width: 0;
|
|
870
|
-
overflow: hidden;
|
|
871
|
-
text-overflow: ellipsis;
|
|
872
|
-
white-space: nowrap;
|
|
873
|
-
text-align: start;
|
|
874
|
-
font-size: 0.9375rem;
|
|
875
|
-
font-weight: 400;
|
|
876
|
-
line-height: 1.5;
|
|
877
|
-
}
|
|
878
|
-
.select_placeholder {
|
|
879
|
-
flex: 1 1 auto;
|
|
880
|
-
min-width: 0;
|
|
881
|
-
overflow: hidden;
|
|
882
|
-
text-overflow: ellipsis;
|
|
883
|
-
white-space: nowrap;
|
|
884
|
-
text-align: start;
|
|
885
|
-
font-size: 0.9375rem;
|
|
886
|
-
font-weight: 400;
|
|
887
|
-
line-height: 1.5;
|
|
888
|
-
color: #999999;
|
|
889
|
-
}
|
|
890
|
-
.select_icon {
|
|
891
|
-
display: inline-flex;
|
|
892
|
-
align-items: center;
|
|
893
|
-
justify-content: center;
|
|
894
|
-
color: #666666;
|
|
895
|
-
}
|
|
896
|
-
.select_list {
|
|
897
|
-
position: absolute;
|
|
898
|
-
z-index: 10000;
|
|
899
|
-
top: 100%;
|
|
900
|
-
left: 0;
|
|
901
|
-
width: 100%;
|
|
902
|
-
min-width: 100%;
|
|
903
|
-
box-sizing: border-box;
|
|
904
|
-
margin-top: 0.25rem;
|
|
905
|
-
background: #ffffff;
|
|
906
|
-
border: 1px solid #e5e5e5;
|
|
907
|
-
border-radius: 8px;
|
|
908
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
|
|
909
|
-
max-height: 18rem;
|
|
910
|
-
overflow-y: auto;
|
|
911
|
-
overflow-x: hidden;
|
|
912
|
-
padding: 0.25rem 0;
|
|
913
|
-
}
|
|
914
|
-
.select_list_up {
|
|
915
|
-
top: auto;
|
|
916
|
-
bottom: 100%;
|
|
917
|
-
margin-top: 0;
|
|
918
|
-
margin-bottom: 0.25rem;
|
|
919
|
-
}
|
|
920
|
-
.select_option {
|
|
921
|
-
width: 100%;
|
|
922
|
-
box-sizing: border-box;
|
|
923
|
-
display: grid;
|
|
924
|
-
grid-template-columns: 1fr auto;
|
|
925
|
-
align-items: center;
|
|
926
|
-
gap: 0.5rem;
|
|
927
|
-
padding: 0.5rem 1rem;
|
|
928
|
-
cursor: pointer;
|
|
929
|
-
color: #1a1a1a;
|
|
930
|
-
background: transparent;
|
|
931
|
-
font-size: 0.9375rem;
|
|
932
|
-
font-weight: 400;
|
|
933
|
-
line-height: 1.5;
|
|
934
|
-
}
|
|
935
|
-
.select_option > span:first-child {
|
|
936
|
-
min-width: 0;
|
|
937
|
-
overflow: hidden;
|
|
938
|
-
text-overflow: ellipsis;
|
|
939
|
-
white-space: nowrap;
|
|
940
|
-
}
|
|
941
|
-
.select_option:hover,
|
|
942
|
-
.select_option.is_active {
|
|
943
|
-
background: #fafafa;
|
|
944
|
-
}
|
|
945
|
-
.select_option.is_selected {
|
|
946
|
-
font-weight: 500;
|
|
947
|
-
}
|
|
948
|
-
.select_option.is_disabled {
|
|
949
|
-
cursor: not-allowed;
|
|
950
|
-
color: #999999;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
/* src/ui/form/switch/style.scss */
|
|
954
|
-
@keyframes skeleton_loading {
|
|
955
|
-
0% {
|
|
956
|
-
background-position: 100% 0;
|
|
957
|
-
}
|
|
958
|
-
100% {
|
|
959
|
-
background-position: 0 0;
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
.switch {
|
|
963
|
-
position: relative;
|
|
964
|
-
display: inline-flex;
|
|
965
|
-
align-items: center;
|
|
966
|
-
width: 40px;
|
|
967
|
-
height: 22px;
|
|
968
|
-
padding: 2px;
|
|
969
|
-
border-radius: 9999px;
|
|
970
|
-
background: #e5e5e5;
|
|
971
|
-
transition: background 0.2s ease-in-out;
|
|
972
|
-
cursor: pointer;
|
|
973
|
-
}
|
|
974
|
-
.switch_thumb {
|
|
975
|
-
width: 18px;
|
|
976
|
-
height: 18px;
|
|
977
|
-
background: #ffffff;
|
|
978
|
-
border-radius: 9999px;
|
|
979
|
-
transition: transform 0.2s ease-in-out;
|
|
980
|
-
transform: translateX(0);
|
|
981
|
-
}
|
|
982
|
-
.switch_on {
|
|
983
|
-
background: #000000;
|
|
848
|
+
.switch_on {
|
|
849
|
+
background: #121212;
|
|
984
850
|
}
|
|
985
851
|
.switch_on .switch_thumb {
|
|
986
852
|
transform: translateX(18px);
|
|
@@ -1035,10 +901,12 @@
|
|
|
1035
901
|
width: 100%;
|
|
1036
902
|
}
|
|
1037
903
|
.text_field_label {
|
|
1038
|
-
margin-bottom:
|
|
1039
|
-
color: #
|
|
1040
|
-
font-size:
|
|
1041
|
-
|
|
904
|
+
margin-bottom: 4px;
|
|
905
|
+
color: #121212;
|
|
906
|
+
font-size: 12px;
|
|
907
|
+
font-weight: 400;
|
|
908
|
+
line-height: 16px;
|
|
909
|
+
letter-spacing: 0px;
|
|
1042
910
|
font-weight: 500;
|
|
1043
911
|
}
|
|
1044
912
|
.text_field_wrap {
|
|
@@ -1048,16 +916,18 @@
|
|
|
1048
916
|
align-items: center;
|
|
1049
917
|
}
|
|
1050
918
|
.text_field_helper {
|
|
1051
|
-
margin-top:
|
|
1052
|
-
font-size:
|
|
1053
|
-
|
|
919
|
+
margin-top: 4px;
|
|
920
|
+
font-size: 12px;
|
|
921
|
+
font-weight: 400;
|
|
922
|
+
line-height: 16px;
|
|
923
|
+
letter-spacing: 0px;
|
|
1054
924
|
color: #666666;
|
|
1055
925
|
}
|
|
1056
926
|
.text_field_helper_error {
|
|
1057
|
-
color: #
|
|
927
|
+
color: #EF4444;
|
|
1058
928
|
}
|
|
1059
929
|
.text_field_helper_success {
|
|
1060
|
-
color: #
|
|
930
|
+
color: #10B981;
|
|
1061
931
|
}
|
|
1062
932
|
.text_field_icon {
|
|
1063
933
|
position: absolute;
|
|
@@ -1069,10 +939,10 @@
|
|
|
1069
939
|
color: #666666;
|
|
1070
940
|
}
|
|
1071
941
|
.text_field_icon_left {
|
|
1072
|
-
left:
|
|
942
|
+
left: 12px;
|
|
1073
943
|
}
|
|
1074
944
|
.text_field_icon_right {
|
|
1075
|
-
right:
|
|
945
|
+
right: 12px;
|
|
1076
946
|
}
|
|
1077
947
|
.text_field_input {
|
|
1078
948
|
width: 100%;
|
|
@@ -1081,88 +951,96 @@
|
|
|
1081
951
|
border-color 0.2s ease-in-out,
|
|
1082
952
|
box-shadow 0.2s ease-in-out,
|
|
1083
953
|
background 0.2s ease-in-out;
|
|
1084
|
-
font-size:
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
954
|
+
font-size: 15px;
|
|
955
|
+
font-weight: 400;
|
|
956
|
+
line-height: 22.5px;
|
|
957
|
+
letter-spacing: 0px;
|
|
958
|
+
color: #121212;
|
|
959
|
+
background: #FFFFFF;
|
|
1088
960
|
}
|
|
1089
961
|
.text_field_input::placeholder {
|
|
1090
|
-
color: #
|
|
962
|
+
color: #888888;
|
|
1091
963
|
}
|
|
1092
964
|
.text_field_input:disabled {
|
|
1093
965
|
cursor: not-allowed;
|
|
1094
|
-
background: #
|
|
1095
|
-
color: #
|
|
966
|
+
background: #F4F4F4;
|
|
967
|
+
color: #888888;
|
|
1096
968
|
opacity: 0.7;
|
|
1097
969
|
}
|
|
1098
970
|
.text_field_variant_outline {
|
|
1099
|
-
border: 1px solid #
|
|
971
|
+
border: 1px solid #E5E5E5;
|
|
1100
972
|
}
|
|
1101
973
|
.text_field_variant_outline:hover:not(:disabled) {
|
|
1102
974
|
border-color: rgba(0, 0, 0, 0.08);
|
|
1103
975
|
}
|
|
1104
976
|
.text_field_variant_outline:focus-visible {
|
|
1105
977
|
outline: none;
|
|
1106
|
-
border-color: #
|
|
1107
|
-
box-shadow: 0 0 0 3px rgba(
|
|
978
|
+
border-color: #121212;
|
|
979
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1108
980
|
}
|
|
1109
981
|
.text_field_variant_filled {
|
|
1110
|
-
background: #
|
|
982
|
+
background: #F4F4F4;
|
|
1111
983
|
border: 1px solid transparent;
|
|
1112
984
|
}
|
|
1113
985
|
.text_field_variant_filled:hover:not(:disabled) {
|
|
1114
|
-
background: rgb(
|
|
986
|
+
background: rgb(251.7, 251.7, 251.7);
|
|
1115
987
|
}
|
|
1116
988
|
.text_field_variant_filled:focus-visible {
|
|
1117
989
|
outline: none;
|
|
1118
|
-
border-color: #
|
|
1119
|
-
background: #
|
|
1120
|
-
box-shadow: 0 0 0 3px rgba(
|
|
990
|
+
border-color: #121212;
|
|
991
|
+
background: #FFFFFF;
|
|
992
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1121
993
|
}
|
|
1122
994
|
.text_field_variant_ghost {
|
|
1123
995
|
background: transparent;
|
|
1124
996
|
border: 1px solid transparent;
|
|
1125
997
|
}
|
|
1126
998
|
.text_field_variant_ghost:hover:not(:disabled) {
|
|
1127
|
-
background: rgba(0, 0, 0, 0.
|
|
999
|
+
background: rgba(0, 0, 0, 0.05);
|
|
1128
1000
|
}
|
|
1129
1001
|
.text_field_variant_ghost:focus-visible {
|
|
1130
1002
|
outline: none;
|
|
1131
|
-
border-color: #
|
|
1132
|
-
background: #
|
|
1133
|
-
box-shadow: 0 0 0 3px rgba(
|
|
1003
|
+
border-color: #121212;
|
|
1004
|
+
background: #FFFFFF;
|
|
1005
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1134
1006
|
}
|
|
1135
1007
|
.text_field_size_sm {
|
|
1136
|
-
padding:
|
|
1137
|
-
font-size:
|
|
1138
|
-
|
|
1008
|
+
padding: 8px 16px;
|
|
1009
|
+
font-size: 12px;
|
|
1010
|
+
font-weight: 400;
|
|
1011
|
+
line-height: 16px;
|
|
1012
|
+
letter-spacing: 0px;
|
|
1139
1013
|
}
|
|
1140
1014
|
.text_field_size_md {
|
|
1141
|
-
padding:
|
|
1142
|
-
font-size:
|
|
1143
|
-
|
|
1015
|
+
padding: 12px 20px;
|
|
1016
|
+
font-size: 15px;
|
|
1017
|
+
font-weight: 400;
|
|
1018
|
+
line-height: 22.5px;
|
|
1019
|
+
letter-spacing: 0px;
|
|
1144
1020
|
}
|
|
1145
1021
|
.text_field_size_lg {
|
|
1146
|
-
padding:
|
|
1147
|
-
font-size:
|
|
1148
|
-
|
|
1022
|
+
padding: 16px 24px;
|
|
1023
|
+
font-size: 16px;
|
|
1024
|
+
font-weight: 400;
|
|
1025
|
+
line-height: 24px;
|
|
1026
|
+
letter-spacing: 0px;
|
|
1149
1027
|
}
|
|
1150
1028
|
.text_field_with_left {
|
|
1151
|
-
padding-left: calc(
|
|
1029
|
+
padding-left: calc(20px + 1.25rem);
|
|
1152
1030
|
}
|
|
1153
1031
|
.text_field_with_right {
|
|
1154
|
-
padding-right: calc(
|
|
1032
|
+
padding-right: calc(20px + 1.25rem);
|
|
1155
1033
|
}
|
|
1156
1034
|
.text_field_error {
|
|
1157
|
-
border-color: #
|
|
1035
|
+
border-color: #EF4444 !important;
|
|
1158
1036
|
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
|
|
1159
1037
|
}
|
|
1160
1038
|
.text_field_success {
|
|
1161
|
-
border-color: #
|
|
1039
|
+
border-color: #10B981 !important;
|
|
1162
1040
|
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
|
|
1163
1041
|
}
|
|
1164
1042
|
|
|
1165
|
-
/* src/ui/
|
|
1043
|
+
/* src/ui/general/button/style.scss */
|
|
1166
1044
|
@keyframes skeleton_loading {
|
|
1167
1045
|
0% {
|
|
1168
1046
|
background-position: 100% 0;
|
|
@@ -1171,109 +1049,284 @@
|
|
|
1171
1049
|
background-position: 0 0;
|
|
1172
1050
|
}
|
|
1173
1051
|
}
|
|
1174
|
-
.
|
|
1175
|
-
display: flex;
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
height: 44px;
|
|
1182
|
-
padding: 0 0.75rem;
|
|
1183
|
-
font-family: "Pretendard", sans-serif;
|
|
1184
|
-
font-size: 0.9375rem;
|
|
1185
|
-
line-height: 1.5;
|
|
1186
|
-
color: #1a1a1a;
|
|
1187
|
-
background-color: #ffffff;
|
|
1188
|
-
border: 1px solid #e5e5e5;
|
|
1189
|
-
border-radius: 6px;
|
|
1052
|
+
.button {
|
|
1053
|
+
display: inline-flex;
|
|
1054
|
+
align-items: center;
|
|
1055
|
+
justify-content: center;
|
|
1056
|
+
gap: 8px;
|
|
1057
|
+
border-radius: 8px;
|
|
1058
|
+
border: none;
|
|
1190
1059
|
cursor: pointer;
|
|
1060
|
+
font-weight: 500;
|
|
1191
1061
|
transition:
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
background-image:
|
|
1197
|
-
linear-gradient(
|
|
1198
|
-
45deg,
|
|
1199
|
-
transparent 50%,
|
|
1200
|
-
#666666 50%),
|
|
1201
|
-
linear-gradient(
|
|
1202
|
-
135deg,
|
|
1203
|
-
#666666 50%,
|
|
1204
|
-
transparent 50%);
|
|
1205
|
-
background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
|
|
1206
|
-
background-size: 5px 5px;
|
|
1207
|
-
background-repeat: no-repeat;
|
|
1062
|
+
background 0.2s ease-in-out,
|
|
1063
|
+
color 0.2s ease-in-out,
|
|
1064
|
+
box-shadow 0.2s ease-in-out,
|
|
1065
|
+
transform 0.2s ease-in-out;
|
|
1208
1066
|
}
|
|
1209
|
-
.
|
|
1210
|
-
|
|
1211
|
-
|
|
1067
|
+
.button:disabled {
|
|
1068
|
+
cursor: not-allowed;
|
|
1069
|
+
opacity: 0.6;
|
|
1212
1070
|
}
|
|
1213
|
-
.
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1071
|
+
.button_size_sm {
|
|
1072
|
+
padding: 8px 16px;
|
|
1073
|
+
font-size: 12px;
|
|
1074
|
+
font-weight: 400;
|
|
1075
|
+
line-height: 16px;
|
|
1076
|
+
letter-spacing: 0px;
|
|
1218
1077
|
}
|
|
1219
|
-
.
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1078
|
+
.button_size_md {
|
|
1079
|
+
padding: 12px 20px;
|
|
1080
|
+
font-size: 15px;
|
|
1081
|
+
font-weight: 400;
|
|
1082
|
+
line-height: 22.5px;
|
|
1083
|
+
letter-spacing: 0px;
|
|
1224
1084
|
}
|
|
1225
|
-
.
|
|
1226
|
-
|
|
1085
|
+
.button_size_lg {
|
|
1086
|
+
padding: 16px 24px;
|
|
1087
|
+
font-size: 16px;
|
|
1088
|
+
font-weight: 400;
|
|
1089
|
+
line-height: 24px;
|
|
1090
|
+
letter-spacing: 0px;
|
|
1227
1091
|
}
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
min-width: 0;
|
|
1232
|
-
}
|
|
1092
|
+
.button_variant_primary {
|
|
1093
|
+
background: #121212;
|
|
1094
|
+
color: #FFFFFF;
|
|
1233
1095
|
}
|
|
1234
|
-
.
|
|
1235
|
-
|
|
1236
|
-
margin-bottom: 0.25rem;
|
|
1237
|
-
font-weight: 500;
|
|
1238
|
-
font-size: 0.875rem;
|
|
1239
|
-
line-height: 1.5;
|
|
1096
|
+
.button_variant_primary:hover:not(:disabled) {
|
|
1097
|
+
background: #999999;
|
|
1240
1098
|
}
|
|
1241
|
-
.
|
|
1242
|
-
|
|
1243
|
-
color: #ef4444;
|
|
1099
|
+
.button_variant_primary:active:not(:disabled) {
|
|
1100
|
+
transform: scale(0.98);
|
|
1244
1101
|
}
|
|
1245
|
-
.
|
|
1246
|
-
|
|
1247
|
-
|
|
1102
|
+
.button_variant_secondary {
|
|
1103
|
+
background: transparent;
|
|
1104
|
+
border: 1px solid #E5E5E5;
|
|
1105
|
+
color: #121212;
|
|
1248
1106
|
}
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1107
|
+
.button_variant_secondary:hover:not(:disabled) {
|
|
1108
|
+
background: #F4F4F4;
|
|
1109
|
+
}
|
|
1110
|
+
.button_variant_secondary:active:not(:disabled) {
|
|
1111
|
+
transform: scale(0.98);
|
|
1112
|
+
}
|
|
1113
|
+
.button_variant_ghost {
|
|
1114
|
+
background: transparent;
|
|
1115
|
+
color: #121212;
|
|
1116
|
+
}
|
|
1117
|
+
.button_variant_ghost:hover:not(:disabled) {
|
|
1118
|
+
background: rgba(0, 0, 0, 0.05);
|
|
1119
|
+
}
|
|
1120
|
+
.button_variant_ghost:active:not(:disabled) {
|
|
1121
|
+
transform: scale(0.96);
|
|
1122
|
+
}
|
|
1123
|
+
.button_variant_danger {
|
|
1124
|
+
background: #EF4444;
|
|
1125
|
+
color: #FFFFFF;
|
|
1126
|
+
}
|
|
1127
|
+
.button_variant_danger:hover:not(:disabled) {
|
|
1128
|
+
background: rgb(235.7842364532, 30.4157635468, 30.4157635468);
|
|
1129
|
+
}
|
|
1130
|
+
.button_variant_danger:active:not(:disabled) {
|
|
1131
|
+
transform: scale(0.98);
|
|
1132
|
+
}
|
|
1133
|
+
.button_full_width {
|
|
1134
|
+
width: 100%;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/* src/ui/general/select/style.scss */
|
|
1138
|
+
@keyframes skeleton_loading {
|
|
1139
|
+
0% {
|
|
1140
|
+
background-position: 100% 0;
|
|
1141
|
+
}
|
|
1142
|
+
100% {
|
|
1143
|
+
background-position: 0 0;
|
|
1252
1144
|
}
|
|
1253
1145
|
}
|
|
1254
|
-
.
|
|
1146
|
+
.select {
|
|
1147
|
+
position: relative;
|
|
1148
|
+
display: inline-flex;
|
|
1149
|
+
flex-direction: column;
|
|
1255
1150
|
width: 100%;
|
|
1151
|
+
gap: 4px;
|
|
1152
|
+
font-family: "Pretendard", sans-serif;
|
|
1256
1153
|
}
|
|
1257
|
-
.
|
|
1154
|
+
.select_label {
|
|
1155
|
+
font-size: 12px;
|
|
1156
|
+
font-weight: 400;
|
|
1157
|
+
line-height: 16px;
|
|
1158
|
+
letter-spacing: 0px;
|
|
1159
|
+
font-weight: 500;
|
|
1160
|
+
color: #121212;
|
|
1161
|
+
}
|
|
1162
|
+
.select_control {
|
|
1258
1163
|
width: 100%;
|
|
1164
|
+
display: inline-flex;
|
|
1165
|
+
align-items: center;
|
|
1166
|
+
justify-content: space-between;
|
|
1167
|
+
gap: 8px;
|
|
1168
|
+
cursor: pointer;
|
|
1169
|
+
color: #121212;
|
|
1170
|
+
background: #FFFFFF;
|
|
1171
|
+
border-radius: 8px;
|
|
1172
|
+
transition:
|
|
1173
|
+
border-color 0.2s ease-in-out,
|
|
1174
|
+
box-shadow 0.2s ease-in-out,
|
|
1175
|
+
background 0.2s ease-in-out;
|
|
1176
|
+
font-size: 15px;
|
|
1177
|
+
font-weight: 400;
|
|
1178
|
+
line-height: 22.5px;
|
|
1179
|
+
letter-spacing: 0px;
|
|
1259
1180
|
}
|
|
1260
|
-
.
|
|
1261
|
-
|
|
1181
|
+
.select_control:disabled,
|
|
1182
|
+
.select_control.is_disabled {
|
|
1183
|
+
cursor: not-allowed;
|
|
1184
|
+
opacity: 0.7;
|
|
1185
|
+
background: #F4F4F4;
|
|
1186
|
+
color: #888888;
|
|
1187
|
+
}
|
|
1188
|
+
.select_variant_outline {
|
|
1189
|
+
border: 1px solid #E5E5E5;
|
|
1190
|
+
}
|
|
1191
|
+
.select_variant_outline:hover:not(.is_disabled) {
|
|
1192
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
1193
|
+
}
|
|
1194
|
+
.select_variant_outline.is_open {
|
|
1195
|
+
border-color: #121212;
|
|
1196
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1197
|
+
}
|
|
1198
|
+
.select_variant_filled {
|
|
1199
|
+
background: #F4F4F4;
|
|
1200
|
+
border: 1px solid transparent;
|
|
1201
|
+
}
|
|
1202
|
+
.select_variant_filled:hover:not(.is_disabled) {
|
|
1203
|
+
background: rgb(251.7, 251.7, 251.7);
|
|
1204
|
+
}
|
|
1205
|
+
.select_variant_filled.is_open {
|
|
1206
|
+
background: #FFFFFF;
|
|
1207
|
+
border-color: #121212;
|
|
1208
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1209
|
+
}
|
|
1210
|
+
.select_variant_ghost {
|
|
1211
|
+
background: transparent;
|
|
1212
|
+
border: 1px solid transparent;
|
|
1213
|
+
}
|
|
1214
|
+
.select_variant_ghost:hover:not(.is_disabled) {
|
|
1215
|
+
background: rgba(0, 0, 0, 0.05);
|
|
1216
|
+
}
|
|
1217
|
+
.select_variant_ghost.is_open {
|
|
1218
|
+
background: #FFFFFF;
|
|
1219
|
+
border-color: #121212;
|
|
1220
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1221
|
+
}
|
|
1222
|
+
.select_size_sm {
|
|
1223
|
+
padding: 8px 16px;
|
|
1224
|
+
font-size: 12px;
|
|
1225
|
+
font-weight: 400;
|
|
1226
|
+
line-height: 16px;
|
|
1227
|
+
letter-spacing: 0px;
|
|
1228
|
+
}
|
|
1229
|
+
.select_size_md {
|
|
1230
|
+
padding: 12px 20px;
|
|
1231
|
+
font-size: 15px;
|
|
1232
|
+
font-weight: 400;
|
|
1233
|
+
line-height: 22.5px;
|
|
1234
|
+
letter-spacing: 0px;
|
|
1235
|
+
}
|
|
1236
|
+
.select_size_lg {
|
|
1237
|
+
padding: 16px 24px;
|
|
1238
|
+
font-size: 16px;
|
|
1239
|
+
font-weight: 400;
|
|
1240
|
+
line-height: 24px;
|
|
1241
|
+
letter-spacing: 0px;
|
|
1242
|
+
}
|
|
1243
|
+
.select_value {
|
|
1244
|
+
flex: 1 1 auto;
|
|
1245
|
+
min-width: 0;
|
|
1246
|
+
overflow: hidden;
|
|
1247
|
+
text-overflow: ellipsis;
|
|
1248
|
+
white-space: nowrap;
|
|
1249
|
+
text-align: start;
|
|
1250
|
+
font-size: 15px;
|
|
1251
|
+
font-weight: 400;
|
|
1252
|
+
line-height: 22.5px;
|
|
1253
|
+
letter-spacing: 0px;
|
|
1254
|
+
}
|
|
1255
|
+
.select_placeholder {
|
|
1256
|
+
flex: 1 1 auto;
|
|
1262
1257
|
min-width: 0;
|
|
1258
|
+
overflow: hidden;
|
|
1259
|
+
text-overflow: ellipsis;
|
|
1260
|
+
white-space: nowrap;
|
|
1261
|
+
text-align: start;
|
|
1262
|
+
font-size: 15px;
|
|
1263
|
+
font-weight: 400;
|
|
1264
|
+
line-height: 22.5px;
|
|
1265
|
+
letter-spacing: 0px;
|
|
1266
|
+
color: #888888;
|
|
1263
1267
|
}
|
|
1264
|
-
.
|
|
1265
|
-
|
|
1268
|
+
.select_icon {
|
|
1269
|
+
display: inline-flex;
|
|
1270
|
+
align-items: center;
|
|
1271
|
+
justify-content: center;
|
|
1272
|
+
color: #666666;
|
|
1266
1273
|
}
|
|
1267
|
-
.
|
|
1274
|
+
.select_list {
|
|
1268
1275
|
position: absolute;
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1276
|
+
z-index: 1000;
|
|
1277
|
+
top: 100%;
|
|
1278
|
+
left: 0;
|
|
1279
|
+
width: 100%;
|
|
1280
|
+
min-width: 100%;
|
|
1281
|
+
box-sizing: border-box;
|
|
1282
|
+
margin-top: 4px;
|
|
1283
|
+
background: #FFFFFF;
|
|
1284
|
+
border: 1px solid #E5E5E5;
|
|
1285
|
+
border-radius: 8px;
|
|
1286
|
+
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2), 0 6px 6px 0px rgba(0, 0, 0, 0.12);
|
|
1287
|
+
max-height: 18rem;
|
|
1288
|
+
overflow-y: auto;
|
|
1289
|
+
overflow-x: hidden;
|
|
1290
|
+
padding: 4px 0;
|
|
1291
|
+
}
|
|
1292
|
+
.select_list_up {
|
|
1293
|
+
top: auto;
|
|
1294
|
+
bottom: 100%;
|
|
1295
|
+
margin-top: 0;
|
|
1296
|
+
margin-bottom: 4px;
|
|
1297
|
+
}
|
|
1298
|
+
.select_option {
|
|
1299
|
+
width: 100%;
|
|
1300
|
+
box-sizing: border-box;
|
|
1301
|
+
display: grid;
|
|
1302
|
+
grid-template-columns: 1fr auto;
|
|
1303
|
+
align-items: center;
|
|
1304
|
+
gap: 8px;
|
|
1305
|
+
padding: 8px 16px;
|
|
1306
|
+
cursor: pointer;
|
|
1307
|
+
color: #121212;
|
|
1308
|
+
background: transparent;
|
|
1309
|
+
font-size: 15px;
|
|
1310
|
+
font-weight: 400;
|
|
1311
|
+
line-height: 22.5px;
|
|
1312
|
+
letter-spacing: 0px;
|
|
1313
|
+
}
|
|
1314
|
+
.select_option > span:first-child {
|
|
1315
|
+
min-width: 0;
|
|
1273
1316
|
overflow: hidden;
|
|
1274
|
-
|
|
1317
|
+
text-overflow: ellipsis;
|
|
1275
1318
|
white-space: nowrap;
|
|
1276
|
-
|
|
1319
|
+
}
|
|
1320
|
+
.select_option:hover,
|
|
1321
|
+
.select_option.is_active {
|
|
1322
|
+
background: #F4F4F4;
|
|
1323
|
+
}
|
|
1324
|
+
.select_option.is_selected {
|
|
1325
|
+
font-weight: 500;
|
|
1326
|
+
}
|
|
1327
|
+
.select_option.is_disabled {
|
|
1328
|
+
cursor: not-allowed;
|
|
1329
|
+
color: #888888;
|
|
1277
1330
|
}
|
|
1278
1331
|
|
|
1279
1332
|
/* src/ui/navigation/pagination/style.scss */
|
|
@@ -1289,22 +1342,24 @@
|
|
|
1289
1342
|
display: flex;
|
|
1290
1343
|
align-items: center;
|
|
1291
1344
|
justify-content: center;
|
|
1292
|
-
gap:
|
|
1293
|
-
margin-top:
|
|
1345
|
+
gap: 8px;
|
|
1346
|
+
margin-top: 32px;
|
|
1294
1347
|
}
|
|
1295
1348
|
.pagination_item {
|
|
1296
|
-
border: 1px solid #
|
|
1297
|
-
background: #
|
|
1349
|
+
border: 1px solid #E5E5E5;
|
|
1350
|
+
background: #FFFFFF;
|
|
1298
1351
|
border-radius: 8px;
|
|
1299
1352
|
padding: 6px 10px;
|
|
1300
1353
|
min-width: 36px;
|
|
1301
|
-
font-size:
|
|
1302
|
-
|
|
1303
|
-
|
|
1354
|
+
font-size: 12px;
|
|
1355
|
+
font-weight: 400;
|
|
1356
|
+
line-height: 16px;
|
|
1357
|
+
letter-spacing: 0px;
|
|
1358
|
+
color: #121212;
|
|
1304
1359
|
transition: background 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
1305
1360
|
}
|
|
1306
1361
|
.pagination_item:hover:not(:disabled) {
|
|
1307
|
-
background: #
|
|
1362
|
+
background: #F4F4F4;
|
|
1308
1363
|
}
|
|
1309
1364
|
.pagination_item:disabled {
|
|
1310
1365
|
opacity: 0.5;
|
|
@@ -1312,7 +1367,7 @@
|
|
|
1312
1367
|
}
|
|
1313
1368
|
.pagination_item:focus-visible {
|
|
1314
1369
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
1315
|
-
border-color: #
|
|
1370
|
+
border-color: #121212;
|
|
1316
1371
|
}
|
|
1317
1372
|
.pagination_pages {
|
|
1318
1373
|
display: flex;
|
|
@@ -1325,28 +1380,32 @@
|
|
|
1325
1380
|
min-width: 36px;
|
|
1326
1381
|
height: 36px;
|
|
1327
1382
|
border-radius: 8px;
|
|
1328
|
-
font-size:
|
|
1329
|
-
|
|
1383
|
+
font-size: 12px;
|
|
1384
|
+
font-weight: 400;
|
|
1385
|
+
line-height: 16px;
|
|
1386
|
+
letter-spacing: 0px;
|
|
1330
1387
|
color: #666666;
|
|
1331
1388
|
transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
1332
1389
|
}
|
|
1333
1390
|
.pagination_page_button:hover {
|
|
1334
|
-
background: #
|
|
1335
|
-
color: #
|
|
1391
|
+
background: #F4F4F4;
|
|
1392
|
+
color: #121212;
|
|
1336
1393
|
}
|
|
1337
1394
|
.pagination_page_button:focus-visible {
|
|
1338
1395
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
1339
1396
|
}
|
|
1340
1397
|
.pagination_active {
|
|
1341
|
-
color: #
|
|
1342
|
-
font-weight:
|
|
1398
|
+
color: #121212;
|
|
1399
|
+
font-weight: 500;
|
|
1343
1400
|
}
|
|
1344
1401
|
.pagination_ellipsis {
|
|
1345
1402
|
min-width: 20px;
|
|
1346
1403
|
text-align: center;
|
|
1347
|
-
font-size:
|
|
1348
|
-
|
|
1349
|
-
|
|
1404
|
+
font-size: 12px;
|
|
1405
|
+
font-weight: 400;
|
|
1406
|
+
line-height: 16px;
|
|
1407
|
+
letter-spacing: 0px;
|
|
1408
|
+
color: #888888;
|
|
1350
1409
|
}
|
|
1351
1410
|
|
|
1352
1411
|
/* src/ui/overlay/modal/style.scss */
|
|
@@ -1364,24 +1423,25 @@
|
|
|
1364
1423
|
display: grid;
|
|
1365
1424
|
place-items: center;
|
|
1366
1425
|
background: rgba(0, 0, 0, 0.5);
|
|
1367
|
-
z-index:
|
|
1426
|
+
z-index: 100;
|
|
1368
1427
|
}
|
|
1369
1428
|
.modal_panel {
|
|
1370
|
-
background: #
|
|
1429
|
+
background: #FFFFFF;
|
|
1371
1430
|
border-radius: 12px;
|
|
1372
|
-
box-shadow: 0
|
|
1431
|
+
box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.2), 0 9px 9px 0px rgba(0, 0, 0, 0.12);
|
|
1373
1432
|
max-width: calc(100% - 32px);
|
|
1374
1433
|
overflow: visible;
|
|
1375
1434
|
}
|
|
1376
1435
|
.modal_header {
|
|
1377
|
-
padding:
|
|
1378
|
-
border-bottom: 1px solid #
|
|
1379
|
-
color: #
|
|
1380
|
-
font-size:
|
|
1381
|
-
font-weight:
|
|
1382
|
-
line-height:
|
|
1436
|
+
padding: 16px;
|
|
1437
|
+
border-bottom: 1px solid #E5E5E5;
|
|
1438
|
+
color: #121212;
|
|
1439
|
+
font-size: 20px;
|
|
1440
|
+
font-weight: 400;
|
|
1441
|
+
line-height: 28px;
|
|
1442
|
+
letter-spacing: 0px;
|
|
1383
1443
|
}
|
|
1384
1444
|
.modal_body {
|
|
1385
|
-
padding:
|
|
1445
|
+
padding: 16px;
|
|
1386
1446
|
overflow: visible;
|
|
1387
1447
|
}
|