@bigtablet/design-system 1.14.0 → 1.14.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 +199 -199
- package/dist/index.js +86 -126
- package/dist/next.css +22 -22
- package/dist/next.js +23 -26
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
/* src/ui/display/card/style.
|
|
1
|
+
/* src/ui/display/card/style.scss */
|
|
2
2
|
.card {
|
|
3
3
|
background: #ffffff;
|
|
4
4
|
border-radius: 12px;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
.card_bordered {
|
|
7
7
|
border: 1px solid #e5e5e5;
|
|
8
8
|
}
|
|
9
|
-
.
|
|
9
|
+
.card_shadow_none {
|
|
10
10
|
box-shadow: none;
|
|
11
11
|
}
|
|
12
|
-
.
|
|
12
|
+
.card_shadow_sm {
|
|
13
13
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
|
14
14
|
}
|
|
15
|
-
.
|
|
15
|
+
.card_shadow_md {
|
|
16
16
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
|
|
17
17
|
}
|
|
18
|
-
.
|
|
18
|
+
.card_shadow_lg {
|
|
19
19
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
|
|
20
20
|
}
|
|
21
|
-
.
|
|
21
|
+
.card_p_none {
|
|
22
22
|
padding: 0;
|
|
23
23
|
}
|
|
24
|
-
.
|
|
24
|
+
.card_p_sm {
|
|
25
25
|
padding: 0.5rem;
|
|
26
26
|
}
|
|
27
|
-
.
|
|
27
|
+
.card_p_md {
|
|
28
28
|
padding: 1rem;
|
|
29
29
|
}
|
|
30
|
-
.
|
|
30
|
+
.card_p_lg {
|
|
31
31
|
padding: 1.5rem;
|
|
32
32
|
}
|
|
33
|
-
.
|
|
33
|
+
.card_title {
|
|
34
34
|
font-size: 1.25rem;
|
|
35
35
|
font-weight: 600;
|
|
36
36
|
line-height: 1.3;
|
|
37
37
|
margin-bottom: 0.75rem;
|
|
38
38
|
color: #1f2937;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.card_body {
|
|
41
41
|
width: 100%;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
/* src/ui/feedback/alert/style.
|
|
45
|
-
@keyframes
|
|
44
|
+
/* src/ui/feedback/alert/style.scss */
|
|
45
|
+
@keyframes alert_fade_in {
|
|
46
46
|
from {
|
|
47
47
|
opacity: 0;
|
|
48
48
|
}
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
opacity: 1;
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
|
-
@keyframes
|
|
53
|
+
@keyframes alert_slide_up {
|
|
54
54
|
from {
|
|
55
55
|
opacity: 0;
|
|
56
56
|
transform: translateY(20px);
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
transform: translateY(0);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
|
-
.
|
|
63
|
+
.alert_overlay {
|
|
64
64
|
position: fixed;
|
|
65
65
|
inset: 0;
|
|
66
66
|
background: rgba(0, 0, 0, 0.5);
|
|
@@ -68,25 +68,25 @@
|
|
|
68
68
|
align-items: center;
|
|
69
69
|
justify-content: center;
|
|
70
70
|
z-index: 10000;
|
|
71
|
-
animation:
|
|
71
|
+
animation: alert_fade_in 0.2s ease-in-out;
|
|
72
72
|
}
|
|
73
|
-
.
|
|
73
|
+
.alert_modal {
|
|
74
74
|
background: #ffffff;
|
|
75
75
|
border-radius: 12px;
|
|
76
76
|
min-width: 320px;
|
|
77
77
|
max-width: 480px;
|
|
78
78
|
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
79
|
-
animation:
|
|
79
|
+
animation: alert_slide_up 0.3s ease-in-out;
|
|
80
80
|
overflow: hidden;
|
|
81
81
|
}
|
|
82
|
-
.
|
|
82
|
+
.alert_title {
|
|
83
83
|
font-size: 1.125rem;
|
|
84
84
|
line-height: 1.5;
|
|
85
85
|
font-weight: 600;
|
|
86
86
|
color: #3b82f6;
|
|
87
87
|
padding: 0.75rem 1.25rem 0.25rem;
|
|
88
88
|
}
|
|
89
|
-
.
|
|
89
|
+
.alert_message {
|
|
90
90
|
font-size: 0.9375rem;
|
|
91
91
|
font-weight: 400;
|
|
92
92
|
line-height: 1.5;
|
|
@@ -94,22 +94,22 @@
|
|
|
94
94
|
padding: 1.25rem;
|
|
95
95
|
line-height: 1.75;
|
|
96
96
|
}
|
|
97
|
-
.
|
|
97
|
+
.alert_actions {
|
|
98
98
|
display: flex;
|
|
99
99
|
gap: 0.5rem;
|
|
100
100
|
align-items: center;
|
|
101
101
|
padding: 0 1.25rem 1.25rem;
|
|
102
102
|
}
|
|
103
|
-
.
|
|
103
|
+
.alert_actions_left {
|
|
104
104
|
justify-content: flex-start;
|
|
105
105
|
}
|
|
106
|
-
.
|
|
106
|
+
.alert_actions_center {
|
|
107
107
|
justify-content: center;
|
|
108
108
|
}
|
|
109
|
-
.
|
|
109
|
+
.alert_actions_right {
|
|
110
110
|
justify-content: flex-end;
|
|
111
111
|
}
|
|
112
|
-
.
|
|
112
|
+
.alert_button {
|
|
113
113
|
min-width: 80px;
|
|
114
114
|
padding: 10px 24px;
|
|
115
115
|
border-radius: 6px;
|
|
@@ -123,75 +123,75 @@
|
|
|
123
123
|
box-shadow 0.2s ease-in-out,
|
|
124
124
|
transform 0.2s ease-in-out;
|
|
125
125
|
}
|
|
126
|
-
.
|
|
126
|
+
.alert_button:focus-visible {
|
|
127
127
|
outline: none;
|
|
128
128
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
129
129
|
}
|
|
130
|
-
.
|
|
130
|
+
.alert_button:active:not(:disabled) {
|
|
131
131
|
transform: scale(0.98);
|
|
132
132
|
}
|
|
133
|
-
.
|
|
133
|
+
.alert_button:disabled {
|
|
134
134
|
cursor: not-allowed;
|
|
135
135
|
opacity: 0.6;
|
|
136
136
|
}
|
|
137
|
-
.
|
|
137
|
+
.alert_button_cancel {
|
|
138
138
|
background: #ffffff;
|
|
139
139
|
border-color: #e5e5e5;
|
|
140
140
|
color: #1a1a1a;
|
|
141
141
|
}
|
|
142
|
-
.
|
|
142
|
+
.alert_button_cancel:hover:not(:disabled) {
|
|
143
143
|
background: #fafafa;
|
|
144
144
|
border-color: rgba(0, 0, 0, 0.08);
|
|
145
145
|
}
|
|
146
|
-
.
|
|
146
|
+
.alert_button_confirm {
|
|
147
147
|
color: #ffffff;
|
|
148
148
|
}
|
|
149
|
-
.
|
|
149
|
+
.alert_variant_info .alert_title {
|
|
150
150
|
color: #3b82f6;
|
|
151
151
|
}
|
|
152
|
-
.
|
|
152
|
+
.alert_variant_info .alert_button_confirm {
|
|
153
153
|
background: #3b82f6;
|
|
154
154
|
border-color: #3b82f6;
|
|
155
155
|
}
|
|
156
|
-
.
|
|
156
|
+
.alert_variant_info .alert_button_confirm:hover:not(:disabled) {
|
|
157
157
|
background: rgb(29.7434146341, 111.3414634146, 244.6565853659);
|
|
158
158
|
border-color: rgb(29.7434146341, 111.3414634146, 244.6565853659);
|
|
159
159
|
}
|
|
160
|
-
.
|
|
160
|
+
.alert_variant_success .alert_title {
|
|
161
161
|
color: #10b981;
|
|
162
162
|
}
|
|
163
|
-
.
|
|
163
|
+
.alert_variant_success .alert_button_confirm {
|
|
164
164
|
background: #10b981;
|
|
165
165
|
border-color: #10b981;
|
|
166
166
|
}
|
|
167
|
-
.
|
|
167
|
+
.alert_variant_success .alert_button_confirm:hover:not(:disabled) {
|
|
168
168
|
background: rgb(13.5641791045, 156.8358208955, 109.3611940299);
|
|
169
169
|
border-color: rgb(13.5641791045, 156.8358208955, 109.3611940299);
|
|
170
170
|
}
|
|
171
|
-
.
|
|
171
|
+
.alert_variant_warning .alert_title {
|
|
172
172
|
color: #f59e0b;
|
|
173
173
|
}
|
|
174
|
-
.
|
|
174
|
+
.alert_variant_warning .alert_button_confirm {
|
|
175
175
|
background: #f59e0b;
|
|
176
176
|
border-color: #f59e0b;
|
|
177
177
|
}
|
|
178
|
-
.
|
|
178
|
+
.alert_variant_warning .alert_button_confirm:hover:not(:disabled) {
|
|
179
179
|
background: rgb(216.525984252, 139.3220472441, 8.874015748);
|
|
180
180
|
border-color: rgb(216.525984252, 139.3220472441, 8.874015748);
|
|
181
181
|
}
|
|
182
|
-
.
|
|
182
|
+
.alert_variant_error .alert_title {
|
|
183
183
|
color: #ef4444;
|
|
184
184
|
}
|
|
185
|
-
.
|
|
185
|
+
.alert_variant_error .alert_button_confirm {
|
|
186
186
|
background: #ef4444;
|
|
187
187
|
border-color: #ef4444;
|
|
188
188
|
}
|
|
189
|
-
.
|
|
189
|
+
.alert_variant_error .alert_button_confirm:hover:not(:disabled) {
|
|
190
190
|
background: rgb(236.5881773399, 39.8118226601, 39.8118226601);
|
|
191
191
|
border-color: rgb(236.5881773399, 39.8118226601, 39.8118226601);
|
|
192
192
|
}
|
|
193
193
|
|
|
194
|
-
/* src/ui/feedback/spinner/style.
|
|
194
|
+
/* src/ui/feedback/spinner/style.scss */
|
|
195
195
|
@keyframes spinner_spin {
|
|
196
196
|
to {
|
|
197
197
|
transform: rotate(360deg);
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
animation: spinner_spin 0.8s linear infinite;
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
/* src/ui/feedback/top-loading/style.
|
|
209
|
+
/* src/ui/feedback/top-loading/style.scss */
|
|
210
210
|
.top_loading {
|
|
211
211
|
position: fixed;
|
|
212
212
|
top: 0;
|
|
@@ -216,12 +216,16 @@
|
|
|
216
216
|
overflow: hidden;
|
|
217
217
|
background-color: transparent;
|
|
218
218
|
}
|
|
219
|
-
.
|
|
219
|
+
.top_loading_bar {
|
|
220
220
|
height: 100%;
|
|
221
221
|
background-color: #000000;
|
|
222
222
|
transition: width 0.2s ease-in-out;
|
|
223
223
|
}
|
|
224
|
-
|
|
224
|
+
.top_loading_indeterminate {
|
|
225
|
+
width: 30%;
|
|
226
|
+
animation: top_loading_indeterminate 1.5s ease-in-out infinite;
|
|
227
|
+
}
|
|
228
|
+
@keyframes top_loading_indeterminate {
|
|
225
229
|
0% {
|
|
226
230
|
transform: translateX(-100%);
|
|
227
231
|
}
|
|
@@ -229,12 +233,8 @@
|
|
|
229
233
|
transform: translateX(400%);
|
|
230
234
|
}
|
|
231
235
|
}
|
|
232
|
-
.indeterminate {
|
|
233
|
-
width: 30%;
|
|
234
|
-
animation: indeterminate 1.5s ease-in-out infinite;
|
|
235
|
-
}
|
|
236
236
|
|
|
237
|
-
/* src/ui/general/button/style.
|
|
237
|
+
/* src/ui/general/button/style.scss */
|
|
238
238
|
.button {
|
|
239
239
|
display: inline-flex;
|
|
240
240
|
align-items: center;
|
|
@@ -254,64 +254,64 @@
|
|
|
254
254
|
cursor: not-allowed;
|
|
255
255
|
opacity: 0.6;
|
|
256
256
|
}
|
|
257
|
-
.
|
|
257
|
+
.button_size_sm {
|
|
258
258
|
padding: 0.5rem 1rem;
|
|
259
259
|
font-size: 0.875rem;
|
|
260
260
|
line-height: 1.5;
|
|
261
261
|
}
|
|
262
|
-
.
|
|
262
|
+
.button_size_md {
|
|
263
263
|
padding: 0.75rem 1.25rem;
|
|
264
264
|
font-size: 0.9375rem;
|
|
265
265
|
line-height: 1.5;
|
|
266
266
|
}
|
|
267
|
-
.
|
|
267
|
+
.button_size_lg {
|
|
268
268
|
padding: 1rem 1.5rem;
|
|
269
269
|
font-size: 1rem;
|
|
270
270
|
line-height: 1.5;
|
|
271
271
|
}
|
|
272
|
-
.
|
|
272
|
+
.button_variant_primary {
|
|
273
273
|
background: #000000;
|
|
274
274
|
color: #ffffff;
|
|
275
275
|
}
|
|
276
|
-
.
|
|
276
|
+
.button_variant_primary:hover:not(:disabled) {
|
|
277
277
|
background: #333333;
|
|
278
278
|
}
|
|
279
|
-
.
|
|
279
|
+
.button_variant_primary:active:not(:disabled) {
|
|
280
280
|
transform: scale(0.98);
|
|
281
281
|
}
|
|
282
|
-
.
|
|
282
|
+
.button_variant_secondary {
|
|
283
283
|
background: transparent;
|
|
284
284
|
border: 1px solid #e5e5e5;
|
|
285
285
|
color: #1a1a1a;
|
|
286
286
|
}
|
|
287
|
-
.
|
|
287
|
+
.button_variant_secondary:hover:not(:disabled) {
|
|
288
288
|
background: #fafafa;
|
|
289
289
|
}
|
|
290
|
-
.
|
|
290
|
+
.button_variant_secondary:active:not(:disabled) {
|
|
291
291
|
transform: scale(0.98);
|
|
292
292
|
}
|
|
293
|
-
.
|
|
293
|
+
.button_variant_ghost {
|
|
294
294
|
background: transparent;
|
|
295
295
|
color: #1a1a1a;
|
|
296
296
|
}
|
|
297
|
-
.
|
|
297
|
+
.button_variant_ghost:hover:not(:disabled) {
|
|
298
298
|
background: rgba(0, 0, 0, 0.05);
|
|
299
299
|
}
|
|
300
|
-
.
|
|
300
|
+
.button_variant_ghost:active:not(:disabled) {
|
|
301
301
|
transform: scale(0.96);
|
|
302
302
|
}
|
|
303
|
-
.
|
|
303
|
+
.button_variant_danger {
|
|
304
304
|
background: #ef4444;
|
|
305
305
|
color: #ffffff;
|
|
306
306
|
}
|
|
307
|
-
.
|
|
307
|
+
.button_variant_danger:hover:not(:disabled) {
|
|
308
308
|
background: rgb(235.7842364532, 30.4157635468, 30.4157635468);
|
|
309
309
|
}
|
|
310
|
-
.
|
|
310
|
+
.button_variant_danger:active:not(:disabled) {
|
|
311
311
|
transform: scale(0.98);
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
-
/* src/ui/form/checkbox/style.
|
|
314
|
+
/* src/ui/form/checkbox/style.scss */
|
|
315
315
|
.checkbox {
|
|
316
316
|
display: inline-flex;
|
|
317
317
|
align-items: center;
|
|
@@ -320,7 +320,7 @@
|
|
|
320
320
|
user-select: none;
|
|
321
321
|
position: relative;
|
|
322
322
|
}
|
|
323
|
-
.
|
|
323
|
+
.checkbox_input {
|
|
324
324
|
position: absolute;
|
|
325
325
|
width: 1px;
|
|
326
326
|
height: 1px;
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
clip-path: inset(50%);
|
|
330
330
|
white-space: nowrap;
|
|
331
331
|
}
|
|
332
|
-
.
|
|
332
|
+
.checkbox_box {
|
|
333
333
|
width: 1.125rem;
|
|
334
334
|
height: 1.125rem;
|
|
335
335
|
box-sizing: border-box;
|
|
@@ -343,46 +343,46 @@
|
|
|
343
343
|
display: inline-block;
|
|
344
344
|
position: relative;
|
|
345
345
|
}
|
|
346
|
-
.
|
|
346
|
+
.checkbox_label {
|
|
347
347
|
font-size: 0.9375rem;
|
|
348
348
|
line-height: 1.5;
|
|
349
349
|
color: #1a1a1a;
|
|
350
350
|
}
|
|
351
|
-
.
|
|
351
|
+
.checkbox_size_sm .checkbox_box {
|
|
352
352
|
width: 1rem;
|
|
353
353
|
height: 1rem;
|
|
354
354
|
}
|
|
355
|
-
.
|
|
355
|
+
.checkbox_size_sm .checkbox_label {
|
|
356
356
|
font-size: 0.875rem;
|
|
357
357
|
line-height: 1.5;
|
|
358
358
|
}
|
|
359
|
-
.
|
|
359
|
+
.checkbox_size_md .checkbox_box {
|
|
360
360
|
width: 1.125rem;
|
|
361
361
|
height: 1.125rem;
|
|
362
362
|
}
|
|
363
|
-
.
|
|
363
|
+
.checkbox_size_lg .checkbox_box {
|
|
364
364
|
width: 1.25rem;
|
|
365
365
|
height: 1.25rem;
|
|
366
366
|
}
|
|
367
|
-
.
|
|
367
|
+
.checkbox_size_lg .checkbox_label {
|
|
368
368
|
font-size: 1rem;
|
|
369
369
|
line-height: 1.5;
|
|
370
370
|
}
|
|
371
|
-
.
|
|
371
|
+
.checkbox_input:focus-visible + .checkbox_box {
|
|
372
372
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
373
373
|
border-color: #000000;
|
|
374
374
|
}
|
|
375
|
-
.
|
|
376
|
-
.
|
|
375
|
+
.checkbox_input:disabled + .checkbox_box,
|
|
376
|
+
.checkbox_input:disabled ~ .checkbox_label {
|
|
377
377
|
opacity: 0.6;
|
|
378
378
|
cursor: not-allowed;
|
|
379
379
|
}
|
|
380
|
-
.
|
|
381
|
-
.
|
|
380
|
+
.checkbox_input:checked + .checkbox_box,
|
|
381
|
+
.checkbox_input:indeterminate + .checkbox_box {
|
|
382
382
|
background: #000000;
|
|
383
383
|
border-color: #000000;
|
|
384
384
|
}
|
|
385
|
-
.
|
|
385
|
+
.checkbox_input:checked + .checkbox_box::after {
|
|
386
386
|
content: "";
|
|
387
387
|
position: absolute;
|
|
388
388
|
left: 50%;
|
|
@@ -394,7 +394,7 @@
|
|
|
394
394
|
border-left: 0;
|
|
395
395
|
transform: translate(-50%, -58%) rotate(45deg);
|
|
396
396
|
}
|
|
397
|
-
.
|
|
397
|
+
.checkbox_input:indeterminate + .checkbox_box::after {
|
|
398
398
|
content: "";
|
|
399
399
|
position: absolute;
|
|
400
400
|
left: 50%;
|
|
@@ -406,22 +406,22 @@
|
|
|
406
406
|
border-radius: 9999px;
|
|
407
407
|
}
|
|
408
408
|
|
|
409
|
-
/* src/ui/form/file/style.
|
|
409
|
+
/* src/ui/form/file/style.scss */
|
|
410
410
|
.file_input {
|
|
411
411
|
position: relative;
|
|
412
412
|
display: inline-flex;
|
|
413
413
|
align-items: center;
|
|
414
414
|
}
|
|
415
|
-
.file_input:hover .
|
|
415
|
+
.file_input:hover .file_input_label {
|
|
416
416
|
border-color: rgba(0, 0, 0, 0.08);
|
|
417
417
|
}
|
|
418
|
-
.
|
|
418
|
+
.file_input_control {
|
|
419
419
|
position: absolute;
|
|
420
420
|
inset: 0;
|
|
421
421
|
opacity: 0;
|
|
422
422
|
cursor: pointer;
|
|
423
423
|
}
|
|
424
|
-
.
|
|
424
|
+
.file_input_label {
|
|
425
425
|
border: 1px solid #e5e5e5;
|
|
426
426
|
border-radius: 8px;
|
|
427
427
|
background: #ffffff;
|
|
@@ -434,25 +434,25 @@
|
|
|
434
434
|
border-color 0.2s ease-in-out,
|
|
435
435
|
box-shadow 0.2s ease-in-out;
|
|
436
436
|
}
|
|
437
|
-
.
|
|
437
|
+
.file_input_control:focus-visible + .file_input_label {
|
|
438
438
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
439
439
|
border-color: #000000;
|
|
440
440
|
}
|
|
441
|
-
.
|
|
441
|
+
.file_input_disabled {
|
|
442
442
|
cursor: not-allowed;
|
|
443
443
|
}
|
|
444
|
-
.
|
|
444
|
+
.file_input_disabled .file_input_control {
|
|
445
445
|
cursor: not-allowed;
|
|
446
446
|
}
|
|
447
|
-
.
|
|
447
|
+
.file_input_disabled .file_input_label {
|
|
448
448
|
opacity: 0.6;
|
|
449
449
|
cursor: not-allowed;
|
|
450
450
|
}
|
|
451
|
-
.
|
|
451
|
+
.file_input_disabled:hover .file_input_label {
|
|
452
452
|
border-color: #e5e5e5;
|
|
453
453
|
}
|
|
454
454
|
|
|
455
|
-
/* src/ui/form/radio/style.
|
|
455
|
+
/* src/ui/form/radio/style.scss */
|
|
456
456
|
.radio {
|
|
457
457
|
position: relative;
|
|
458
458
|
display: inline-flex;
|
|
@@ -461,14 +461,14 @@
|
|
|
461
461
|
cursor: pointer;
|
|
462
462
|
user-select: none;
|
|
463
463
|
}
|
|
464
|
-
.
|
|
464
|
+
.radio_input {
|
|
465
465
|
position: absolute;
|
|
466
466
|
inset: 0;
|
|
467
467
|
opacity: 0;
|
|
468
468
|
cursor: pointer;
|
|
469
469
|
margin: 0;
|
|
470
470
|
}
|
|
471
|
-
.
|
|
471
|
+
.radio_dot {
|
|
472
472
|
width: 1rem;
|
|
473
473
|
height: 1rem;
|
|
474
474
|
box-sizing: border-box;
|
|
@@ -482,39 +482,39 @@
|
|
|
482
482
|
position: relative;
|
|
483
483
|
display: inline-block;
|
|
484
484
|
}
|
|
485
|
-
.
|
|
485
|
+
.radio_label {
|
|
486
486
|
font-size: 0.9375rem;
|
|
487
487
|
line-height: 1.5;
|
|
488
488
|
color: #1a1a1a;
|
|
489
489
|
}
|
|
490
|
-
.
|
|
490
|
+
.radio_size_sm .radio_dot {
|
|
491
491
|
width: 1rem;
|
|
492
492
|
height: 1rem;
|
|
493
493
|
}
|
|
494
|
-
.
|
|
494
|
+
.radio_size_sm .radio_label {
|
|
495
495
|
font-size: 0.875rem;
|
|
496
496
|
line-height: 1.5;
|
|
497
497
|
}
|
|
498
|
-
.
|
|
498
|
+
.radio_size_md .radio_dot {
|
|
499
499
|
width: 1.125rem;
|
|
500
500
|
height: 1.125rem;
|
|
501
501
|
}
|
|
502
|
-
.
|
|
502
|
+
.radio_size_lg .radio_dot {
|
|
503
503
|
width: 1.25rem;
|
|
504
504
|
height: 1.25rem;
|
|
505
505
|
}
|
|
506
|
-
.
|
|
506
|
+
.radio_size_lg .radio_label {
|
|
507
507
|
font-size: 1rem;
|
|
508
508
|
line-height: 1.5;
|
|
509
509
|
}
|
|
510
|
-
.
|
|
510
|
+
.radio_input:focus-visible + .radio_dot {
|
|
511
511
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
512
512
|
border-color: #000000;
|
|
513
513
|
}
|
|
514
|
-
.
|
|
514
|
+
.radio_input:checked + .radio_dot {
|
|
515
515
|
border-color: #000000;
|
|
516
516
|
}
|
|
517
|
-
.
|
|
517
|
+
.radio_input:checked + .radio_dot::after {
|
|
518
518
|
content: "";
|
|
519
519
|
position: absolute;
|
|
520
520
|
left: 50%;
|
|
@@ -525,13 +525,13 @@
|
|
|
525
525
|
background: #000000;
|
|
526
526
|
border-radius: 9999px;
|
|
527
527
|
}
|
|
528
|
-
.
|
|
529
|
-
.
|
|
528
|
+
.radio_input:disabled + .radio_dot,
|
|
529
|
+
.radio_input:disabled ~ .radio_label {
|
|
530
530
|
opacity: 0.6;
|
|
531
531
|
cursor: not-allowed;
|
|
532
532
|
}
|
|
533
533
|
|
|
534
|
-
/* src/ui/general/select/style.
|
|
534
|
+
/* src/ui/general/select/style.scss */
|
|
535
535
|
.select {
|
|
536
536
|
position: relative;
|
|
537
537
|
display: inline-flex;
|
|
@@ -540,13 +540,13 @@
|
|
|
540
540
|
gap: 0.25rem;
|
|
541
541
|
font-family: "Pretendard", sans-serif;
|
|
542
542
|
}
|
|
543
|
-
.
|
|
543
|
+
.select_label {
|
|
544
544
|
font-size: 0.875rem;
|
|
545
545
|
line-height: 1.5;
|
|
546
546
|
font-weight: 500;
|
|
547
547
|
color: #1a1a1a;
|
|
548
548
|
}
|
|
549
|
-
.
|
|
549
|
+
.select_control {
|
|
550
550
|
width: 100%;
|
|
551
551
|
display: inline-flex;
|
|
552
552
|
align-items: center;
|
|
@@ -563,63 +563,63 @@
|
|
|
563
563
|
font-size: 0.9375rem;
|
|
564
564
|
line-height: 1.5;
|
|
565
565
|
}
|
|
566
|
-
.
|
|
567
|
-
.
|
|
566
|
+
.select_control:disabled,
|
|
567
|
+
.select_control.is_disabled {
|
|
568
568
|
cursor: not-allowed;
|
|
569
569
|
opacity: 0.7;
|
|
570
570
|
background: #fafafa;
|
|
571
571
|
color: #999999;
|
|
572
572
|
}
|
|
573
|
-
.
|
|
573
|
+
.select_variant_outline {
|
|
574
574
|
border: 1px solid #e5e5e5;
|
|
575
575
|
}
|
|
576
|
-
.
|
|
576
|
+
.select_variant_outline:hover:not(.is_disabled) {
|
|
577
577
|
border-color: rgba(0, 0, 0, 0.08);
|
|
578
578
|
}
|
|
579
|
-
.
|
|
579
|
+
.select_variant_outline.is_open {
|
|
580
580
|
border-color: #000000;
|
|
581
581
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
582
582
|
}
|
|
583
|
-
.
|
|
583
|
+
.select_variant_filled {
|
|
584
584
|
background: #fafafa;
|
|
585
585
|
border: 1px solid transparent;
|
|
586
586
|
}
|
|
587
|
-
.
|
|
587
|
+
.select_variant_filled:hover:not(.is_disabled) {
|
|
588
588
|
background: rgb(253.5, 253.5, 253.5);
|
|
589
589
|
}
|
|
590
|
-
.
|
|
590
|
+
.select_variant_filled.is_open {
|
|
591
591
|
background: #ffffff;
|
|
592
592
|
border-color: #000000;
|
|
593
593
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
594
594
|
}
|
|
595
|
-
.
|
|
595
|
+
.select_variant_ghost {
|
|
596
596
|
background: transparent;
|
|
597
597
|
border: 1px solid transparent;
|
|
598
598
|
}
|
|
599
|
-
.
|
|
599
|
+
.select_variant_ghost:hover:not(.is_disabled) {
|
|
600
600
|
background: rgba(0, 0, 0, 0.03);
|
|
601
601
|
}
|
|
602
|
-
.
|
|
602
|
+
.select_variant_ghost.is_open {
|
|
603
603
|
background: #ffffff;
|
|
604
604
|
border-color: #000000;
|
|
605
605
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
606
606
|
}
|
|
607
|
-
.
|
|
607
|
+
.select_size_sm {
|
|
608
608
|
padding: 0.5rem 1rem;
|
|
609
609
|
font-size: 0.875rem;
|
|
610
610
|
line-height: 1.5;
|
|
611
611
|
}
|
|
612
|
-
.
|
|
612
|
+
.select_size_md {
|
|
613
613
|
padding: 0.75rem 1.25rem;
|
|
614
614
|
font-size: 0.9375rem;
|
|
615
615
|
line-height: 1.5;
|
|
616
616
|
}
|
|
617
|
-
.
|
|
617
|
+
.select_size_lg {
|
|
618
618
|
padding: 1rem 1.5rem;
|
|
619
619
|
font-size: 1rem;
|
|
620
620
|
line-height: 1.5;
|
|
621
621
|
}
|
|
622
|
-
.
|
|
622
|
+
.select_value {
|
|
623
623
|
flex: 1 1 auto;
|
|
624
624
|
min-width: 0;
|
|
625
625
|
overflow: hidden;
|
|
@@ -630,7 +630,7 @@
|
|
|
630
630
|
font-weight: 400;
|
|
631
631
|
line-height: 1.5;
|
|
632
632
|
}
|
|
633
|
-
.
|
|
633
|
+
.select_placeholder {
|
|
634
634
|
flex: 1 1 auto;
|
|
635
635
|
min-width: 0;
|
|
636
636
|
overflow: hidden;
|
|
@@ -642,13 +642,13 @@
|
|
|
642
642
|
line-height: 1.5;
|
|
643
643
|
color: #999999;
|
|
644
644
|
}
|
|
645
|
-
.
|
|
645
|
+
.select_icon {
|
|
646
646
|
display: inline-flex;
|
|
647
647
|
align-items: center;
|
|
648
648
|
justify-content: center;
|
|
649
649
|
color: #666666;
|
|
650
650
|
}
|
|
651
|
-
.
|
|
651
|
+
.select_list {
|
|
652
652
|
position: absolute;
|
|
653
653
|
z-index: 10000;
|
|
654
654
|
top: 100%;
|
|
@@ -666,7 +666,7 @@
|
|
|
666
666
|
overflow-x: hidden;
|
|
667
667
|
padding: 0.25rem 0;
|
|
668
668
|
}
|
|
669
|
-
.
|
|
669
|
+
.select_option {
|
|
670
670
|
width: 100%;
|
|
671
671
|
box-sizing: border-box;
|
|
672
672
|
display: grid;
|
|
@@ -681,25 +681,25 @@
|
|
|
681
681
|
font-weight: 400;
|
|
682
682
|
line-height: 1.5;
|
|
683
683
|
}
|
|
684
|
-
.
|
|
684
|
+
.select_option > span:first-child {
|
|
685
685
|
min-width: 0;
|
|
686
686
|
overflow: hidden;
|
|
687
687
|
text-overflow: ellipsis;
|
|
688
688
|
white-space: nowrap;
|
|
689
689
|
}
|
|
690
|
-
.
|
|
691
|
-
.
|
|
690
|
+
.select_option:hover,
|
|
691
|
+
.select_option.is_active {
|
|
692
692
|
background: #fafafa;
|
|
693
693
|
}
|
|
694
|
-
.
|
|
694
|
+
.select_option.is_selected {
|
|
695
695
|
font-weight: 500;
|
|
696
696
|
}
|
|
697
|
-
.
|
|
697
|
+
.select_option.is_disabled {
|
|
698
698
|
cursor: not-allowed;
|
|
699
699
|
color: #999999;
|
|
700
700
|
}
|
|
701
701
|
|
|
702
|
-
/* src/ui/form/switch/style.
|
|
702
|
+
/* src/ui/form/switch/style.scss */
|
|
703
703
|
.switch {
|
|
704
704
|
position: relative;
|
|
705
705
|
display: inline-flex;
|
|
@@ -712,7 +712,7 @@
|
|
|
712
712
|
transition: background 0.2s ease-in-out;
|
|
713
713
|
cursor: pointer;
|
|
714
714
|
}
|
|
715
|
-
.
|
|
715
|
+
.switch_thumb {
|
|
716
716
|
width: 18px;
|
|
717
717
|
height: 18px;
|
|
718
718
|
background: #ffffff;
|
|
@@ -720,79 +720,79 @@
|
|
|
720
720
|
transition: transform 0.2s ease-in-out;
|
|
721
721
|
transform: translateX(0);
|
|
722
722
|
}
|
|
723
|
-
.
|
|
723
|
+
.switch_on {
|
|
724
724
|
background: #000000;
|
|
725
725
|
}
|
|
726
|
-
.
|
|
726
|
+
.switch_on .switch_thumb {
|
|
727
727
|
transform: translateX(18px);
|
|
728
728
|
}
|
|
729
|
-
.
|
|
729
|
+
.switch_size_sm {
|
|
730
730
|
width: 34px;
|
|
731
731
|
height: 18px;
|
|
732
732
|
padding: 2px;
|
|
733
733
|
}
|
|
734
|
-
.
|
|
734
|
+
.switch_size_sm .switch_thumb {
|
|
735
735
|
width: 14px;
|
|
736
736
|
height: 14px;
|
|
737
737
|
}
|
|
738
|
-
.
|
|
738
|
+
.switch_size_sm.switch_on .switch_thumb {
|
|
739
739
|
transform: translateX(16px);
|
|
740
740
|
}
|
|
741
|
-
.
|
|
741
|
+
.switch_size_md {
|
|
742
742
|
width: 40px;
|
|
743
743
|
height: 22px;
|
|
744
744
|
}
|
|
745
|
-
.
|
|
745
|
+
.switch_size_lg {
|
|
746
746
|
width: 48px;
|
|
747
747
|
height: 26px;
|
|
748
748
|
padding: 2px;
|
|
749
749
|
}
|
|
750
|
-
.
|
|
750
|
+
.switch_size_lg .switch_thumb {
|
|
751
751
|
width: 22px;
|
|
752
752
|
height: 22px;
|
|
753
753
|
}
|
|
754
|
-
.
|
|
754
|
+
.switch_size_lg.switch_on .switch_thumb {
|
|
755
755
|
transform: translateX(22px);
|
|
756
756
|
}
|
|
757
|
-
.
|
|
757
|
+
.switch_disabled {
|
|
758
758
|
opacity: 0.6;
|
|
759
759
|
cursor: not-allowed;
|
|
760
760
|
}
|
|
761
761
|
|
|
762
|
-
/* src/ui/form/textfield/style.
|
|
762
|
+
/* src/ui/form/textfield/style.scss */
|
|
763
763
|
.text_field {
|
|
764
764
|
display: flex;
|
|
765
765
|
flex-direction: column;
|
|
766
766
|
}
|
|
767
|
-
.
|
|
767
|
+
.text_field_full_width {
|
|
768
768
|
width: 100%;
|
|
769
769
|
}
|
|
770
|
-
.
|
|
770
|
+
.text_field_label {
|
|
771
771
|
margin-bottom: 0.25rem;
|
|
772
772
|
color: #1a1a1a;
|
|
773
773
|
font-size: 0.875rem;
|
|
774
774
|
line-height: 1.5;
|
|
775
775
|
font-weight: 500;
|
|
776
776
|
}
|
|
777
|
-
.
|
|
777
|
+
.text_field_wrap {
|
|
778
778
|
position: relative;
|
|
779
779
|
display: inline-flex;
|
|
780
780
|
width: 100%;
|
|
781
781
|
align-items: center;
|
|
782
782
|
}
|
|
783
|
-
.
|
|
783
|
+
.text_field_helper {
|
|
784
784
|
margin-top: 0.25rem;
|
|
785
785
|
font-size: 0.875rem;
|
|
786
786
|
line-height: 1.5;
|
|
787
787
|
color: #666666;
|
|
788
788
|
}
|
|
789
|
-
.
|
|
789
|
+
.text_field_helper_error {
|
|
790
790
|
color: #ef4444;
|
|
791
791
|
}
|
|
792
|
-
.
|
|
792
|
+
.text_field_helper_success {
|
|
793
793
|
color: #10b981;
|
|
794
794
|
}
|
|
795
|
-
.
|
|
795
|
+
.text_field_icon {
|
|
796
796
|
position: absolute;
|
|
797
797
|
display: inline-flex;
|
|
798
798
|
align-items: center;
|
|
@@ -801,13 +801,13 @@
|
|
|
801
801
|
height: 1.25rem;
|
|
802
802
|
color: #666666;
|
|
803
803
|
}
|
|
804
|
-
.
|
|
804
|
+
.text_field_icon_left {
|
|
805
805
|
left: 0.75rem;
|
|
806
806
|
}
|
|
807
|
-
.
|
|
807
|
+
.text_field_icon_right {
|
|
808
808
|
right: 0.75rem;
|
|
809
809
|
}
|
|
810
|
-
.
|
|
810
|
+
.text_field_input {
|
|
811
811
|
width: 100%;
|
|
812
812
|
border-radius: 8px;
|
|
813
813
|
transition:
|
|
@@ -819,83 +819,83 @@
|
|
|
819
819
|
color: #1a1a1a;
|
|
820
820
|
background: #ffffff;
|
|
821
821
|
}
|
|
822
|
-
.
|
|
822
|
+
.text_field_input::placeholder {
|
|
823
823
|
color: #999999;
|
|
824
824
|
}
|
|
825
|
-
.
|
|
825
|
+
.text_field_input:disabled {
|
|
826
826
|
cursor: not-allowed;
|
|
827
827
|
background: #fafafa;
|
|
828
828
|
color: #999999;
|
|
829
829
|
opacity: 0.7;
|
|
830
830
|
}
|
|
831
|
-
.
|
|
831
|
+
.text_field_variant_outline {
|
|
832
832
|
border: 1px solid #e5e5e5;
|
|
833
833
|
}
|
|
834
|
-
.
|
|
834
|
+
.text_field_variant_outline:hover:not(:disabled) {
|
|
835
835
|
border-color: rgba(0, 0, 0, 0.08);
|
|
836
836
|
}
|
|
837
|
-
.
|
|
837
|
+
.text_field_variant_outline:focus-visible {
|
|
838
838
|
outline: none;
|
|
839
839
|
border-color: #000000;
|
|
840
840
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
841
841
|
}
|
|
842
|
-
.
|
|
842
|
+
.text_field_variant_filled {
|
|
843
843
|
background: #fafafa;
|
|
844
844
|
border: 1px solid transparent;
|
|
845
845
|
}
|
|
846
|
-
.
|
|
846
|
+
.text_field_variant_filled:hover:not(:disabled) {
|
|
847
847
|
background: rgb(253.5, 253.5, 253.5);
|
|
848
848
|
}
|
|
849
|
-
.
|
|
849
|
+
.text_field_variant_filled:focus-visible {
|
|
850
850
|
outline: none;
|
|
851
851
|
border-color: #000000;
|
|
852
852
|
background: #ffffff;
|
|
853
853
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
854
854
|
}
|
|
855
|
-
.
|
|
855
|
+
.text_field_variant_ghost {
|
|
856
856
|
background: transparent;
|
|
857
857
|
border: 1px solid transparent;
|
|
858
858
|
}
|
|
859
|
-
.
|
|
859
|
+
.text_field_variant_ghost:hover:not(:disabled) {
|
|
860
860
|
background: rgba(0, 0, 0, 0.03);
|
|
861
861
|
}
|
|
862
|
-
.
|
|
862
|
+
.text_field_variant_ghost:focus-visible {
|
|
863
863
|
outline: none;
|
|
864
864
|
border-color: #000000;
|
|
865
865
|
background: #ffffff;
|
|
866
866
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
|
|
867
867
|
}
|
|
868
|
-
.
|
|
868
|
+
.text_field_size_sm {
|
|
869
869
|
padding: 0.5rem 1rem;
|
|
870
870
|
font-size: 0.875rem;
|
|
871
871
|
line-height: 1.5;
|
|
872
872
|
}
|
|
873
|
-
.
|
|
873
|
+
.text_field_size_md {
|
|
874
874
|
padding: 0.75rem 1.25rem;
|
|
875
875
|
font-size: 0.9375rem;
|
|
876
876
|
line-height: 1.5;
|
|
877
877
|
}
|
|
878
|
-
.
|
|
878
|
+
.text_field_size_lg {
|
|
879
879
|
padding: 1rem 1.5rem;
|
|
880
880
|
font-size: 1rem;
|
|
881
881
|
line-height: 1.5;
|
|
882
882
|
}
|
|
883
|
-
.
|
|
883
|
+
.text_field_with_left {
|
|
884
884
|
padding-left: calc(1.25rem + 1.25rem);
|
|
885
885
|
}
|
|
886
|
-
.
|
|
886
|
+
.text_field_with_right {
|
|
887
887
|
padding-right: calc(1.25rem + 1.25rem);
|
|
888
888
|
}
|
|
889
|
-
.
|
|
889
|
+
.text_field_error {
|
|
890
890
|
border-color: #ef4444 !important;
|
|
891
891
|
box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
|
|
892
892
|
}
|
|
893
|
-
.
|
|
893
|
+
.text_field_success {
|
|
894
894
|
border-color: #10b981 !important;
|
|
895
895
|
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
|
|
896
896
|
}
|
|
897
897
|
|
|
898
|
-
/* src/ui/form/date-picker/style.
|
|
898
|
+
/* src/ui/form/date-picker/style.scss */
|
|
899
899
|
.date_picker {
|
|
900
900
|
display: flex;
|
|
901
901
|
flex-direction: column;
|
|
@@ -956,41 +956,41 @@
|
|
|
956
956
|
min-width: 0;
|
|
957
957
|
}
|
|
958
958
|
}
|
|
959
|
-
.
|
|
959
|
+
.date_picker_label {
|
|
960
960
|
color: #1a1a1a;
|
|
961
961
|
margin-bottom: 0.25rem;
|
|
962
962
|
font-weight: 500;
|
|
963
963
|
font-size: 0.875rem;
|
|
964
964
|
line-height: 1.5;
|
|
965
965
|
}
|
|
966
|
-
.
|
|
966
|
+
.date_picker_required {
|
|
967
967
|
margin-left: 0.25rem;
|
|
968
968
|
color: #ef4444;
|
|
969
969
|
}
|
|
970
|
-
.
|
|
970
|
+
.date_picker_fields {
|
|
971
971
|
display: flex;
|
|
972
972
|
gap: 0.5rem;
|
|
973
973
|
}
|
|
974
974
|
@media (max-width: 480px) {
|
|
975
|
-
.
|
|
975
|
+
.date_picker_fields {
|
|
976
976
|
gap: 0.25rem;
|
|
977
977
|
}
|
|
978
978
|
}
|
|
979
|
-
.
|
|
979
|
+
.date_picker_full {
|
|
980
980
|
width: 100%;
|
|
981
981
|
}
|
|
982
|
-
.
|
|
982
|
+
.date_picker_full .date_picker_fields {
|
|
983
983
|
width: 100%;
|
|
984
984
|
}
|
|
985
|
-
.
|
|
985
|
+
.date_picker_full select {
|
|
986
986
|
flex: 1;
|
|
987
987
|
min-width: 0;
|
|
988
988
|
}
|
|
989
|
-
.
|
|
989
|
+
.date_picker_disabled .date_picker_label {
|
|
990
990
|
color: #9ca3af;
|
|
991
991
|
}
|
|
992
992
|
|
|
993
|
-
/* src/ui/navigation/pagination/style.
|
|
993
|
+
/* src/ui/navigation/pagination/style.scss */
|
|
994
994
|
.pagination {
|
|
995
995
|
display: flex;
|
|
996
996
|
align-items: center;
|
|
@@ -998,7 +998,7 @@
|
|
|
998
998
|
gap: 0.5rem;
|
|
999
999
|
margin-top: 1.75rem;
|
|
1000
1000
|
}
|
|
1001
|
-
.
|
|
1001
|
+
.pagination_item {
|
|
1002
1002
|
border: 1px solid #e5e5e5;
|
|
1003
1003
|
background: #ffffff;
|
|
1004
1004
|
border-radius: 8px;
|
|
@@ -1009,23 +1009,23 @@
|
|
|
1009
1009
|
color: #1a1a1a;
|
|
1010
1010
|
transition: background 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
1011
1011
|
}
|
|
1012
|
-
.
|
|
1012
|
+
.pagination_item:hover:not(:disabled) {
|
|
1013
1013
|
background: #fafafa;
|
|
1014
1014
|
}
|
|
1015
|
-
.
|
|
1015
|
+
.pagination_item:disabled {
|
|
1016
1016
|
opacity: 0.5;
|
|
1017
1017
|
cursor: not-allowed;
|
|
1018
1018
|
}
|
|
1019
|
-
.
|
|
1019
|
+
.pagination_item:focus-visible {
|
|
1020
1020
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
1021
1021
|
border-color: #000000;
|
|
1022
1022
|
}
|
|
1023
|
-
.
|
|
1023
|
+
.pagination_pages {
|
|
1024
1024
|
display: flex;
|
|
1025
1025
|
align-items: center;
|
|
1026
1026
|
gap: 6px;
|
|
1027
1027
|
}
|
|
1028
|
-
.
|
|
1028
|
+
.pagination_page_button {
|
|
1029
1029
|
border: 0;
|
|
1030
1030
|
background: transparent;
|
|
1031
1031
|
min-width: 36px;
|
|
@@ -1036,18 +1036,18 @@
|
|
|
1036
1036
|
color: #666666;
|
|
1037
1037
|
transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
1038
1038
|
}
|
|
1039
|
-
.
|
|
1039
|
+
.pagination_page_button:hover {
|
|
1040
1040
|
background: #fafafa;
|
|
1041
1041
|
color: #1a1a1a;
|
|
1042
1042
|
}
|
|
1043
|
-
.
|
|
1043
|
+
.pagination_page_button:focus-visible {
|
|
1044
1044
|
box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
|
|
1045
1045
|
}
|
|
1046
|
-
.
|
|
1046
|
+
.pagination_active {
|
|
1047
1047
|
color: #1a1a1a;
|
|
1048
1048
|
font-weight: 600;
|
|
1049
1049
|
}
|
|
1050
|
-
.
|
|
1050
|
+
.pagination_ellipsis {
|
|
1051
1051
|
min-width: 20px;
|
|
1052
1052
|
text-align: center;
|
|
1053
1053
|
font-size: 0.875rem;
|
|
@@ -1055,7 +1055,7 @@
|
|
|
1055
1055
|
color: #999999;
|
|
1056
1056
|
}
|
|
1057
1057
|
|
|
1058
|
-
/* src/ui/overlay/modal/style.
|
|
1058
|
+
/* src/ui/overlay/modal/style.scss */
|
|
1059
1059
|
.modal {
|
|
1060
1060
|
position: fixed;
|
|
1061
1061
|
inset: 0;
|
|
@@ -1064,14 +1064,14 @@
|
|
|
1064
1064
|
background: rgba(0, 0, 0, 0.5);
|
|
1065
1065
|
z-index: 10000;
|
|
1066
1066
|
}
|
|
1067
|
-
.
|
|
1067
|
+
.modal_panel {
|
|
1068
1068
|
background: #ffffff;
|
|
1069
1069
|
border-radius: 12px;
|
|
1070
1070
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
|
|
1071
1071
|
max-width: calc(100% - 32px);
|
|
1072
1072
|
overflow: hidden;
|
|
1073
1073
|
}
|
|
1074
|
-
.
|
|
1074
|
+
.modal_header {
|
|
1075
1075
|
padding: 1rem;
|
|
1076
1076
|
border-bottom: 1px solid #e5e5e5;
|
|
1077
1077
|
color: #1a1a1a;
|
|
@@ -1079,6 +1079,6 @@
|
|
|
1079
1079
|
font-weight: 600;
|
|
1080
1080
|
line-height: 1.3;
|
|
1081
1081
|
}
|
|
1082
|
-
.
|
|
1082
|
+
.modal_body {
|
|
1083
1083
|
padding: 1rem;
|
|
1084
1084
|
}
|