oziko-ui-kit 0.0.22 → 0.0.23
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 +707 -707
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
.
|
|
1
|
+
.flexElement {
|
|
2
2
|
display: flex;
|
|
3
3
|
}
|
|
4
|
-
.
|
|
4
|
+
.flexElement.horizontal {
|
|
5
5
|
flex-direction: row;
|
|
6
6
|
}
|
|
7
|
-
.
|
|
7
|
+
.flexElement.vertical {
|
|
8
8
|
flex-direction: column;
|
|
9
9
|
}
|
|
10
|
-
.
|
|
10
|
+
.flexElement.wrap {
|
|
11
11
|
flex-wrap: wrap;
|
|
12
12
|
}
|
|
13
|
-
.
|
|
13
|
+
.flexElement.noWrap {
|
|
14
14
|
flex-wrap: nowrap;
|
|
15
15
|
}
|
|
16
|
-
.
|
|
16
|
+
.flexElement.leftTop {
|
|
17
17
|
justify-content: flex-start;
|
|
18
18
|
align-items: flex-start;
|
|
19
19
|
}
|
|
20
|
-
.
|
|
20
|
+
.flexElement.top {
|
|
21
21
|
justify-content: center;
|
|
22
22
|
align-items: flex-start;
|
|
23
23
|
}
|
|
24
|
-
.
|
|
24
|
+
.flexElement.rightTop {
|
|
25
25
|
justify-content: flex-end;
|
|
26
26
|
align-items: flex-start;
|
|
27
27
|
}
|
|
28
|
-
.
|
|
28
|
+
.flexElement.leftCenter {
|
|
29
29
|
justify-content: flex-start;
|
|
30
30
|
align-items: center;
|
|
31
31
|
}
|
|
32
|
-
.
|
|
32
|
+
.flexElement.center {
|
|
33
33
|
justify-content: center;
|
|
34
34
|
align-items: center;
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
.flexElement.rightCenter {
|
|
37
37
|
justify-content: flex-end;
|
|
38
38
|
align-items: center;
|
|
39
39
|
}
|
|
40
|
-
.
|
|
40
|
+
.flexElement.leftBottom {
|
|
41
41
|
justify-content: flex-start;
|
|
42
42
|
align-items: flex-end;
|
|
43
43
|
}
|
|
44
|
-
.
|
|
44
|
+
.flexElement.bottom {
|
|
45
45
|
justify-content: center;
|
|
46
46
|
align-items: flex-end;
|
|
47
47
|
}
|
|
48
|
-
.
|
|
48
|
+
.flexElement.rightBottom {
|
|
49
49
|
justify-content: flex-end;
|
|
50
50
|
align-items: flex-end;
|
|
51
51
|
}
|
|
52
|
-
.
|
|
52
|
+
.flexElement.dimensionXfill {
|
|
53
53
|
width: 100%;
|
|
54
54
|
}
|
|
55
|
-
.
|
|
55
|
+
.flexElement.dimensionXhug {
|
|
56
56
|
width: max-content;
|
|
57
57
|
}
|
|
58
|
-
.
|
|
58
|
+
.flexElement.dimensionYfill {
|
|
59
59
|
align-self: stretch;
|
|
60
60
|
}
|
|
61
|
-
.
|
|
61
|
+
.flexElement.dimensionYhug {
|
|
62
62
|
height: max-content;
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
-
|
|
65
|
+
:root {
|
|
66
66
|
--oziko-font-size-base: 16px;
|
|
67
67
|
--oziko-font-size-xs: 0.625rem; /* 10px */
|
|
68
68
|
--oziko-font-size-sm: 0.75rem; /* 12px */
|
|
@@ -147,88 +147,88 @@
|
|
|
147
147
|
font-style: normal;
|
|
148
148
|
font-display: swap;
|
|
149
149
|
}
|
|
150
|
-
|
|
150
|
+
html {
|
|
151
151
|
font-size: var(--oziko-font-size-base);
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
|
|
154
|
+
body {
|
|
155
155
|
margin: 0;
|
|
156
156
|
font-family: var(--oziko-font-family-base);
|
|
157
157
|
-webkit-font-smoothing: antialiased;
|
|
158
158
|
-moz-osx-font-smoothing: grayscale;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
|
-
|
|
161
|
+
code {
|
|
162
162
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
|
|
165
|
+
* {
|
|
166
166
|
box-sizing: border-box;
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.flexElement {
|
|
169
169
|
display: flex;
|
|
170
170
|
}
|
|
171
|
-
.
|
|
171
|
+
.flexElement.horizontal {
|
|
172
172
|
flex-direction: row;
|
|
173
173
|
}
|
|
174
|
-
.
|
|
174
|
+
.flexElement.vertical {
|
|
175
175
|
flex-direction: column;
|
|
176
176
|
}
|
|
177
|
-
.
|
|
177
|
+
.flexElement.wrap {
|
|
178
178
|
flex-wrap: wrap;
|
|
179
179
|
}
|
|
180
|
-
.
|
|
180
|
+
.flexElement.noWrap {
|
|
181
181
|
flex-wrap: nowrap;
|
|
182
182
|
}
|
|
183
|
-
.
|
|
183
|
+
.flexElement.leftTop {
|
|
184
184
|
justify-content: flex-start;
|
|
185
185
|
align-items: flex-start;
|
|
186
186
|
}
|
|
187
|
-
.
|
|
187
|
+
.flexElement.top {
|
|
188
188
|
justify-content: center;
|
|
189
189
|
align-items: flex-start;
|
|
190
190
|
}
|
|
191
|
-
.
|
|
191
|
+
.flexElement.rightTop {
|
|
192
192
|
justify-content: flex-end;
|
|
193
193
|
align-items: flex-start;
|
|
194
194
|
}
|
|
195
|
-
.
|
|
195
|
+
.flexElement.leftCenter {
|
|
196
196
|
justify-content: flex-start;
|
|
197
197
|
align-items: center;
|
|
198
198
|
}
|
|
199
|
-
.
|
|
199
|
+
.flexElement.center {
|
|
200
200
|
justify-content: center;
|
|
201
201
|
align-items: center;
|
|
202
202
|
}
|
|
203
|
-
.
|
|
203
|
+
.flexElement.rightCenter {
|
|
204
204
|
justify-content: flex-end;
|
|
205
205
|
align-items: center;
|
|
206
206
|
}
|
|
207
|
-
.
|
|
207
|
+
.flexElement.leftBottom {
|
|
208
208
|
justify-content: flex-start;
|
|
209
209
|
align-items: flex-end;
|
|
210
210
|
}
|
|
211
|
-
.
|
|
211
|
+
.flexElement.bottom {
|
|
212
212
|
justify-content: center;
|
|
213
213
|
align-items: flex-end;
|
|
214
214
|
}
|
|
215
|
-
.
|
|
215
|
+
.flexElement.rightBottom {
|
|
216
216
|
justify-content: flex-end;
|
|
217
217
|
align-items: flex-end;
|
|
218
218
|
}
|
|
219
|
-
.
|
|
219
|
+
.flexElement.dimensionXfill {
|
|
220
220
|
width: 100%;
|
|
221
221
|
}
|
|
222
|
-
.
|
|
222
|
+
.flexElement.dimensionXhug {
|
|
223
223
|
width: max-content;
|
|
224
224
|
}
|
|
225
|
-
.
|
|
225
|
+
.flexElement.dimensionYfill {
|
|
226
226
|
align-self: stretch;
|
|
227
227
|
}
|
|
228
|
-
.
|
|
228
|
+
.flexElement.dimensionYhug {
|
|
229
229
|
height: max-content;
|
|
230
230
|
}
|
|
231
|
-
.Autocomplete-
|
|
231
|
+
.Autocomplete-module_input__ZClTo input {
|
|
232
232
|
display: -webkit-box;
|
|
233
233
|
-webkit-box-orient: vertical;
|
|
234
234
|
overflow: hidden;
|
|
@@ -237,7 +237,7 @@
|
|
|
237
237
|
-webkit-line-clamp: 1;
|
|
238
238
|
}
|
|
239
239
|
|
|
240
|
-
.Autocomplete-
|
|
240
|
+
.Autocomplete-module_menuItems__PRxS4 {
|
|
241
241
|
position: fixed;
|
|
242
242
|
border-radius: var(--oziko-border-radius-md);
|
|
243
243
|
z-index: 1000;
|
|
@@ -247,21 +247,21 @@
|
|
|
247
247
|
box-shadow: var(--box-shadow);
|
|
248
248
|
background: var(--oziko-color-menu-background);
|
|
249
249
|
}
|
|
250
|
-
.ListItem-
|
|
250
|
+
.ListItem-module_item__IJwTZ {
|
|
251
251
|
cursor: pointer;
|
|
252
252
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
253
253
|
}
|
|
254
|
-
.ListItem-
|
|
254
|
+
.ListItem-module_item__IJwTZ:not(.ListItem-module_disabled__nySSv):hover {
|
|
255
255
|
background: var(--oziko-color-zebra);
|
|
256
256
|
}
|
|
257
|
-
.ListItem-
|
|
257
|
+
.ListItem-module_item__IJwTZ.ListItem-module_active__L8V-w {
|
|
258
258
|
background: var(--oziko-color-zebra);
|
|
259
259
|
}
|
|
260
|
-
.ListItem-
|
|
260
|
+
.ListItem-module_item__IJwTZ.ListItem-module_disabled__nySSv {
|
|
261
261
|
cursor: default;
|
|
262
262
|
opacity: var(--oziko-disabled-opacity);
|
|
263
263
|
}
|
|
264
|
-
.ListItem-
|
|
264
|
+
.ListItem-module_item__IJwTZ .ListItem-module_displayer__Ce1rm {
|
|
265
265
|
display: -webkit-box;
|
|
266
266
|
-webkit-box-orient: vertical;
|
|
267
267
|
overflow: hidden;
|
|
@@ -269,122 +269,122 @@
|
|
|
269
269
|
width: unset;
|
|
270
270
|
-webkit-line-clamp: 1;
|
|
271
271
|
}
|
|
272
|
-
.FlexElement-
|
|
272
|
+
.FlexElement-module_flexElement__eg1MJ {
|
|
273
273
|
display: flex;
|
|
274
274
|
}
|
|
275
|
-
.FlexElement-
|
|
275
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_horizontal__UpVw- {
|
|
276
276
|
flex-direction: row;
|
|
277
277
|
}
|
|
278
|
-
.FlexElement-
|
|
278
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_vertical__JHDUP {
|
|
279
279
|
flex-direction: column;
|
|
280
280
|
}
|
|
281
|
-
.FlexElement-
|
|
281
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_wrap__wPEvD {
|
|
282
282
|
flex-wrap: wrap;
|
|
283
283
|
}
|
|
284
|
-
.FlexElement-
|
|
284
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_noWrap__DpsWL {
|
|
285
285
|
flex-wrap: nowrap;
|
|
286
286
|
}
|
|
287
|
-
.FlexElement-
|
|
287
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_leftTop__n9nq- {
|
|
288
288
|
justify-content: flex-start;
|
|
289
289
|
align-items: flex-start;
|
|
290
290
|
}
|
|
291
|
-
.FlexElement-
|
|
291
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_top__6U245 {
|
|
292
292
|
justify-content: center;
|
|
293
293
|
align-items: flex-start;
|
|
294
294
|
}
|
|
295
|
-
.FlexElement-
|
|
295
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_rightTop__ZH-uY {
|
|
296
296
|
justify-content: flex-end;
|
|
297
297
|
align-items: flex-start;
|
|
298
298
|
}
|
|
299
|
-
.FlexElement-
|
|
299
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_leftCenter__lmSm9 {
|
|
300
300
|
justify-content: flex-start;
|
|
301
301
|
align-items: center;
|
|
302
302
|
}
|
|
303
|
-
.FlexElement-
|
|
303
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_center__olWdH {
|
|
304
304
|
justify-content: center;
|
|
305
305
|
align-items: center;
|
|
306
306
|
}
|
|
307
|
-
.FlexElement-
|
|
307
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_rightCenter__CkcSp {
|
|
308
308
|
justify-content: flex-end;
|
|
309
309
|
align-items: center;
|
|
310
310
|
}
|
|
311
|
-
.FlexElement-
|
|
311
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_leftBottom__CRip2 {
|
|
312
312
|
justify-content: flex-start;
|
|
313
313
|
align-items: flex-end;
|
|
314
314
|
}
|
|
315
|
-
.FlexElement-
|
|
315
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_bottom__cpqRE {
|
|
316
316
|
justify-content: center;
|
|
317
317
|
align-items: flex-end;
|
|
318
318
|
}
|
|
319
|
-
.FlexElement-
|
|
319
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_rightBottom__OL2Ko {
|
|
320
320
|
justify-content: flex-end;
|
|
321
321
|
align-items: flex-end;
|
|
322
322
|
}
|
|
323
|
-
.FlexElement-
|
|
323
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_dimensionXfill__oSQHV {
|
|
324
324
|
width: 100%;
|
|
325
325
|
}
|
|
326
|
-
.FlexElement-
|
|
326
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_dimensionXhug__AV1zR {
|
|
327
327
|
width: max-content;
|
|
328
328
|
}
|
|
329
|
-
.FlexElement-
|
|
329
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_dimensionYfill__fAgSn {
|
|
330
330
|
align-self: stretch;
|
|
331
331
|
}
|
|
332
|
-
.FlexElement-
|
|
332
|
+
.FlexElement-module_flexElement__eg1MJ.FlexElement-module_dimensionYhug__C8Rpu {
|
|
333
333
|
height: max-content;
|
|
334
334
|
}
|
|
335
|
-
.Text-
|
|
335
|
+
.Text-module_text__pXeDB {
|
|
336
336
|
width: max-content;
|
|
337
337
|
line-height: 1rem;
|
|
338
338
|
}
|
|
339
|
-
.Text-
|
|
339
|
+
.Text-module_text__pXeDB.Text-module_primary__Jl3pf {
|
|
340
340
|
color: var(--oziko-color-font-primary);
|
|
341
341
|
}
|
|
342
|
-
.Text-
|
|
342
|
+
.Text-module_text__pXeDB.Text-module_secondary__lupNJ {
|
|
343
343
|
color: var(--oziko-color-input-placeholder);
|
|
344
344
|
}
|
|
345
|
-
.Text-
|
|
345
|
+
.Text-module_text__pXeDB.Text-module_danger__wUGWY {
|
|
346
346
|
color: var(--oziko-color-danger);
|
|
347
347
|
}
|
|
348
|
-
.Text-
|
|
348
|
+
.Text-module_text__pXeDB.Text-module_xsmall__9MbA8 {
|
|
349
349
|
font-size: var(--oziko-font-size-xs);
|
|
350
350
|
}
|
|
351
|
-
.Text-
|
|
351
|
+
.Text-module_text__pXeDB.Text-module_small__6RMw5 {
|
|
352
352
|
font-size: var(--oziko-font-size-sm);
|
|
353
353
|
}
|
|
354
|
-
.Text-
|
|
354
|
+
.Text-module_text__pXeDB.Text-module_medium__1wQOp {
|
|
355
355
|
font-size: var(--oziko-font-size-md);
|
|
356
356
|
}
|
|
357
|
-
.Text-
|
|
357
|
+
.Text-module_text__pXeDB.Text-module_large__xU7Z7 {
|
|
358
358
|
font-size: var(--oziko-font-size-lg);
|
|
359
359
|
}
|
|
360
|
-
.Text-
|
|
360
|
+
.Text-module_text__pXeDB.Text-module_xlarge__e2FFa {
|
|
361
361
|
font-size: var(--oziko-font-size-xl);
|
|
362
362
|
}
|
|
363
|
-
.InputWithIcon-
|
|
363
|
+
.InputWithIcon-module_container__XS6go {
|
|
364
364
|
background-color: var(--oziko-color-input-background);
|
|
365
365
|
border-radius: var(--oziko-border-radius-md);
|
|
366
366
|
color: var(--oziko-color-input-placeholder);
|
|
367
367
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
368
368
|
border: var(--oziko-border-default);
|
|
369
369
|
}
|
|
370
|
-
.InputWithIcon-
|
|
370
|
+
.InputWithIcon-module_container__XS6go input {
|
|
371
371
|
padding: 0;
|
|
372
372
|
}
|
|
373
|
-
.InputWithIcon-
|
|
373
|
+
.InputWithIcon-module_container__XS6go.InputWithIcon-module_disabled__Ipdhp {
|
|
374
374
|
cursor: default;
|
|
375
375
|
opacity: var(--oziko-disabled-opacity);
|
|
376
376
|
}
|
|
377
|
-
.InputWithIcon-
|
|
377
|
+
.InputWithIcon-module_container__XS6go .InputWithIcon-module_input__QmSjk {
|
|
378
378
|
border: none;
|
|
379
379
|
outline: none;
|
|
380
380
|
width: 100%;
|
|
381
381
|
background: none;
|
|
382
382
|
color: var(--oziko-color-font-primary);
|
|
383
383
|
}
|
|
384
|
-
.InputWithIcon-
|
|
384
|
+
.InputWithIcon-module_container__XS6go .InputWithIcon-module_input__QmSjk::placeholder {
|
|
385
385
|
color: var(--oziko-color-input-placeholder);
|
|
386
386
|
}
|
|
387
|
-
.Input-
|
|
387
|
+
.Input-module_input__drEt1 {
|
|
388
388
|
font-size: var(--oziko-font-size-md);
|
|
389
389
|
line-height: 1rem;
|
|
390
390
|
padding: 0;
|
|
@@ -394,28 +394,28 @@
|
|
|
394
394
|
outline: none;
|
|
395
395
|
background-color: transparent;
|
|
396
396
|
}
|
|
397
|
-
.InputLabel-
|
|
397
|
+
.InputLabel-module_reverse__OWiKh {
|
|
398
398
|
flex-direction: row-reverse !important;
|
|
399
399
|
}
|
|
400
|
-
.InputLabel-
|
|
400
|
+
.InputLabel-module_reverse__OWiKh .InputLabel-module_title__-qafK {
|
|
401
401
|
padding-left: var(--oziko-padding-md);
|
|
402
402
|
padding-right: 0;
|
|
403
403
|
text-align: right;
|
|
404
404
|
}
|
|
405
405
|
|
|
406
|
-
.InputLabel-
|
|
406
|
+
.InputLabel-module_divider__dUzoL {
|
|
407
407
|
width: 1px;
|
|
408
408
|
height: 0;
|
|
409
409
|
background: var(--oziko-color-primary);
|
|
410
410
|
transition: all var(--oziko-transition-duration);
|
|
411
411
|
}
|
|
412
412
|
|
|
413
|
-
.InputLabel-
|
|
413
|
+
.InputLabel-module_focused__bVb3x .InputLabel-module_divider__dUzoL {
|
|
414
414
|
height: 100%;
|
|
415
415
|
transition: all var(--oziko-transition-duration);
|
|
416
416
|
}
|
|
417
417
|
|
|
418
|
-
.InputLabel-
|
|
418
|
+
.InputLabel-module_container__ahfSz .InputLabel-module_title__-qafK span {
|
|
419
419
|
font-size: var(--oziko-font-size-md);
|
|
420
420
|
color: var(--oziko-color-font-primary);
|
|
421
421
|
width: 100px;
|
|
@@ -427,7 +427,7 @@
|
|
|
427
427
|
position: relative;
|
|
428
428
|
transition: all var(--oziko-transition-duration);
|
|
429
429
|
}
|
|
430
|
-
.InputLabel-
|
|
430
|
+
.InputLabel-module_container__ahfSz .InputLabel-module_title__-qafK::after {
|
|
431
431
|
content: "";
|
|
432
432
|
width: 1px;
|
|
433
433
|
background-color: var(--oziko-color-primary);
|
|
@@ -437,63 +437,63 @@
|
|
|
437
437
|
right: 0;
|
|
438
438
|
transition: all var(--oziko-transition-duration);
|
|
439
439
|
}
|
|
440
|
-
.InputLabel-
|
|
440
|
+
.InputLabel-module_container__ahfSz .InputLabel-module_icon__-hQXJ {
|
|
441
441
|
transition: all var(--oziko-transition-duration);
|
|
442
442
|
}
|
|
443
|
-
.BaseInput-
|
|
443
|
+
.BaseInput-module_baseInputContainer__sY1kq {
|
|
444
444
|
background-color: var(--oziko-color-input-background);
|
|
445
445
|
border-radius: var(--oziko-border-radius-md);
|
|
446
446
|
color: var(--oziko-color-input-placeholder);
|
|
447
447
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
448
448
|
position: relative;
|
|
449
449
|
}
|
|
450
|
-
.BaseInput-
|
|
450
|
+
.BaseInput-module_baseInputContainer__sY1kq input {
|
|
451
451
|
padding: 0;
|
|
452
452
|
}
|
|
453
|
-
.BaseInput-
|
|
453
|
+
.BaseInput-module_baseInputContainer__sY1kq .BaseInput-module_focused__K38D8 * {
|
|
454
454
|
color: var(--oziko-color-primary) !important;
|
|
455
455
|
}
|
|
456
|
-
.BaseInput-
|
|
456
|
+
.BaseInput-module_baseInputContainer__sY1kq.BaseInput-module_containerFocused__w9-Ht {
|
|
457
457
|
outline: 1px solid var(--oziko-color-primary);
|
|
458
458
|
}
|
|
459
459
|
|
|
460
|
-
.BaseInput-
|
|
460
|
+
.BaseInput-module_disabled__kn4wv {
|
|
461
461
|
opacity: var(--oziko-disabled-opacity);
|
|
462
462
|
cursor: not-allowed;
|
|
463
463
|
pointer-events: none;
|
|
464
464
|
}
|
|
465
465
|
|
|
466
|
-
.BaseInput-
|
|
466
|
+
.BaseInput-module_helperText__5CsM3 {
|
|
467
467
|
padding-left: var(--oziko-padding-lg);
|
|
468
468
|
font-size: var(--oziko-font-size-sm) !important;
|
|
469
469
|
}
|
|
470
|
-
.Icon-
|
|
470
|
+
.Icon-module_icon__RB1IY.Icon-module_xs__908MS {
|
|
471
471
|
width: var(--oziko-icon-size-xs);
|
|
472
472
|
height: var(--oziko-icon-size-xs);
|
|
473
473
|
}
|
|
474
|
-
.Icon-
|
|
474
|
+
.Icon-module_icon__RB1IY.Icon-module_sm__6W-Lb {
|
|
475
475
|
width: var(--oziko-icon-size-sm);
|
|
476
476
|
height: var(--oziko-icon-size-sm);
|
|
477
477
|
}
|
|
478
|
-
.Icon-
|
|
478
|
+
.Icon-module_icon__RB1IY.Icon-module_md__NwfvQ {
|
|
479
479
|
width: var(--oziko-icon-size-md);
|
|
480
480
|
height: var(--oziko-icon-size-md);
|
|
481
481
|
}
|
|
482
|
-
.Icon-
|
|
482
|
+
.Icon-module_icon__RB1IY.Icon-module_lg__KKTLI {
|
|
483
483
|
width: var(--oziko-icon-size-lg);
|
|
484
484
|
height: var(--oziko-icon-size-lg);
|
|
485
485
|
}
|
|
486
|
-
.BucketFieldPopup-
|
|
486
|
+
.BucketFieldPopup-module_container__u-ZI0 {
|
|
487
487
|
background-color: var(--oziko-color-menu-background);
|
|
488
488
|
padding: var(--oziko-padding-md);
|
|
489
489
|
border-radius: var(--oziko-border-radius-lg);
|
|
490
490
|
}
|
|
491
|
-
.BucketFieldPopup-
|
|
491
|
+
.BucketFieldPopup-module_container__u-ZI0 .BucketFieldPopup-module_item__UuUXG {
|
|
492
492
|
color: var(--oziko-color-font-primary);
|
|
493
493
|
padding: var(--oziko-padding-xs) 0;
|
|
494
494
|
cursor: pointer;
|
|
495
495
|
}
|
|
496
|
-
.Button-
|
|
496
|
+
.Button-module_button__tvuyP {
|
|
497
497
|
cursor: pointer;
|
|
498
498
|
line-height: var(--oziko-font-size-md);
|
|
499
499
|
outline: none;
|
|
@@ -506,376 +506,376 @@
|
|
|
506
506
|
align-items: center;
|
|
507
507
|
justify-content: center;
|
|
508
508
|
}
|
|
509
|
-
.Button-
|
|
509
|
+
.Button-module_button__tvuyP:disabled {
|
|
510
510
|
opacity: var(--oziko-disabled-opacity);
|
|
511
511
|
cursor: default;
|
|
512
512
|
}
|
|
513
|
-
.Button-
|
|
513
|
+
.Button-module_button__tvuyP.Button-module_fullWidth__ocMRP {
|
|
514
514
|
width: 100%;
|
|
515
515
|
}
|
|
516
|
-
.Button-
|
|
516
|
+
.Button-module_button__tvuyP.Button-module_sDefault__yRCYO {
|
|
517
517
|
border-radius: var(--oziko-border-radius-sm);
|
|
518
518
|
}
|
|
519
|
-
.Button-
|
|
519
|
+
.Button-module_button__tvuyP.Button-module_sCircle__GJyYM {
|
|
520
520
|
border-radius: var(--oziko-border-radius-circle);
|
|
521
521
|
}
|
|
522
|
-
.Button-
|
|
522
|
+
.Button-module_button__tvuyP.Button-module_sRound__y0uWn {
|
|
523
523
|
border-radius: var(--oziko-border-radius-round);
|
|
524
524
|
}
|
|
525
|
-
.Button-
|
|
525
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo {
|
|
526
526
|
border: 1px solid;
|
|
527
527
|
}
|
|
528
|
-
.Button-
|
|
528
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cPrimary__67oy- {
|
|
529
529
|
background-color: var(--oziko-color-primary);
|
|
530
530
|
border-color: var(--oziko-color-primary) !important;
|
|
531
531
|
color: var(--oziko-color-font-secondary);
|
|
532
532
|
}
|
|
533
|
-
.Button-
|
|
533
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cPrimary__67oy-:hover {
|
|
534
534
|
background-color: var(--oziko-color-primary-light);
|
|
535
535
|
border-color: var(--oziko-color-primary-light) !important;
|
|
536
536
|
color: var(--oziko-color-font-secondary);
|
|
537
537
|
}
|
|
538
|
-
.Button-
|
|
538
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cDanger__HgXsJ {
|
|
539
539
|
background-color: var(--oziko-color-danger);
|
|
540
540
|
border-color: var(--oziko-color-danger) !important;
|
|
541
541
|
color: var(--oziko-color-font-secondary);
|
|
542
542
|
}
|
|
543
|
-
.Button-
|
|
543
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cDanger__HgXsJ:hover {
|
|
544
544
|
background-color: var(--oziko-color-danger-light);
|
|
545
545
|
border-color: var(--oziko-color-danger-light) !important;
|
|
546
546
|
color: var(--oziko-color-font-secondary);
|
|
547
547
|
}
|
|
548
|
-
.Button-
|
|
548
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cSuccess__KSilh {
|
|
549
549
|
background-color: var(--oziko-color-success);
|
|
550
550
|
border-color: var(--oziko-color-success) !important;
|
|
551
551
|
color: var(--oziko-color-font-secondary);
|
|
552
552
|
}
|
|
553
|
-
.Button-
|
|
553
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cSuccess__KSilh:hover {
|
|
554
554
|
background-color: var(--oziko-color-success-light);
|
|
555
555
|
border-color: var(--oziko-color-success-light) !important;
|
|
556
556
|
color: var(--oziko-color-font-secondary);
|
|
557
557
|
}
|
|
558
|
-
.Button-
|
|
558
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cDefault__q58J8 {
|
|
559
559
|
background-color: var(--oziko-color-default);
|
|
560
560
|
border-color: var(--oziko-color-default) !important;
|
|
561
561
|
color: var(--oziko-color-font-primary);
|
|
562
562
|
}
|
|
563
|
-
.Button-
|
|
563
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cDefault__q58J8:hover {
|
|
564
564
|
background-color: var(--oziko-color-default);
|
|
565
565
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
566
566
|
color: var(--oziko-color-font-primary);
|
|
567
567
|
}
|
|
568
|
-
.Button-
|
|
568
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cSoft__dGX1F {
|
|
569
569
|
background-color: var(--oziko-color-soft);
|
|
570
570
|
border-color: var(--oziko-color-soft) !important;
|
|
571
571
|
color: var(--oziko-color-font-primary);
|
|
572
572
|
}
|
|
573
|
-
.Button-
|
|
573
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cSoft__dGX1F:hover {
|
|
574
574
|
background-color: var(--oziko-color-soft);
|
|
575
575
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
576
576
|
color: var(--oziko-color-font-primary);
|
|
577
577
|
}
|
|
578
|
-
.Button-
|
|
578
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cTransparent__Bnpcx {
|
|
579
579
|
background-color: transparent;
|
|
580
580
|
border-color: var(--oziko-color-border) !important;
|
|
581
581
|
color: var(--oziko-color-font-primary);
|
|
582
582
|
}
|
|
583
|
-
.Button-
|
|
583
|
+
.Button-module_button__tvuyP.Button-module_vSolid__G4luo.Button-module_cTransparent__Bnpcx:hover {
|
|
584
584
|
background-color: transparent;
|
|
585
585
|
border-color: var(--oziko-color-border) !important;
|
|
586
586
|
color: var(--oziko-color-font-primary);
|
|
587
587
|
}
|
|
588
|
-
.Button-
|
|
588
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ {
|
|
589
589
|
border: 1px solid;
|
|
590
590
|
background-color: transparent;
|
|
591
591
|
}
|
|
592
|
-
.Button-
|
|
592
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cPrimary__67oy- {
|
|
593
593
|
background-color: transparent;
|
|
594
594
|
border-color: var(--oziko-color-primary) !important;
|
|
595
595
|
color: var(--oziko-color-primary);
|
|
596
596
|
}
|
|
597
|
-
.Button-
|
|
597
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cPrimary__67oy-:hover {
|
|
598
598
|
background-color: transparent;
|
|
599
599
|
border-color: var(--oziko-color-primary-light) !important;
|
|
600
600
|
color: var(--oziko-color-primary-light);
|
|
601
601
|
}
|
|
602
|
-
.Button-
|
|
602
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cDanger__HgXsJ {
|
|
603
603
|
background-color: transparent;
|
|
604
604
|
border-color: var(--oziko-color-danger) !important;
|
|
605
605
|
color: var(--oziko-color-danger);
|
|
606
606
|
}
|
|
607
|
-
.Button-
|
|
607
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cDanger__HgXsJ:hover {
|
|
608
608
|
background-color: transparent;
|
|
609
609
|
border-color: var(--oziko-color-danger-light) !important;
|
|
610
610
|
color: var(--oziko-color-danger-light);
|
|
611
611
|
}
|
|
612
|
-
.Button-
|
|
612
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cSuccess__KSilh {
|
|
613
613
|
background-color: transparent;
|
|
614
614
|
border-color: var(--oziko-color-success) !important;
|
|
615
615
|
color: var(--oziko-color-success);
|
|
616
616
|
}
|
|
617
|
-
.Button-
|
|
617
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cSuccess__KSilh:hover {
|
|
618
618
|
background-color: transparent;
|
|
619
619
|
border-color: var(--oziko-color-success-light) !important;
|
|
620
620
|
color: var(--oziko-color-success-light);
|
|
621
621
|
}
|
|
622
|
-
.Button-
|
|
622
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cDefault__q58J8 {
|
|
623
623
|
background-color: transparent;
|
|
624
624
|
border-color: var(--oziko-color-border) !important;
|
|
625
625
|
color: var(--oziko-color-font-primary);
|
|
626
626
|
}
|
|
627
|
-
.Button-
|
|
627
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cDefault__q58J8:hover {
|
|
628
628
|
background-color: transparent;
|
|
629
629
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
630
630
|
color: var(--oziko-color-font-primary);
|
|
631
631
|
}
|
|
632
|
-
.Button-
|
|
632
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cSoft__dGX1F {
|
|
633
633
|
background-color: transparent;
|
|
634
634
|
border-color: var(--oziko-color-soft) !important;
|
|
635
635
|
color: var(--oziko-color-font-primary);
|
|
636
636
|
}
|
|
637
|
-
.Button-
|
|
637
|
+
.Button-module_button__tvuyP.Button-module_vOutlined__BPlxJ.Button-module_cSoft__dGX1F:hover {
|
|
638
638
|
background-color: transparent;
|
|
639
639
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
640
640
|
color: var(--oziko-color-font-primary);
|
|
641
641
|
}
|
|
642
|
-
.Button-
|
|
642
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs {
|
|
643
643
|
border: 1px dashed;
|
|
644
644
|
background-color: transparent;
|
|
645
645
|
}
|
|
646
|
-
.Button-
|
|
646
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cPrimary__67oy- {
|
|
647
647
|
background-color: transparent;
|
|
648
648
|
border-color: var(--oziko-color-primary) !important;
|
|
649
649
|
color: var(--oziko-color-primary);
|
|
650
650
|
}
|
|
651
|
-
.Button-
|
|
651
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cPrimary__67oy-:hover {
|
|
652
652
|
background-color: transparent;
|
|
653
653
|
border-color: var(--oziko-color-primary-light) !important;
|
|
654
654
|
color: var(--oziko-color-primary-light);
|
|
655
655
|
}
|
|
656
|
-
.Button-
|
|
656
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cDanger__HgXsJ {
|
|
657
657
|
background-color: transparent;
|
|
658
658
|
border-color: var(--oziko-color-danger) !important;
|
|
659
659
|
color: var(--oziko-color-danger);
|
|
660
660
|
}
|
|
661
|
-
.Button-
|
|
661
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cDanger__HgXsJ:hover {
|
|
662
662
|
background-color: transparent;
|
|
663
663
|
border-color: var(--oziko-color-danger-light) !important;
|
|
664
664
|
color: var(--oziko-color-danger-light);
|
|
665
665
|
}
|
|
666
|
-
.Button-
|
|
666
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cSuccess__KSilh {
|
|
667
667
|
background-color: transparent;
|
|
668
668
|
border-color: var(--oziko-color-success) !important;
|
|
669
669
|
color: var(--oziko-color-success);
|
|
670
670
|
}
|
|
671
|
-
.Button-
|
|
671
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cSuccess__KSilh:hover {
|
|
672
672
|
background-color: transparent;
|
|
673
673
|
border-color: var(--oziko-color-success-light) !important;
|
|
674
674
|
color: var(--oziko-color-success-light);
|
|
675
675
|
}
|
|
676
|
-
.Button-
|
|
676
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cDefault__q58J8 {
|
|
677
677
|
background-color: transparent;
|
|
678
678
|
border-color: var(--oziko-color-border) !important;
|
|
679
679
|
color: var(--oziko-color-font-primary);
|
|
680
680
|
}
|
|
681
|
-
.Button-
|
|
681
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cDefault__q58J8:hover {
|
|
682
682
|
background-color: transparent;
|
|
683
683
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
684
684
|
color: var(--oziko-color-font-primary);
|
|
685
685
|
}
|
|
686
|
-
.Button-
|
|
686
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cSoft__dGX1F {
|
|
687
687
|
background-color: transparent;
|
|
688
688
|
border-color: var(--oziko-color-soft) !important;
|
|
689
689
|
color: var(--oziko-color-font-primary);
|
|
690
690
|
}
|
|
691
|
-
.Button-
|
|
691
|
+
.Button-module_button__tvuyP.Button-module_vDashed__s9Gzs.Button-module_cSoft__dGX1F:hover {
|
|
692
692
|
background-color: transparent;
|
|
693
693
|
border-color: rgba(var(--oziko-color-primary-rgb), 0.3) !important;
|
|
694
694
|
color: var(--oziko-color-font-primary);
|
|
695
695
|
}
|
|
696
|
-
.Button-
|
|
696
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT- {
|
|
697
697
|
border: none;
|
|
698
698
|
}
|
|
699
|
-
.Button-
|
|
699
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cPrimary__67oy- {
|
|
700
700
|
background-color: rgba(var(--oziko-color-primary-rgb), 0.1);
|
|
701
701
|
border-color: var(--oziko-color-primary) !important;
|
|
702
702
|
color: var(--oziko-color-primary);
|
|
703
703
|
}
|
|
704
|
-
.Button-
|
|
704
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cPrimary__67oy-:hover {
|
|
705
705
|
background-color: rgba(var(--oziko-color-primary-rgb), 0.3);
|
|
706
706
|
border-color: var(--oziko-color-primary) !important;
|
|
707
707
|
color: var(--oziko-color-primary);
|
|
708
708
|
}
|
|
709
|
-
.Button-
|
|
709
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cDanger__HgXsJ {
|
|
710
710
|
background-color: rgba(var(--oziko-color-danger-rgb), 0.1);
|
|
711
711
|
border-color: var(--oziko-color-danger) !important;
|
|
712
712
|
color: var(--oziko-color-danger);
|
|
713
713
|
}
|
|
714
|
-
.Button-
|
|
714
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cDanger__HgXsJ:hover {
|
|
715
715
|
background-color: rgba(var(--oziko-color-danger-rgb), 0.3);
|
|
716
716
|
border-color: var(--oziko-color-danger) !important;
|
|
717
717
|
color: var(--oziko-color-danger);
|
|
718
718
|
}
|
|
719
|
-
.Button-
|
|
719
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cSuccess__KSilh {
|
|
720
720
|
background-color: rgba(var(--oziko-color-success-rgb), 0.1);
|
|
721
721
|
border-color: var(--oziko-color-success) !important;
|
|
722
722
|
color: var(--oziko-color-success);
|
|
723
723
|
}
|
|
724
|
-
.Button-
|
|
724
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cSuccess__KSilh:hover {
|
|
725
725
|
background-color: rgba(var(--oziko-color-success-rgb), 0.3);
|
|
726
726
|
border-color: var(--oziko-color-success) !important;
|
|
727
727
|
color: var(--oziko-color-success);
|
|
728
728
|
}
|
|
729
|
-
.Button-
|
|
729
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cDefault__q58J8 {
|
|
730
730
|
background-color: rgba(var(--oziko-color-default-rgb), 0.1);
|
|
731
731
|
border-color: var(--oziko-color-font-primary) !important;
|
|
732
732
|
color: var(--oziko-color-font-primary);
|
|
733
733
|
}
|
|
734
|
-
.Button-
|
|
734
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cDefault__q58J8:hover {
|
|
735
735
|
background-color: rgba(var(--oziko-color-default-rgb), 0.3);
|
|
736
736
|
border-color: var(--oziko-color-font-primary) !important;
|
|
737
737
|
color: var(--oziko-color-font-primary);
|
|
738
738
|
}
|
|
739
|
-
.Button-
|
|
739
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cSoft__dGX1F {
|
|
740
740
|
background-color: rgba(var(--oziko-color-soft-rgb), 0.1);
|
|
741
741
|
border-color: var(--oziko-color-soft) !important;
|
|
742
742
|
color: var(--oziko-color-font-primary);
|
|
743
743
|
}
|
|
744
|
-
.Button-
|
|
744
|
+
.Button-module_button__tvuyP.Button-module_vFilled__1oRT-.Button-module_cSoft__dGX1F:hover {
|
|
745
745
|
background-color: rgba(var(--oziko-color-soft-rgb), 0.3);
|
|
746
746
|
border-color: var(--oziko-color-soft) !important;
|
|
747
747
|
color: var(--oziko-color-font-primary);
|
|
748
748
|
}
|
|
749
|
-
.Button-
|
|
749
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ {
|
|
750
750
|
border: none;
|
|
751
751
|
background-color: transparent;
|
|
752
752
|
}
|
|
753
|
-
.Button-
|
|
753
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cPrimary__67oy- {
|
|
754
754
|
background-color: transparent;
|
|
755
755
|
border-color: transparent !important;
|
|
756
756
|
color: var(--oziko-color-primary);
|
|
757
757
|
}
|
|
758
|
-
.Button-
|
|
758
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cPrimary__67oy-:hover {
|
|
759
759
|
background-color: rgba(var(--oziko-color-primary-rgb), 0.1);
|
|
760
760
|
border-color: transparent !important;
|
|
761
761
|
color: var(--oziko-color-primary);
|
|
762
762
|
}
|
|
763
|
-
.Button-
|
|
763
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cDanger__HgXsJ {
|
|
764
764
|
background-color: transparent;
|
|
765
765
|
border-color: transparent !important;
|
|
766
766
|
color: var(--oziko-color-danger);
|
|
767
767
|
}
|
|
768
|
-
.Button-
|
|
768
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cDanger__HgXsJ:hover {
|
|
769
769
|
background-color: rgba(var(--oziko-color-danger-rgb), 0.1);
|
|
770
770
|
border-color: transparent !important;
|
|
771
771
|
color: var(--oziko-color-danger);
|
|
772
772
|
}
|
|
773
|
-
.Button-
|
|
773
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cSuccess__KSilh {
|
|
774
774
|
background-color: transparent;
|
|
775
775
|
border-color: transparent !important;
|
|
776
776
|
color: var(--oziko-color-success);
|
|
777
777
|
}
|
|
778
|
-
.Button-
|
|
778
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cSuccess__KSilh:hover {
|
|
779
779
|
background-color: rgba(var(--oziko-color-success-rgb), 0.1);
|
|
780
780
|
border-color: transparent !important;
|
|
781
781
|
color: var(--oziko-color-success);
|
|
782
782
|
}
|
|
783
|
-
.Button-
|
|
783
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cDefault__q58J8 {
|
|
784
784
|
background-color: transparent;
|
|
785
785
|
border-color: transparent !important;
|
|
786
786
|
color: var(--oziko-color-font-primary);
|
|
787
787
|
}
|
|
788
|
-
.Button-
|
|
788
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cDefault__q58J8:hover {
|
|
789
789
|
background-color: rgba(var(--oziko-color-default-rgb), 0.1);
|
|
790
790
|
border-color: transparent !important;
|
|
791
791
|
color: var(--oziko-color-font-primary);
|
|
792
792
|
}
|
|
793
|
-
.Button-
|
|
793
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cSoft__dGX1F {
|
|
794
794
|
background-color: transparent;
|
|
795
795
|
border-color: transparent !important;
|
|
796
796
|
color: var(--oziko-color-font-primary);
|
|
797
797
|
}
|
|
798
|
-
.Button-
|
|
798
|
+
.Button-module_button__tvuyP.Button-module_vText__rb0VZ.Button-module_cSoft__dGX1F:hover {
|
|
799
799
|
background-color: rgba(var(--oziko-color-soft-rgb), 0.1);
|
|
800
800
|
border-color: transparent !important;
|
|
801
801
|
color: var(--oziko-color-font-primary);
|
|
802
802
|
}
|
|
803
|
-
.Button-
|
|
803
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS {
|
|
804
804
|
border: none;
|
|
805
805
|
background-color: transparent;
|
|
806
806
|
}
|
|
807
|
-
.Button-
|
|
807
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cPrimary__67oy- {
|
|
808
808
|
color: var(--oziko-color-primary);
|
|
809
809
|
}
|
|
810
|
-
.Button-
|
|
810
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cPrimary__67oy-:hover {
|
|
811
811
|
color: var(--oziko-color-primary-light);
|
|
812
812
|
}
|
|
813
|
-
.Button-
|
|
813
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cDanger__HgXsJ {
|
|
814
814
|
color: var(--oziko-color-danger);
|
|
815
815
|
}
|
|
816
|
-
.Button-
|
|
816
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cDanger__HgXsJ:hover {
|
|
817
817
|
color: var(--oziko-color-danger-light);
|
|
818
818
|
}
|
|
819
|
-
.Button-
|
|
819
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cSuccess__KSilh {
|
|
820
820
|
color: var(--oziko-color-success);
|
|
821
821
|
}
|
|
822
|
-
.Button-
|
|
822
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cSuccess__KSilh:hover {
|
|
823
823
|
color: var(--oziko-color-success-light);
|
|
824
824
|
}
|
|
825
|
-
.Button-
|
|
825
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cDefault__q58J8 {
|
|
826
826
|
color: var(--oziko-color-font-primary);
|
|
827
827
|
}
|
|
828
|
-
.Button-
|
|
828
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cDefault__q58J8:hover {
|
|
829
829
|
color: var(--oziko-color-primary);
|
|
830
830
|
}
|
|
831
|
-
.Button-
|
|
831
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cSoft__dGX1F {
|
|
832
832
|
color: var(--oziko-color-font-primary);
|
|
833
833
|
}
|
|
834
|
-
.Button-
|
|
834
|
+
.Button-module_button__tvuyP.Button-module_vLink__g4fzS.Button-module_cSoft__dGX1F:hover {
|
|
835
835
|
color: var(--oziko-color-primary);
|
|
836
836
|
}
|
|
837
|
-
.Button-
|
|
837
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE {
|
|
838
838
|
border: none;
|
|
839
839
|
background-color: transparent;
|
|
840
840
|
}
|
|
841
|
-
.Button-
|
|
841
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cPrimary__67oy- {
|
|
842
842
|
color: var(--oziko-color-primary);
|
|
843
843
|
}
|
|
844
|
-
.Button-
|
|
844
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cPrimary__67oy-:hover {
|
|
845
845
|
color: var(--oziko-color-primary-light);
|
|
846
846
|
}
|
|
847
|
-
.Button-
|
|
847
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cDanger__HgXsJ {
|
|
848
848
|
color: var(--oziko-color-danger);
|
|
849
849
|
}
|
|
850
|
-
.Button-
|
|
850
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cDanger__HgXsJ:hover {
|
|
851
851
|
color: var(--oziko-color-danger-light);
|
|
852
852
|
}
|
|
853
|
-
.Button-
|
|
853
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cSuccess__KSilh {
|
|
854
854
|
color: var(--oziko-color-success);
|
|
855
855
|
}
|
|
856
|
-
.Button-
|
|
856
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cSuccess__KSilh:hover {
|
|
857
857
|
color: var(--oziko-color-success-light);
|
|
858
858
|
}
|
|
859
|
-
.Button-
|
|
859
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cDefault__q58J8 {
|
|
860
860
|
color: var(--oziko-color-font-primary);
|
|
861
861
|
}
|
|
862
|
-
.Button-
|
|
862
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cDefault__q58J8:hover {
|
|
863
863
|
color: var(--oziko-color-primary);
|
|
864
864
|
}
|
|
865
|
-
.Button-
|
|
865
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cSoft__dGX1F {
|
|
866
866
|
color: var(--oziko-color-font-primary);
|
|
867
867
|
}
|
|
868
|
-
.Button-
|
|
868
|
+
.Button-module_button__tvuyP.Button-module_vIcon__U67dE.Button-module_cSoft__dGX1F:hover {
|
|
869
869
|
color: var(--oziko-color-primary);
|
|
870
870
|
}
|
|
871
|
-
.Spinner-
|
|
871
|
+
.Spinner-module_container__tB7r0 {
|
|
872
872
|
position: relative;
|
|
873
873
|
}
|
|
874
|
-
.Spinner-
|
|
874
|
+
.Spinner-module_container__tB7r0.Spinner-module_overlay__lPgQp {
|
|
875
875
|
opacity: 0.4;
|
|
876
876
|
pointer-events: none;
|
|
877
877
|
}
|
|
878
|
-
.Spinner-
|
|
878
|
+
.Spinner-module_container__tB7r0.Spinner-module_overlay__lPgQp::before {
|
|
879
879
|
content: "";
|
|
880
880
|
position: absolute;
|
|
881
881
|
width: 100%;
|
|
@@ -884,61 +884,61 @@
|
|
|
884
884
|
opacity: var(--oziko-disabled-opacity);
|
|
885
885
|
}
|
|
886
886
|
|
|
887
|
-
.Spinner-
|
|
887
|
+
.Spinner-module_spinner__yumWc {
|
|
888
888
|
border-style: solid;
|
|
889
889
|
border-width: 2px;
|
|
890
890
|
border-radius: 50%;
|
|
891
891
|
animation: Spinner-module_spin__54H7M 2s linear infinite;
|
|
892
892
|
z-index: 1;
|
|
893
893
|
}
|
|
894
|
-
.Spinner-
|
|
894
|
+
.Spinner-module_spinner__yumWc.Spinner-module_absolute__z7wIz {
|
|
895
895
|
position: absolute;
|
|
896
896
|
}
|
|
897
|
-
.Spinner-
|
|
897
|
+
.Spinner-module_spinner__yumWc.Spinner-module_primary__bhdCC {
|
|
898
898
|
border-color: var(--oziko-color-primary) var(--oziko-color-primary) var(--oziko-color-primary) transparent;
|
|
899
899
|
}
|
|
900
|
-
.Spinner-
|
|
900
|
+
.Spinner-module_spinner__yumWc.Spinner-module_default__t61tG {
|
|
901
901
|
border-color: var(--oziko-color-default) var(--oziko-color-default) var(--oziko-color-default) transparent;
|
|
902
902
|
}
|
|
903
|
-
.Spinner-
|
|
903
|
+
.Spinner-module_spinner__yumWc.Spinner-module_success__RTTmC {
|
|
904
904
|
border-color: var(--oziko-color-success) var(--oziko-color-success) var(--oziko-color-success) transparent;
|
|
905
905
|
}
|
|
906
|
-
.Spinner-
|
|
906
|
+
.Spinner-module_spinner__yumWc.Spinner-module_danger__I8BqU {
|
|
907
907
|
border-color: var(--oziko-color-danger) var(--oziko-color-danger) var(--oziko-color-danger) transparent;
|
|
908
908
|
}
|
|
909
|
-
.Spinner-
|
|
909
|
+
.Spinner-module_spinner__yumWc.Spinner-module_soft__Ifigt {
|
|
910
910
|
border-color: var(--oziko-color-soft) var(--oziko-color-soft) var(--oziko-color-soft) transparent;
|
|
911
911
|
}
|
|
912
|
-
.Spinner-
|
|
912
|
+
.Spinner-module_spinner__yumWc.Spinner-module_transparent__r34vk {
|
|
913
913
|
border-color: transparent transparent transparent transparent;
|
|
914
914
|
}
|
|
915
|
-
.Spinner-
|
|
915
|
+
.Spinner-module_spinner__yumWc.Spinner-module_small__CXo3R {
|
|
916
916
|
width: 1.125rem;
|
|
917
917
|
height: 1.125rem;
|
|
918
918
|
border-width: 2px;
|
|
919
919
|
}
|
|
920
|
-
.Spinner-
|
|
920
|
+
.Spinner-module_spinner__yumWc.Spinner-module_medium__YuG3c {
|
|
921
921
|
width: 1.75rem;
|
|
922
922
|
height: 1.75rem;
|
|
923
923
|
border-width: 2px;
|
|
924
924
|
}
|
|
925
|
-
.Spinner-
|
|
925
|
+
.Spinner-module_spinner__yumWc.Spinner-module_large__M5A4y {
|
|
926
926
|
width: 2.5rem;
|
|
927
927
|
height: 2.5rem;
|
|
928
928
|
border-width: 3px;
|
|
929
929
|
}
|
|
930
|
-
.Spinner-
|
|
930
|
+
.Spinner-module_spinner__yumWc.Spinner-module_xlarge__SHZ1L {
|
|
931
931
|
width: 3.5rem;
|
|
932
932
|
height: 3.5rem;
|
|
933
933
|
border-width: 4px;
|
|
934
934
|
}
|
|
935
|
-
.Spinner-
|
|
935
|
+
.Spinner-module_spinner__yumWc.Spinner-module_fast__Rd281 {
|
|
936
936
|
animation-duration: 0.5s;
|
|
937
937
|
}
|
|
938
|
-
.Spinner-
|
|
938
|
+
.Spinner-module_spinner__yumWc.Spinner-module_normal__VR04D {
|
|
939
939
|
animation-duration: 1s;
|
|
940
940
|
}
|
|
941
|
-
.Spinner-
|
|
941
|
+
.Spinner-module_spinner__yumWc.Spinner-module_slow__JK54W {
|
|
942
942
|
animation-duration: 1.5s;
|
|
943
943
|
}
|
|
944
944
|
|
|
@@ -950,29 +950,29 @@
|
|
|
950
950
|
transform: rotate(360deg);
|
|
951
951
|
}
|
|
952
952
|
}
|
|
953
|
-
.Checkbox-
|
|
953
|
+
.Checkbox-module_container__v4ouY {
|
|
954
954
|
cursor: pointer;
|
|
955
955
|
}
|
|
956
|
-
.Checkbox-
|
|
956
|
+
.Checkbox-module_container__v4ouY.Checkbox-module_disabled__PAavY {
|
|
957
957
|
opacity: var(--oziko-disabled-opacity);
|
|
958
958
|
cursor: default;
|
|
959
959
|
}
|
|
960
|
-
.Checkbox-
|
|
960
|
+
.Checkbox-module_container__v4ouY.Checkbox-module_disabled__PAavY label {
|
|
961
961
|
cursor: default !important;
|
|
962
962
|
}
|
|
963
|
-
.Checkbox-
|
|
963
|
+
.Checkbox-module_container__v4ouY:not(.Checkbox-module_disabled__PAavY):hover .Checkbox-module_checkbox__tiPi8 label {
|
|
964
964
|
border-color: var(--oziko-color-primary);
|
|
965
965
|
}
|
|
966
|
-
.Checkbox-
|
|
966
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8 {
|
|
967
967
|
display: flex;
|
|
968
968
|
}
|
|
969
|
-
.Checkbox-
|
|
969
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8.Checkbox-module_indeterminate__GxPm3 label::after {
|
|
970
970
|
content: "-";
|
|
971
971
|
}
|
|
972
|
-
.Checkbox-
|
|
972
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8 input[type=checkbox] {
|
|
973
973
|
display: none;
|
|
974
974
|
}
|
|
975
|
-
.Checkbox-
|
|
975
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8 label {
|
|
976
976
|
display: flex;
|
|
977
977
|
align-items: center;
|
|
978
978
|
justify-content: center;
|
|
@@ -983,21 +983,21 @@
|
|
|
983
983
|
cursor: pointer;
|
|
984
984
|
transition: all var(--oziko-transition-duration) ease;
|
|
985
985
|
}
|
|
986
|
-
.Checkbox-
|
|
986
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8 label::after {
|
|
987
987
|
content: "✓";
|
|
988
988
|
font-size: var(--oziko-font-size-md);
|
|
989
989
|
color: white;
|
|
990
990
|
opacity: 0;
|
|
991
991
|
transition: opacity var(--oziko-transition-duration) ease;
|
|
992
992
|
}
|
|
993
|
-
.Checkbox-
|
|
993
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8 input[type=checkbox]:checked + label {
|
|
994
994
|
background-color: var(--oziko-color-primary);
|
|
995
995
|
border-color: var(--oziko-color-primary);
|
|
996
996
|
}
|
|
997
|
-
.Checkbox-
|
|
997
|
+
.Checkbox-module_container__v4ouY .Checkbox-module_checkbox__tiPi8 input[type=checkbox]:checked + label::after {
|
|
998
998
|
opacity: 1;
|
|
999
999
|
}
|
|
1000
|
-
.Chip-
|
|
1000
|
+
.Chip-module_chip__DLgqh {
|
|
1001
1001
|
background-color: var(--oziko-color-input-background);
|
|
1002
1002
|
border-radius: var(--oziko-border-radius-md);
|
|
1003
1003
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -1007,26 +1007,26 @@
|
|
|
1007
1007
|
padding: 6px 6px 6px var(--oziko-padding-md);
|
|
1008
1008
|
font-size: var(--oziko-font-size-md);
|
|
1009
1009
|
}
|
|
1010
|
-
.Chip-
|
|
1010
|
+
.Chip-module_chip__DLgqh input {
|
|
1011
1011
|
padding: 0;
|
|
1012
1012
|
}
|
|
1013
|
-
.Chip-
|
|
1013
|
+
.Chip-module_chip__DLgqh.Chip-module_outlined__1seXI {
|
|
1014
1014
|
border: 1px solid var(--oziko-color-border);
|
|
1015
1015
|
background-color: transparent;
|
|
1016
1016
|
}
|
|
1017
|
-
.Chip-
|
|
1017
|
+
.Chip-module_chip__DLgqh.Chip-module_filled__iKdFt {
|
|
1018
1018
|
background-color: var(--oziko-color-soft-hover);
|
|
1019
1019
|
border: none;
|
|
1020
1020
|
}
|
|
1021
|
-
.Chip-
|
|
1021
|
+
.Chip-module_chip__DLgqh.Chip-module_noButton__nEh-- {
|
|
1022
1022
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
1023
1023
|
}
|
|
1024
|
-
.Chip-
|
|
1024
|
+
.Chip-module_chip__DLgqh .Chip-module_closeButton__83TVb {
|
|
1025
1025
|
border: 0;
|
|
1026
1026
|
padding: 0;
|
|
1027
1027
|
height: var(--oziko-icon-size-md);
|
|
1028
1028
|
}
|
|
1029
|
-
.Color-
|
|
1029
|
+
.Color-module_color__icl6l input {
|
|
1030
1030
|
cursor: pointer;
|
|
1031
1031
|
-webkit-appearance: none;
|
|
1032
1032
|
padding: 0;
|
|
@@ -1036,56 +1036,56 @@
|
|
|
1036
1036
|
border-radius: var(--oziko-border-radius-circle);
|
|
1037
1037
|
border: var(--oziko-border-default);
|
|
1038
1038
|
}
|
|
1039
|
-
.Color-
|
|
1039
|
+
.Color-module_color__icl6l input::-webkit-color-swatch, .Color-module_color__icl6l input::-webkit-color-swatch-wrapper {
|
|
1040
1040
|
border: none;
|
|
1041
1041
|
border-radius: var(--oziko-border-radius-circle);
|
|
1042
1042
|
padding: 0;
|
|
1043
1043
|
}
|
|
1044
|
-
.DashboardItem-
|
|
1044
|
+
.DashboardItem-module_container__Cu2fp .DashboardItem-module_settingButton__EVb24 {
|
|
1045
1045
|
width: 35px;
|
|
1046
1046
|
height: 35px;
|
|
1047
1047
|
}
|
|
1048
|
-
.DashboardItem-
|
|
1048
|
+
.DashboardItem-module_container__Cu2fp .DashboardItem-module_header__1Ltls {
|
|
1049
1049
|
border-bottom: var(--oziko-border-default);
|
|
1050
1050
|
}
|
|
1051
|
-
.DashboardItem-
|
|
1052
|
-
.DashboardItem-
|
|
1051
|
+
.DashboardItem-module_container__Cu2fp .DashboardItem-module_header__1Ltls,
|
|
1052
|
+
.DashboardItem-module_container__Cu2fp .DashboardItem-module_chartContainer__xibFh {
|
|
1053
1053
|
padding: var(--oziko-padding-xl);
|
|
1054
1054
|
}
|
|
1055
|
-
.DashboardItem-
|
|
1055
|
+
.DashboardItem-module_container__Cu2fp .DashboardItem-module_chartContainer__xibFh {
|
|
1056
1056
|
height: 100%;
|
|
1057
1057
|
width: 100%;
|
|
1058
1058
|
}
|
|
1059
|
-
.DashboardItem-
|
|
1059
|
+
.DashboardItem-module_container__Cu2fp .DashboardItem-module_chart__a5kGE {
|
|
1060
1060
|
height: 100% !important;
|
|
1061
1061
|
width: 100% !important;
|
|
1062
1062
|
}
|
|
1063
|
-
.Section-
|
|
1063
|
+
.Section-module_sectionContainer__qECl2 {
|
|
1064
1064
|
background-color: var(--oziko-color-menu-background);
|
|
1065
1065
|
}
|
|
1066
|
-
.Section-
|
|
1067
|
-
.Section-
|
|
1068
|
-
.Section-
|
|
1066
|
+
.Section-module_sectionContainer__qECl2 .Section-module_header__1oDhY,
|
|
1067
|
+
.Section-module_sectionContainer__qECl2 .Section-module_content__3PfOv,
|
|
1068
|
+
.Section-module_sectionContainer__qECl2 .Section-module_footer__KPdum {
|
|
1069
1069
|
padding: var(--oziko-padding-xl);
|
|
1070
1070
|
color: var(--oziko-font-color);
|
|
1071
1071
|
font-size: var(--oziko-font-size-md);
|
|
1072
1072
|
font-weight: 700;
|
|
1073
1073
|
}
|
|
1074
|
-
.Section-
|
|
1074
|
+
.Section-module_sectionContainer__qECl2 .Section-module_header__1oDhY {
|
|
1075
1075
|
display: flex;
|
|
1076
1076
|
align-items: center;
|
|
1077
1077
|
justify-content: space-between;
|
|
1078
1078
|
border-radius: var(--oziko-border-radius-md) var(--oziko-border-radius-md) 0 0;
|
|
1079
1079
|
border-bottom: 1px solid var(--oziko-color-border);
|
|
1080
1080
|
}
|
|
1081
|
-
.Section-
|
|
1081
|
+
.Section-module_sectionContainer__qECl2 .Section-module_content__3PfOv {
|
|
1082
1082
|
flex: 1;
|
|
1083
1083
|
}
|
|
1084
|
-
.Section-
|
|
1084
|
+
.Section-module_sectionContainer__qECl2 .Section-module_footer__KPdum {
|
|
1085
1085
|
border-radius: 0 0 var(--oziko-border-radius-md) var(--oziko-border-radius-md);
|
|
1086
1086
|
border-top: 1px solid var(--oziko-color-border);
|
|
1087
1087
|
}
|
|
1088
|
-
.DatePicker-
|
|
1088
|
+
.DatePicker-module_datePicker__9BVwE {
|
|
1089
1089
|
border: none !important;
|
|
1090
1090
|
box-shadow: none !important;
|
|
1091
1091
|
outline: none;
|
|
@@ -1095,31 +1095,31 @@
|
|
|
1095
1095
|
box-shadow: none;
|
|
1096
1096
|
width: 100%;
|
|
1097
1097
|
}
|
|
1098
|
-
.DatePicker-
|
|
1098
|
+
.DatePicker-module_datePicker__9BVwE input {
|
|
1099
1099
|
font-size: var(--oziko-font-size-base);
|
|
1100
1100
|
height: 16px !important;
|
|
1101
1101
|
background-color: transparent;
|
|
1102
1102
|
line-height: unset !important;
|
|
1103
1103
|
}
|
|
1104
|
-
.DatePicker-
|
|
1104
|
+
.DatePicker-module_datePicker__9BVwE .ant-picker-input .ant-picker-clear {
|
|
1105
1105
|
top: 56%;
|
|
1106
1106
|
inset-inline-end: 1;
|
|
1107
1107
|
}
|
|
1108
|
-
.Directory-
|
|
1108
|
+
.Directory-module_moreIcon__V7kXf {
|
|
1109
1109
|
cursor: pointer;
|
|
1110
1110
|
}
|
|
1111
1111
|
|
|
1112
|
-
.Directory-
|
|
1112
|
+
.Directory-module_directory__koFRz {
|
|
1113
1113
|
font-weight: 600;
|
|
1114
1114
|
}
|
|
1115
|
-
.Directory-
|
|
1115
|
+
.Directory-module_directory__koFRz .Directory-module_path__lw-xg {
|
|
1116
1116
|
cursor: pointer;
|
|
1117
1117
|
}
|
|
1118
|
-
.Popover-
|
|
1118
|
+
.Popover-module_container__-idjE {
|
|
1119
1119
|
height: max-content;
|
|
1120
1120
|
}
|
|
1121
1121
|
|
|
1122
|
-
.Popover-
|
|
1122
|
+
.Popover-module_content__TTNdo {
|
|
1123
1123
|
position: absolute;
|
|
1124
1124
|
box-shadow: var(--box-shadow);
|
|
1125
1125
|
padding: var(--oziko-padding-md);
|
|
@@ -1127,75 +1127,75 @@
|
|
|
1127
1127
|
background: var(--oziko-color-menu-background);
|
|
1128
1128
|
}
|
|
1129
1129
|
|
|
1130
|
-
.Popover-
|
|
1130
|
+
.Popover-module_arrow__ODp-E {
|
|
1131
1131
|
position: absolute;
|
|
1132
1132
|
width: 8px;
|
|
1133
1133
|
height: 8px;
|
|
1134
1134
|
background: inherit;
|
|
1135
1135
|
transform: rotate(45deg);
|
|
1136
1136
|
}
|
|
1137
|
-
.Popover-
|
|
1137
|
+
.Popover-module_arrow__ODp-E.Popover-module_bottom__Dq-dO, .Popover-module_arrow__ODp-E.Popover-module_bottomStart__eZAKA, .Popover-module_arrow__ODp-E.Popover-module_bottomEnd__YAoIK {
|
|
1138
1138
|
bottom: -4px;
|
|
1139
1139
|
}
|
|
1140
|
-
.Popover-
|
|
1140
|
+
.Popover-module_arrow__ODp-E.Popover-module_bottom__Dq-dO {
|
|
1141
1141
|
left: 50%;
|
|
1142
1142
|
margin-left: -4px;
|
|
1143
1143
|
}
|
|
1144
|
-
.Popover-
|
|
1144
|
+
.Popover-module_arrow__ODp-E.Popover-module_bottomStart__eZAKA {
|
|
1145
1145
|
left: 12px;
|
|
1146
1146
|
}
|
|
1147
|
-
.Popover-
|
|
1147
|
+
.Popover-module_arrow__ODp-E.Popover-module_bottomEnd__YAoIK {
|
|
1148
1148
|
right: 12px;
|
|
1149
1149
|
}
|
|
1150
|
-
.Popover-
|
|
1150
|
+
.Popover-module_arrow__ODp-E.Popover-module_top__gphPv, .Popover-module_arrow__ODp-E.Popover-module_topStart__UL0EG, .Popover-module_arrow__ODp-E.Popover-module_topEnd__rr7Hq {
|
|
1151
1151
|
top: -4px;
|
|
1152
1152
|
}
|
|
1153
|
-
.Popover-
|
|
1153
|
+
.Popover-module_arrow__ODp-E.Popover-module_top__gphPv {
|
|
1154
1154
|
left: 50%;
|
|
1155
1155
|
margin-left: -4px;
|
|
1156
1156
|
}
|
|
1157
|
-
.Popover-
|
|
1157
|
+
.Popover-module_arrow__ODp-E.Popover-module_topStart__UL0EG {
|
|
1158
1158
|
left: 12px;
|
|
1159
1159
|
}
|
|
1160
|
-
.Popover-
|
|
1160
|
+
.Popover-module_arrow__ODp-E.Popover-module_topEnd__rr7Hq {
|
|
1161
1161
|
right: 12px;
|
|
1162
1162
|
}
|
|
1163
|
-
.Popover-
|
|
1163
|
+
.Popover-module_arrow__ODp-E.Popover-module_right__gx1MF, .Popover-module_arrow__ODp-E.Popover-module_rightStart__jScCt, .Popover-module_arrow__ODp-E.Popover-module_rightEnd__FI5TB {
|
|
1164
1164
|
right: -4px;
|
|
1165
1165
|
}
|
|
1166
|
-
.Popover-
|
|
1166
|
+
.Popover-module_arrow__ODp-E.Popover-module_right__gx1MF {
|
|
1167
1167
|
top: 50%;
|
|
1168
1168
|
margin-top: -4px;
|
|
1169
1169
|
}
|
|
1170
|
-
.Popover-
|
|
1170
|
+
.Popover-module_arrow__ODp-E.Popover-module_rightStart__jScCt {
|
|
1171
1171
|
top: 14%;
|
|
1172
1172
|
}
|
|
1173
|
-
.Popover-
|
|
1173
|
+
.Popover-module_arrow__ODp-E.Popover-module_rightEnd__FI5TB {
|
|
1174
1174
|
bottom: 14%;
|
|
1175
1175
|
}
|
|
1176
|
-
.Popover-
|
|
1176
|
+
.Popover-module_arrow__ODp-E.Popover-module_left__0Ng53, .Popover-module_arrow__ODp-E.Popover-module_leftStart__OsJTm, .Popover-module_arrow__ODp-E.Popover-module_leftEnd__lr3aT {
|
|
1177
1177
|
left: -4px;
|
|
1178
1178
|
}
|
|
1179
|
-
.Popover-
|
|
1179
|
+
.Popover-module_arrow__ODp-E.Popover-module_left__0Ng53 {
|
|
1180
1180
|
top: 50%;
|
|
1181
1181
|
margin-top: -4px;
|
|
1182
1182
|
}
|
|
1183
|
-
.Popover-
|
|
1183
|
+
.Popover-module_arrow__ODp-E.Popover-module_leftStart__OsJTm {
|
|
1184
1184
|
top: 14%;
|
|
1185
1185
|
}
|
|
1186
|
-
.Popover-
|
|
1186
|
+
.Popover-module_arrow__ODp-E.Popover-module_leftEnd__lr3aT {
|
|
1187
1187
|
bottom: 14%;
|
|
1188
1188
|
}
|
|
1189
|
-
.Portal-
|
|
1189
|
+
.Portal-module_container__QcS9f {
|
|
1190
1190
|
position: absolute;
|
|
1191
1191
|
width: 100vw;
|
|
1192
1192
|
height: 100vh;
|
|
1193
1193
|
top: 0;
|
|
1194
1194
|
}
|
|
1195
|
-
.DropList-
|
|
1195
|
+
.DropList-module_container__OfA7W {
|
|
1196
1196
|
overflow: scroll;
|
|
1197
1197
|
}
|
|
1198
|
-
.DropList-
|
|
1198
|
+
.DropList-module_container__OfA7W button {
|
|
1199
1199
|
width: 30px;
|
|
1200
1200
|
min-width: 30px !important;
|
|
1201
1201
|
height: 30px;
|
|
@@ -1204,10 +1204,10 @@
|
|
|
1204
1204
|
color: var(--oziko-color-font-primary) !important;
|
|
1205
1205
|
border: 1px solid #eeeeee !important;
|
|
1206
1206
|
}
|
|
1207
|
-
.DropList-
|
|
1207
|
+
.DropList-module_container__OfA7W button.DropList-module_active__3guYr {
|
|
1208
1208
|
background: transparent !important;
|
|
1209
1209
|
}
|
|
1210
|
-
.InputHeader-
|
|
1210
|
+
.InputHeader-module_inputHeaderContainer__ozfOk {
|
|
1211
1211
|
background-color: var(--oziko-color-input-background);
|
|
1212
1212
|
border-radius: var(--oziko-border-radius-md);
|
|
1213
1213
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -1215,111 +1215,111 @@
|
|
|
1215
1215
|
padding: var(--oziko-padding-md);
|
|
1216
1216
|
font-size: var(--oziko-font-size-md);
|
|
1217
1217
|
}
|
|
1218
|
-
.InputHeader-
|
|
1218
|
+
.InputHeader-module_inputHeaderContainer__ozfOk input {
|
|
1219
1219
|
padding: 0;
|
|
1220
1220
|
}
|
|
1221
|
-
.Json-
|
|
1221
|
+
.Json-module_jsonContainer__cv8rx {
|
|
1222
1222
|
color: #000000;
|
|
1223
1223
|
font-size: var(--oziko-font-size-md);
|
|
1224
1224
|
}
|
|
1225
|
-
.ListRow-
|
|
1225
|
+
.ListRow-module_rowContainer__5LCRb {
|
|
1226
1226
|
padding: var(--oziko-padding-md);
|
|
1227
1227
|
}
|
|
1228
1228
|
/* required styles */
|
|
1229
1229
|
|
|
1230
|
-
.
|
|
1231
|
-
.
|
|
1232
|
-
.
|
|
1233
|
-
.
|
|
1234
|
-
.
|
|
1235
|
-
.
|
|
1236
|
-
.
|
|
1237
|
-
.
|
|
1238
|
-
.
|
|
1239
|
-
.
|
|
1230
|
+
.leaflet-pane,
|
|
1231
|
+
.leaflet-tile,
|
|
1232
|
+
.leaflet-marker-icon,
|
|
1233
|
+
.leaflet-marker-shadow,
|
|
1234
|
+
.leaflet-tile-container,
|
|
1235
|
+
.leaflet-pane > svg,
|
|
1236
|
+
.leaflet-pane > canvas,
|
|
1237
|
+
.leaflet-zoom-box,
|
|
1238
|
+
.leaflet-image-layer,
|
|
1239
|
+
.leaflet-layer {
|
|
1240
1240
|
position: absolute;
|
|
1241
1241
|
left: 0;
|
|
1242
1242
|
top: 0;
|
|
1243
1243
|
}
|
|
1244
|
-
.
|
|
1244
|
+
.leaflet-container {
|
|
1245
1245
|
overflow: hidden;
|
|
1246
1246
|
}
|
|
1247
|
-
.
|
|
1248
|
-
.
|
|
1249
|
-
.
|
|
1247
|
+
.leaflet-tile,
|
|
1248
|
+
.leaflet-marker-icon,
|
|
1249
|
+
.leaflet-marker-shadow {
|
|
1250
1250
|
-webkit-user-select: none;
|
|
1251
1251
|
-moz-user-select: none;
|
|
1252
1252
|
user-select: none;
|
|
1253
1253
|
-webkit-user-drag: none;
|
|
1254
1254
|
}
|
|
1255
1255
|
/* Prevents IE11 from highlighting tiles in blue */
|
|
1256
|
-
.
|
|
1256
|
+
.leaflet-tile::selection {
|
|
1257
1257
|
background: transparent;
|
|
1258
1258
|
}
|
|
1259
1259
|
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
|
|
1260
|
-
.
|
|
1260
|
+
.leaflet-safari .leaflet-tile {
|
|
1261
1261
|
image-rendering: -webkit-optimize-contrast;
|
|
1262
1262
|
}
|
|
1263
1263
|
/* hack that prevents hw layers "stretching" when loading new tiles */
|
|
1264
|
-
.
|
|
1264
|
+
.leaflet-safari .leaflet-tile-container {
|
|
1265
1265
|
width: 1600px;
|
|
1266
1266
|
height: 1600px;
|
|
1267
1267
|
-webkit-transform-origin: 0 0;
|
|
1268
1268
|
}
|
|
1269
|
-
.
|
|
1270
|
-
.
|
|
1269
|
+
.leaflet-marker-icon,
|
|
1270
|
+
.leaflet-marker-shadow {
|
|
1271
1271
|
display: block;
|
|
1272
1272
|
}
|
|
1273
1273
|
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
|
|
1274
1274
|
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
|
|
1275
|
-
.
|
|
1275
|
+
.leaflet-container .leaflet-overlay-pane svg {
|
|
1276
1276
|
max-width: none !important;
|
|
1277
1277
|
max-height: none !important;
|
|
1278
1278
|
}
|
|
1279
|
-
.
|
|
1280
|
-
.
|
|
1281
|
-
.
|
|
1282
|
-
.
|
|
1283
|
-
.
|
|
1279
|
+
.leaflet-container .leaflet-marker-pane img,
|
|
1280
|
+
.leaflet-container .leaflet-shadow-pane img,
|
|
1281
|
+
.leaflet-container .leaflet-tile-pane img,
|
|
1282
|
+
.leaflet-container img.leaflet-image-layer,
|
|
1283
|
+
.leaflet-container .leaflet-tile {
|
|
1284
1284
|
max-width: none !important;
|
|
1285
1285
|
max-height: none !important;
|
|
1286
1286
|
width: auto;
|
|
1287
1287
|
padding: 0;
|
|
1288
1288
|
}
|
|
1289
1289
|
|
|
1290
|
-
.
|
|
1290
|
+
.leaflet-container img.leaflet-tile {
|
|
1291
1291
|
/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
|
|
1292
1292
|
mix-blend-mode: plus-lighter;
|
|
1293
1293
|
}
|
|
1294
1294
|
|
|
1295
|
-
.
|
|
1295
|
+
.leaflet-container.leaflet-touch-zoom {
|
|
1296
1296
|
-ms-touch-action: pan-x pan-y;
|
|
1297
1297
|
touch-action: pan-x pan-y;
|
|
1298
1298
|
}
|
|
1299
|
-
.
|
|
1299
|
+
.leaflet-container.leaflet-touch-drag {
|
|
1300
1300
|
-ms-touch-action: pinch-zoom;
|
|
1301
1301
|
/* Fallback for FF which doesn't support pinch-zoom */
|
|
1302
1302
|
touch-action: none;
|
|
1303
1303
|
touch-action: pinch-zoom;
|
|
1304
1304
|
}
|
|
1305
|
-
.
|
|
1305
|
+
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
|
|
1306
1306
|
-ms-touch-action: none;
|
|
1307
1307
|
touch-action: none;
|
|
1308
1308
|
}
|
|
1309
|
-
.
|
|
1309
|
+
.leaflet-container {
|
|
1310
1310
|
-webkit-tap-highlight-color: transparent;
|
|
1311
1311
|
}
|
|
1312
|
-
.
|
|
1312
|
+
.leaflet-container a {
|
|
1313
1313
|
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
|
|
1314
1314
|
}
|
|
1315
|
-
.
|
|
1315
|
+
.leaflet-tile {
|
|
1316
1316
|
filter: inherit;
|
|
1317
1317
|
visibility: hidden;
|
|
1318
1318
|
}
|
|
1319
|
-
.
|
|
1319
|
+
.leaflet-tile-loaded {
|
|
1320
1320
|
visibility: inherit;
|
|
1321
1321
|
}
|
|
1322
|
-
.
|
|
1322
|
+
.leaflet-zoom-box {
|
|
1323
1323
|
width: 0;
|
|
1324
1324
|
height: 0;
|
|
1325
1325
|
-moz-box-sizing: border-box;
|
|
@@ -1327,27 +1327,27 @@
|
|
|
1327
1327
|
z-index: 800;
|
|
1328
1328
|
}
|
|
1329
1329
|
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
|
|
1330
|
-
.
|
|
1330
|
+
.leaflet-overlay-pane svg {
|
|
1331
1331
|
-moz-user-select: none;
|
|
1332
1332
|
}
|
|
1333
1333
|
|
|
1334
|
-
.
|
|
1334
|
+
.leaflet-pane { z-index: 400; }
|
|
1335
1335
|
|
|
1336
|
-
.
|
|
1337
|
-
.
|
|
1338
|
-
.
|
|
1339
|
-
.
|
|
1340
|
-
.
|
|
1341
|
-
.
|
|
1336
|
+
.leaflet-tile-pane { z-index: 200; }
|
|
1337
|
+
.leaflet-overlay-pane { z-index: 400; }
|
|
1338
|
+
.leaflet-shadow-pane { z-index: 500; }
|
|
1339
|
+
.leaflet-marker-pane { z-index: 600; }
|
|
1340
|
+
.leaflet-tooltip-pane { z-index: 650; }
|
|
1341
|
+
.leaflet-popup-pane { z-index: 700; }
|
|
1342
1342
|
|
|
1343
|
-
.
|
|
1344
|
-
.
|
|
1343
|
+
.leaflet-map-pane canvas { z-index: 100; }
|
|
1344
|
+
.leaflet-map-pane svg { z-index: 200; }
|
|
1345
1345
|
|
|
1346
|
-
.
|
|
1346
|
+
.leaflet-vml-shape {
|
|
1347
1347
|
width: 1px;
|
|
1348
1348
|
height: 1px;
|
|
1349
1349
|
}
|
|
1350
|
-
.
|
|
1350
|
+
.lvml {
|
|
1351
1351
|
behavior: url(#default#VML);
|
|
1352
1352
|
display: inline-block;
|
|
1353
1353
|
position: absolute;
|
|
@@ -1356,109 +1356,109 @@
|
|
|
1356
1356
|
|
|
1357
1357
|
/* control positioning */
|
|
1358
1358
|
|
|
1359
|
-
.
|
|
1359
|
+
.leaflet-control {
|
|
1360
1360
|
position: relative;
|
|
1361
1361
|
z-index: 800;
|
|
1362
1362
|
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
1363
1363
|
pointer-events: auto;
|
|
1364
1364
|
}
|
|
1365
|
-
.
|
|
1366
|
-
.
|
|
1365
|
+
.leaflet-top,
|
|
1366
|
+
.leaflet-bottom {
|
|
1367
1367
|
position: absolute;
|
|
1368
1368
|
z-index: 1000;
|
|
1369
1369
|
pointer-events: none;
|
|
1370
1370
|
}
|
|
1371
|
-
.
|
|
1371
|
+
.leaflet-top {
|
|
1372
1372
|
top: 0;
|
|
1373
1373
|
}
|
|
1374
|
-
.
|
|
1374
|
+
.leaflet-right {
|
|
1375
1375
|
right: 0;
|
|
1376
1376
|
}
|
|
1377
|
-
.
|
|
1377
|
+
.leaflet-bottom {
|
|
1378
1378
|
bottom: 0;
|
|
1379
1379
|
}
|
|
1380
|
-
.
|
|
1380
|
+
.leaflet-left {
|
|
1381
1381
|
left: 0;
|
|
1382
1382
|
}
|
|
1383
|
-
.
|
|
1383
|
+
.leaflet-control {
|
|
1384
1384
|
float: left;
|
|
1385
1385
|
clear: both;
|
|
1386
1386
|
}
|
|
1387
|
-
.
|
|
1387
|
+
.leaflet-right .leaflet-control {
|
|
1388
1388
|
float: right;
|
|
1389
1389
|
}
|
|
1390
|
-
.
|
|
1390
|
+
.leaflet-top .leaflet-control {
|
|
1391
1391
|
margin-top: 10px;
|
|
1392
1392
|
}
|
|
1393
|
-
.
|
|
1393
|
+
.leaflet-bottom .leaflet-control {
|
|
1394
1394
|
margin-bottom: 10px;
|
|
1395
1395
|
}
|
|
1396
|
-
.
|
|
1396
|
+
.leaflet-left .leaflet-control {
|
|
1397
1397
|
margin-left: 10px;
|
|
1398
1398
|
}
|
|
1399
|
-
.
|
|
1399
|
+
.leaflet-right .leaflet-control {
|
|
1400
1400
|
margin-right: 10px;
|
|
1401
1401
|
}
|
|
1402
1402
|
|
|
1403
1403
|
|
|
1404
1404
|
/* zoom and fade animations */
|
|
1405
1405
|
|
|
1406
|
-
.
|
|
1406
|
+
.leaflet-fade-anim .leaflet-popup {
|
|
1407
1407
|
opacity: 0;
|
|
1408
1408
|
-webkit-transition: opacity 0.2s linear;
|
|
1409
1409
|
-moz-transition: opacity 0.2s linear;
|
|
1410
1410
|
transition: opacity 0.2s linear;
|
|
1411
1411
|
}
|
|
1412
|
-
.
|
|
1412
|
+
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
|
|
1413
1413
|
opacity: 1;
|
|
1414
1414
|
}
|
|
1415
|
-
.
|
|
1415
|
+
.leaflet-zoom-animated {
|
|
1416
1416
|
-webkit-transform-origin: 0 0;
|
|
1417
1417
|
-ms-transform-origin: 0 0;
|
|
1418
1418
|
transform-origin: 0 0;
|
|
1419
1419
|
}
|
|
1420
|
-
|
|
1420
|
+
svg.leaflet-zoom-animated {
|
|
1421
1421
|
will-change: transform;
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
-
.
|
|
1424
|
+
.leaflet-zoom-anim .leaflet-zoom-animated {
|
|
1425
1425
|
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
1426
1426
|
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
1427
1427
|
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
|
|
1428
1428
|
}
|
|
1429
|
-
.
|
|
1430
|
-
.
|
|
1429
|
+
.leaflet-zoom-anim .leaflet-tile,
|
|
1430
|
+
.leaflet-pan-anim .leaflet-tile {
|
|
1431
1431
|
-webkit-transition: none;
|
|
1432
1432
|
-moz-transition: none;
|
|
1433
1433
|
transition: none;
|
|
1434
1434
|
}
|
|
1435
1435
|
|
|
1436
|
-
.
|
|
1436
|
+
.leaflet-zoom-anim .leaflet-zoom-hide {
|
|
1437
1437
|
visibility: hidden;
|
|
1438
1438
|
}
|
|
1439
1439
|
|
|
1440
1440
|
|
|
1441
1441
|
/* cursors */
|
|
1442
1442
|
|
|
1443
|
-
.
|
|
1443
|
+
.leaflet-interactive {
|
|
1444
1444
|
cursor: pointer;
|
|
1445
1445
|
}
|
|
1446
|
-
.
|
|
1446
|
+
.leaflet-grab {
|
|
1447
1447
|
cursor: -webkit-grab;
|
|
1448
1448
|
cursor: -moz-grab;
|
|
1449
1449
|
cursor: grab;
|
|
1450
1450
|
}
|
|
1451
|
-
.
|
|
1452
|
-
.
|
|
1451
|
+
.leaflet-crosshair,
|
|
1452
|
+
.leaflet-crosshair .leaflet-interactive {
|
|
1453
1453
|
cursor: crosshair;
|
|
1454
1454
|
}
|
|
1455
|
-
.
|
|
1456
|
-
.
|
|
1455
|
+
.leaflet-popup-pane,
|
|
1456
|
+
.leaflet-control {
|
|
1457
1457
|
cursor: auto;
|
|
1458
1458
|
}
|
|
1459
|
-
.
|
|
1460
|
-
.
|
|
1461
|
-
.
|
|
1459
|
+
.leaflet-dragging .leaflet-grab,
|
|
1460
|
+
.leaflet-dragging .leaflet-grab .leaflet-interactive,
|
|
1461
|
+
.leaflet-dragging .leaflet-marker-draggable {
|
|
1462
1462
|
cursor: move;
|
|
1463
1463
|
cursor: -webkit-grabbing;
|
|
1464
1464
|
cursor: -moz-grabbing;
|
|
@@ -1466,39 +1466,39 @@
|
|
|
1466
1466
|
}
|
|
1467
1467
|
|
|
1468
1468
|
/* marker & overlays interactivity */
|
|
1469
|
-
.
|
|
1470
|
-
.
|
|
1471
|
-
.
|
|
1472
|
-
.
|
|
1473
|
-
.
|
|
1469
|
+
.leaflet-marker-icon,
|
|
1470
|
+
.leaflet-marker-shadow,
|
|
1471
|
+
.leaflet-image-layer,
|
|
1472
|
+
.leaflet-pane > svg path,
|
|
1473
|
+
.leaflet-tile-container {
|
|
1474
1474
|
pointer-events: none;
|
|
1475
1475
|
}
|
|
1476
1476
|
|
|
1477
|
-
.
|
|
1478
|
-
.
|
|
1479
|
-
.
|
|
1480
|
-
|
|
1477
|
+
.leaflet-marker-icon.leaflet-interactive,
|
|
1478
|
+
.leaflet-image-layer.leaflet-interactive,
|
|
1479
|
+
.leaflet-pane > svg path.leaflet-interactive,
|
|
1480
|
+
svg.leaflet-image-layer.leaflet-interactive path {
|
|
1481
1481
|
pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
|
|
1482
1482
|
pointer-events: auto;
|
|
1483
1483
|
}
|
|
1484
1484
|
|
|
1485
1485
|
/* visual tweaks */
|
|
1486
1486
|
|
|
1487
|
-
.
|
|
1487
|
+
.leaflet-container {
|
|
1488
1488
|
background: #ddd;
|
|
1489
1489
|
outline-offset: 1px;
|
|
1490
1490
|
}
|
|
1491
|
-
.
|
|
1491
|
+
.leaflet-container a {
|
|
1492
1492
|
color: #0078A8;
|
|
1493
1493
|
}
|
|
1494
|
-
.
|
|
1494
|
+
.leaflet-zoom-box {
|
|
1495
1495
|
border: 2px dotted #38f;
|
|
1496
1496
|
background: rgba(255,255,255,0.5);
|
|
1497
1497
|
}
|
|
1498
1498
|
|
|
1499
1499
|
|
|
1500
1500
|
/* general typography */
|
|
1501
|
-
.
|
|
1501
|
+
.leaflet-container {
|
|
1502
1502
|
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
1503
1503
|
font-size: 12px;
|
|
1504
1504
|
font-size: 0.75rem;
|
|
@@ -1508,11 +1508,11 @@
|
|
|
1508
1508
|
|
|
1509
1509
|
/* general toolbar styles */
|
|
1510
1510
|
|
|
1511
|
-
.
|
|
1511
|
+
.leaflet-bar {
|
|
1512
1512
|
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
|
|
1513
1513
|
border-radius: 4px;
|
|
1514
1514
|
}
|
|
1515
|
-
.
|
|
1515
|
+
.leaflet-bar a {
|
|
1516
1516
|
background-color: #fff;
|
|
1517
1517
|
border-bottom: 1px solid #ccc;
|
|
1518
1518
|
width: 26px;
|
|
@@ -1523,151 +1523,151 @@
|
|
|
1523
1523
|
text-decoration: none;
|
|
1524
1524
|
color: black;
|
|
1525
1525
|
}
|
|
1526
|
-
.
|
|
1527
|
-
.
|
|
1526
|
+
.leaflet-bar a,
|
|
1527
|
+
.leaflet-control-layers-toggle {
|
|
1528
1528
|
background-position: 50% 50%;
|
|
1529
1529
|
background-repeat: no-repeat;
|
|
1530
1530
|
display: block;
|
|
1531
1531
|
}
|
|
1532
|
-
.
|
|
1533
|
-
.
|
|
1532
|
+
.leaflet-bar a:hover,
|
|
1533
|
+
.leaflet-bar a:focus {
|
|
1534
1534
|
background-color: #f4f4f4;
|
|
1535
1535
|
}
|
|
1536
|
-
.
|
|
1536
|
+
.leaflet-bar a:first-child {
|
|
1537
1537
|
border-top-left-radius: 4px;
|
|
1538
1538
|
border-top-right-radius: 4px;
|
|
1539
1539
|
}
|
|
1540
|
-
.
|
|
1540
|
+
.leaflet-bar a:last-child {
|
|
1541
1541
|
border-bottom-left-radius: 4px;
|
|
1542
1542
|
border-bottom-right-radius: 4px;
|
|
1543
1543
|
border-bottom: none;
|
|
1544
1544
|
}
|
|
1545
|
-
.
|
|
1545
|
+
.leaflet-bar a.leaflet-disabled {
|
|
1546
1546
|
cursor: default;
|
|
1547
1547
|
background-color: #f4f4f4;
|
|
1548
1548
|
color: #bbb;
|
|
1549
1549
|
}
|
|
1550
1550
|
|
|
1551
|
-
.
|
|
1551
|
+
.leaflet-touch .leaflet-bar a {
|
|
1552
1552
|
width: 30px;
|
|
1553
1553
|
height: 30px;
|
|
1554
1554
|
line-height: 30px;
|
|
1555
1555
|
}
|
|
1556
|
-
.
|
|
1556
|
+
.leaflet-touch .leaflet-bar a:first-child {
|
|
1557
1557
|
border-top-left-radius: 2px;
|
|
1558
1558
|
border-top-right-radius: 2px;
|
|
1559
1559
|
}
|
|
1560
|
-
.
|
|
1560
|
+
.leaflet-touch .leaflet-bar a:last-child {
|
|
1561
1561
|
border-bottom-left-radius: 2px;
|
|
1562
1562
|
border-bottom-right-radius: 2px;
|
|
1563
1563
|
}
|
|
1564
1564
|
|
|
1565
1565
|
/* zoom control */
|
|
1566
1566
|
|
|
1567
|
-
.
|
|
1568
|
-
.
|
|
1567
|
+
.leaflet-control-zoom-in,
|
|
1568
|
+
.leaflet-control-zoom-out {
|
|
1569
1569
|
font: bold 18px 'Lucida Console', Monaco, monospace;
|
|
1570
1570
|
text-indent: 1px;
|
|
1571
1571
|
}
|
|
1572
1572
|
|
|
1573
|
-
.
|
|
1573
|
+
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
|
|
1574
1574
|
font-size: 22px;
|
|
1575
1575
|
}
|
|
1576
1576
|
|
|
1577
1577
|
|
|
1578
1578
|
/* layers control */
|
|
1579
1579
|
|
|
1580
|
-
.
|
|
1580
|
+
.leaflet-control-layers {
|
|
1581
1581
|
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
|
|
1582
1582
|
background: #fff;
|
|
1583
1583
|
border-radius: 5px;
|
|
1584
1584
|
}
|
|
1585
|
-
.
|
|
1585
|
+
.leaflet-control-layers-toggle {
|
|
1586
1586
|
background-image: url(images/layers.png);
|
|
1587
1587
|
width: 36px;
|
|
1588
1588
|
height: 36px;
|
|
1589
1589
|
}
|
|
1590
|
-
.
|
|
1590
|
+
.leaflet-retina .leaflet-control-layers-toggle {
|
|
1591
1591
|
background-image: url(images/layers-2x.png);
|
|
1592
1592
|
background-size: 26px 26px;
|
|
1593
1593
|
}
|
|
1594
|
-
.
|
|
1594
|
+
.leaflet-touch .leaflet-control-layers-toggle {
|
|
1595
1595
|
width: 44px;
|
|
1596
1596
|
height: 44px;
|
|
1597
1597
|
}
|
|
1598
|
-
.
|
|
1599
|
-
.
|
|
1598
|
+
.leaflet-control-layers .leaflet-control-layers-list,
|
|
1599
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
|
|
1600
1600
|
display: none;
|
|
1601
1601
|
}
|
|
1602
|
-
.
|
|
1602
|
+
.leaflet-control-layers-expanded .leaflet-control-layers-list {
|
|
1603
1603
|
display: block;
|
|
1604
1604
|
position: relative;
|
|
1605
1605
|
}
|
|
1606
|
-
.
|
|
1606
|
+
.leaflet-control-layers-expanded {
|
|
1607
1607
|
padding: 6px 10px 6px 6px;
|
|
1608
1608
|
color: #333;
|
|
1609
1609
|
background: #fff;
|
|
1610
1610
|
}
|
|
1611
|
-
.
|
|
1611
|
+
.leaflet-control-layers-scrollbar {
|
|
1612
1612
|
overflow-y: scroll;
|
|
1613
1613
|
overflow-x: hidden;
|
|
1614
1614
|
padding-right: 5px;
|
|
1615
1615
|
}
|
|
1616
|
-
.
|
|
1616
|
+
.leaflet-control-layers-selector {
|
|
1617
1617
|
margin-top: 2px;
|
|
1618
1618
|
position: relative;
|
|
1619
1619
|
top: 1px;
|
|
1620
1620
|
}
|
|
1621
|
-
.
|
|
1621
|
+
.leaflet-control-layers label {
|
|
1622
1622
|
display: block;
|
|
1623
1623
|
font-size: 13px;
|
|
1624
1624
|
font-size: 1.08333em;
|
|
1625
1625
|
}
|
|
1626
|
-
.
|
|
1626
|
+
.leaflet-control-layers-separator {
|
|
1627
1627
|
height: 0;
|
|
1628
1628
|
border-top: 1px solid #ddd;
|
|
1629
1629
|
margin: 5px -10px 5px -6px;
|
|
1630
1630
|
}
|
|
1631
1631
|
|
|
1632
1632
|
/* Default icon URLs */
|
|
1633
|
-
.
|
|
1633
|
+
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
|
|
1634
1634
|
background-image: url(images/marker-icon.png);
|
|
1635
1635
|
}
|
|
1636
1636
|
|
|
1637
1637
|
|
|
1638
1638
|
/* attribution and scale controls */
|
|
1639
1639
|
|
|
1640
|
-
.
|
|
1640
|
+
.leaflet-container .leaflet-control-attribution {
|
|
1641
1641
|
background: #fff;
|
|
1642
1642
|
background: rgba(255, 255, 255, 0.8);
|
|
1643
1643
|
margin: 0;
|
|
1644
1644
|
}
|
|
1645
|
-
.
|
|
1646
|
-
.
|
|
1645
|
+
.leaflet-control-attribution,
|
|
1646
|
+
.leaflet-control-scale-line {
|
|
1647
1647
|
padding: 0 5px;
|
|
1648
1648
|
color: #333;
|
|
1649
1649
|
line-height: 1.4;
|
|
1650
1650
|
}
|
|
1651
|
-
.
|
|
1651
|
+
.leaflet-control-attribution a {
|
|
1652
1652
|
text-decoration: none;
|
|
1653
1653
|
}
|
|
1654
|
-
.
|
|
1655
|
-
.
|
|
1654
|
+
.leaflet-control-attribution a:hover,
|
|
1655
|
+
.leaflet-control-attribution a:focus {
|
|
1656
1656
|
text-decoration: underline;
|
|
1657
1657
|
}
|
|
1658
|
-
.
|
|
1658
|
+
.leaflet-attribution-flag {
|
|
1659
1659
|
display: inline !important;
|
|
1660
1660
|
vertical-align: baseline !important;
|
|
1661
1661
|
width: 1em;
|
|
1662
1662
|
height: 0.6669em;
|
|
1663
1663
|
}
|
|
1664
|
-
.
|
|
1664
|
+
.leaflet-left .leaflet-control-scale {
|
|
1665
1665
|
margin-left: 5px;
|
|
1666
1666
|
}
|
|
1667
|
-
.
|
|
1667
|
+
.leaflet-bottom .leaflet-control-scale {
|
|
1668
1668
|
margin-bottom: 5px;
|
|
1669
1669
|
}
|
|
1670
|
-
.
|
|
1670
|
+
.leaflet-control-scale-line {
|
|
1671
1671
|
border: 2px solid #777;
|
|
1672
1672
|
border-top: none;
|
|
1673
1673
|
line-height: 1.1;
|
|
@@ -1678,22 +1678,22 @@
|
|
|
1678
1678
|
background: rgba(255, 255, 255, 0.8);
|
|
1679
1679
|
text-shadow: 1px 1px #fff;
|
|
1680
1680
|
}
|
|
1681
|
-
.
|
|
1681
|
+
.leaflet-control-scale-line:not(:first-child) {
|
|
1682
1682
|
border-top: 2px solid #777;
|
|
1683
1683
|
border-bottom: none;
|
|
1684
1684
|
margin-top: -2px;
|
|
1685
1685
|
}
|
|
1686
|
-
.
|
|
1686
|
+
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
|
|
1687
1687
|
border-bottom: 2px solid #777;
|
|
1688
1688
|
}
|
|
1689
1689
|
|
|
1690
|
-
.
|
|
1691
|
-
.
|
|
1692
|
-
.
|
|
1690
|
+
.leaflet-touch .leaflet-control-attribution,
|
|
1691
|
+
.leaflet-touch .leaflet-control-layers,
|
|
1692
|
+
.leaflet-touch .leaflet-bar {
|
|
1693
1693
|
box-shadow: none;
|
|
1694
1694
|
}
|
|
1695
|
-
.
|
|
1696
|
-
.
|
|
1695
|
+
.leaflet-touch .leaflet-control-layers,
|
|
1696
|
+
.leaflet-touch .leaflet-bar {
|
|
1697
1697
|
border: 2px solid rgba(0,0,0,0.2);
|
|
1698
1698
|
background-clip: padding-box;
|
|
1699
1699
|
}
|
|
@@ -1701,28 +1701,28 @@
|
|
|
1701
1701
|
|
|
1702
1702
|
/* popup */
|
|
1703
1703
|
|
|
1704
|
-
.
|
|
1704
|
+
.leaflet-popup {
|
|
1705
1705
|
position: absolute;
|
|
1706
1706
|
text-align: center;
|
|
1707
1707
|
margin-bottom: 20px;
|
|
1708
1708
|
}
|
|
1709
|
-
.
|
|
1709
|
+
.leaflet-popup-content-wrapper {
|
|
1710
1710
|
padding: 1px;
|
|
1711
1711
|
text-align: left;
|
|
1712
1712
|
border-radius: 12px;
|
|
1713
1713
|
}
|
|
1714
|
-
.
|
|
1714
|
+
.leaflet-popup-content {
|
|
1715
1715
|
margin: 13px 24px 13px 20px;
|
|
1716
1716
|
line-height: 1.3;
|
|
1717
1717
|
font-size: 13px;
|
|
1718
1718
|
font-size: 1.08333em;
|
|
1719
1719
|
min-height: 1px;
|
|
1720
1720
|
}
|
|
1721
|
-
.
|
|
1721
|
+
.leaflet-popup-content p {
|
|
1722
1722
|
margin: 17px 0;
|
|
1723
1723
|
margin: 1.3em 0;
|
|
1724
1724
|
}
|
|
1725
|
-
.
|
|
1725
|
+
.leaflet-popup-tip-container {
|
|
1726
1726
|
width: 40px;
|
|
1727
1727
|
height: 20px;
|
|
1728
1728
|
position: absolute;
|
|
@@ -1732,7 +1732,7 @@
|
|
|
1732
1732
|
overflow: hidden;
|
|
1733
1733
|
pointer-events: none;
|
|
1734
1734
|
}
|
|
1735
|
-
.
|
|
1735
|
+
.leaflet-popup-tip {
|
|
1736
1736
|
width: 17px;
|
|
1737
1737
|
height: 17px;
|
|
1738
1738
|
padding: 1px;
|
|
@@ -1745,13 +1745,13 @@
|
|
|
1745
1745
|
-ms-transform: rotate(45deg);
|
|
1746
1746
|
transform: rotate(45deg);
|
|
1747
1747
|
}
|
|
1748
|
-
.
|
|
1749
|
-
.
|
|
1748
|
+
.leaflet-popup-content-wrapper,
|
|
1749
|
+
.leaflet-popup-tip {
|
|
1750
1750
|
background: white;
|
|
1751
1751
|
color: #333;
|
|
1752
1752
|
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
|
|
1753
1753
|
}
|
|
1754
|
-
.
|
|
1754
|
+
.leaflet-container a.leaflet-popup-close-button {
|
|
1755
1755
|
position: absolute;
|
|
1756
1756
|
top: 0;
|
|
1757
1757
|
right: 0;
|
|
@@ -1764,18 +1764,18 @@
|
|
|
1764
1764
|
text-decoration: none;
|
|
1765
1765
|
background: transparent;
|
|
1766
1766
|
}
|
|
1767
|
-
.
|
|
1768
|
-
.
|
|
1767
|
+
.leaflet-container a.leaflet-popup-close-button:hover,
|
|
1768
|
+
.leaflet-container a.leaflet-popup-close-button:focus {
|
|
1769
1769
|
color: #585858;
|
|
1770
1770
|
}
|
|
1771
|
-
.
|
|
1771
|
+
.leaflet-popup-scrolled {
|
|
1772
1772
|
overflow: auto;
|
|
1773
1773
|
}
|
|
1774
1774
|
|
|
1775
|
-
.
|
|
1775
|
+
.leaflet-oldie .leaflet-popup-content-wrapper {
|
|
1776
1776
|
-ms-zoom: 1;
|
|
1777
1777
|
}
|
|
1778
|
-
.
|
|
1778
|
+
.leaflet-oldie .leaflet-popup-tip {
|
|
1779
1779
|
width: 24px;
|
|
1780
1780
|
margin: 0 auto;
|
|
1781
1781
|
|
|
@@ -1783,17 +1783,17 @@
|
|
|
1783
1783
|
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
|
|
1784
1784
|
}
|
|
1785
1785
|
|
|
1786
|
-
.
|
|
1787
|
-
.
|
|
1788
|
-
.
|
|
1789
|
-
.
|
|
1786
|
+
.leaflet-oldie .leaflet-control-zoom,
|
|
1787
|
+
.leaflet-oldie .leaflet-control-layers,
|
|
1788
|
+
.leaflet-oldie .leaflet-popup-content-wrapper,
|
|
1789
|
+
.leaflet-oldie .leaflet-popup-tip {
|
|
1790
1790
|
border: 1px solid #999;
|
|
1791
1791
|
}
|
|
1792
1792
|
|
|
1793
1793
|
|
|
1794
1794
|
/* div icon */
|
|
1795
1795
|
|
|
1796
|
-
.
|
|
1796
|
+
.leaflet-div-icon {
|
|
1797
1797
|
background: #fff;
|
|
1798
1798
|
border: 1px solid #666;
|
|
1799
1799
|
}
|
|
@@ -1801,7 +1801,7 @@
|
|
|
1801
1801
|
|
|
1802
1802
|
/* Tooltip */
|
|
1803
1803
|
/* Base styles for the element that has a tooltip */
|
|
1804
|
-
.
|
|
1804
|
+
.leaflet-tooltip {
|
|
1805
1805
|
position: absolute;
|
|
1806
1806
|
padding: 6px;
|
|
1807
1807
|
background-color: #fff;
|
|
@@ -1816,14 +1816,14 @@
|
|
|
1816
1816
|
pointer-events: none;
|
|
1817
1817
|
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
|
|
1818
1818
|
}
|
|
1819
|
-
.
|
|
1819
|
+
.leaflet-tooltip.leaflet-interactive {
|
|
1820
1820
|
cursor: pointer;
|
|
1821
1821
|
pointer-events: auto;
|
|
1822
1822
|
}
|
|
1823
|
-
.
|
|
1824
|
-
.
|
|
1825
|
-
.
|
|
1826
|
-
.
|
|
1823
|
+
.leaflet-tooltip-top:before,
|
|
1824
|
+
.leaflet-tooltip-bottom:before,
|
|
1825
|
+
.leaflet-tooltip-left:before,
|
|
1826
|
+
.leaflet-tooltip-right:before {
|
|
1827
1827
|
position: absolute;
|
|
1828
1828
|
pointer-events: none;
|
|
1829
1829
|
border: 6px solid transparent;
|
|
@@ -1833,45 +1833,45 @@
|
|
|
1833
1833
|
|
|
1834
1834
|
/* Directions */
|
|
1835
1835
|
|
|
1836
|
-
.
|
|
1836
|
+
.leaflet-tooltip-bottom {
|
|
1837
1837
|
margin-top: 6px;
|
|
1838
1838
|
}
|
|
1839
|
-
.
|
|
1839
|
+
.leaflet-tooltip-top {
|
|
1840
1840
|
margin-top: -6px;
|
|
1841
1841
|
}
|
|
1842
|
-
.
|
|
1843
|
-
.
|
|
1842
|
+
.leaflet-tooltip-bottom:before,
|
|
1843
|
+
.leaflet-tooltip-top:before {
|
|
1844
1844
|
left: 50%;
|
|
1845
1845
|
margin-left: -6px;
|
|
1846
1846
|
}
|
|
1847
|
-
.
|
|
1847
|
+
.leaflet-tooltip-top:before {
|
|
1848
1848
|
bottom: 0;
|
|
1849
1849
|
margin-bottom: -12px;
|
|
1850
1850
|
border-top-color: #fff;
|
|
1851
1851
|
}
|
|
1852
|
-
.
|
|
1852
|
+
.leaflet-tooltip-bottom:before {
|
|
1853
1853
|
top: 0;
|
|
1854
1854
|
margin-top: -12px;
|
|
1855
1855
|
margin-left: -6px;
|
|
1856
1856
|
border-bottom-color: #fff;
|
|
1857
1857
|
}
|
|
1858
|
-
.
|
|
1858
|
+
.leaflet-tooltip-left {
|
|
1859
1859
|
margin-left: -6px;
|
|
1860
1860
|
}
|
|
1861
|
-
.
|
|
1861
|
+
.leaflet-tooltip-right {
|
|
1862
1862
|
margin-left: 6px;
|
|
1863
1863
|
}
|
|
1864
|
-
.
|
|
1865
|
-
.
|
|
1864
|
+
.leaflet-tooltip-left:before,
|
|
1865
|
+
.leaflet-tooltip-right:before {
|
|
1866
1866
|
top: 50%;
|
|
1867
1867
|
margin-top: -6px;
|
|
1868
1868
|
}
|
|
1869
|
-
.
|
|
1869
|
+
.leaflet-tooltip-left:before {
|
|
1870
1870
|
right: 0;
|
|
1871
1871
|
margin-right: -12px;
|
|
1872
1872
|
border-left-color: #fff;
|
|
1873
1873
|
}
|
|
1874
|
-
.
|
|
1874
|
+
.leaflet-tooltip-right:before {
|
|
1875
1875
|
left: 0;
|
|
1876
1876
|
margin-left: -12px;
|
|
1877
1877
|
border-right-color: #fff;
|
|
@@ -1881,34 +1881,34 @@
|
|
|
1881
1881
|
|
|
1882
1882
|
@media print {
|
|
1883
1883
|
/* Prevent printers from removing background-images of controls. */
|
|
1884
|
-
.
|
|
1884
|
+
.leaflet-control {
|
|
1885
1885
|
-webkit-print-color-adjust: exact;
|
|
1886
1886
|
print-color-adjust: exact;
|
|
1887
1887
|
}
|
|
1888
1888
|
}
|
|
1889
1889
|
|
|
1890
|
-
.Map-
|
|
1890
|
+
.Map-module_map__BEwEi {
|
|
1891
1891
|
height: 100%;
|
|
1892
1892
|
width: 100%;
|
|
1893
1893
|
border-radius: var(--oziko-border-radius-md);
|
|
1894
1894
|
}
|
|
1895
|
-
.Map-
|
|
1895
|
+
.Map-module_map__BEwEi .leaflet-control-container .leaflet-bottom {
|
|
1896
1896
|
display: none !important;
|
|
1897
1897
|
}
|
|
1898
1898
|
|
|
1899
|
-
.Map-
|
|
1899
|
+
.Map-module_icon__1Y4-P {
|
|
1900
1900
|
display: flex;
|
|
1901
1901
|
justify-content: center;
|
|
1902
1902
|
align-items: center;
|
|
1903
1903
|
}
|
|
1904
|
-
.Modal-
|
|
1904
|
+
.Modal-module_modalContainer__CnoII {
|
|
1905
1905
|
position: absolute;
|
|
1906
1906
|
width: 100% !important;
|
|
1907
1907
|
height: 100% !important;
|
|
1908
1908
|
top: 0;
|
|
1909
1909
|
}
|
|
1910
1910
|
|
|
1911
|
-
.Modal-
|
|
1911
|
+
.Modal-module_modalContent__HNEeB {
|
|
1912
1912
|
position: relative;
|
|
1913
1913
|
background-color: var(--oziko-color-menu-background);
|
|
1914
1914
|
min-height: 50px;
|
|
@@ -1919,25 +1919,25 @@
|
|
|
1919
1919
|
box-shadow: var(--box-shadow);
|
|
1920
1920
|
border-radius: var(--oziko-border-radius-md);
|
|
1921
1921
|
}
|
|
1922
|
-
.Modal-
|
|
1922
|
+
.Modal-module_modalContent__HNEeB.Modal-module_noOverflow__oJ1i- {
|
|
1923
1923
|
max-height: none;
|
|
1924
1924
|
top: 0%;
|
|
1925
1925
|
overflow-y: auto;
|
|
1926
1926
|
}
|
|
1927
|
-
.Modal-
|
|
1927
|
+
.Modal-module_modalContent__HNEeB .Modal-module_closeButton__AoWmd {
|
|
1928
1928
|
position: absolute;
|
|
1929
1929
|
top: 0;
|
|
1930
1930
|
right: 0;
|
|
1931
1931
|
padding: var(--oziko-padding-md);
|
|
1932
1932
|
cursor: pointer;
|
|
1933
1933
|
}
|
|
1934
|
-
.Modal-
|
|
1934
|
+
.Modal-module_modalContent__HNEeB.Modal-module_growFromCenter__2PYLC {
|
|
1935
1935
|
animation: Modal-module_growFromCenter__2PYLC var(--oziko-transition-duration) forwards ease;
|
|
1936
1936
|
}
|
|
1937
|
-
.Modal-
|
|
1937
|
+
.Modal-module_modalContent__HNEeB.Modal-module_zoomIn__QNDuv {
|
|
1938
1938
|
animation: Modal-module_classicModalZoom__W6Xhj var(--oziko-transition-duration) forwards linear;
|
|
1939
1939
|
}
|
|
1940
|
-
.Modal-
|
|
1940
|
+
.Modal-module_modalContent__HNEeB.Modal-module_shake__b-lIf {
|
|
1941
1941
|
animation: Modal-module_shake__b-lIf var(--oziko-transition-duration) ease-in-out;
|
|
1942
1942
|
}
|
|
1943
1943
|
@keyframes Modal-module_growFromCenter__2PYLC {
|
|
@@ -1971,47 +1971,47 @@
|
|
|
1971
1971
|
transform: translateX(10px);
|
|
1972
1972
|
}
|
|
1973
1973
|
}
|
|
1974
|
-
.ModalHeader-
|
|
1974
|
+
.ModalHeader-module_modalHeader__Tn8TM {
|
|
1975
1975
|
color: var(--oziko-color-font-primary);
|
|
1976
1976
|
font-size: var(--oziko-font-size-lg);
|
|
1977
1977
|
padding: var(--oziko-padding-md);
|
|
1978
1978
|
}
|
|
1979
|
-
.ModalBody-
|
|
1979
|
+
.ModalBody-module_modalBody__WKtQo {
|
|
1980
1980
|
color: var(--oziko-color-font-primary);
|
|
1981
1981
|
font-size: var(--oziko-font-size-lg);
|
|
1982
1982
|
padding: var(--oziko-padding-md);
|
|
1983
1983
|
flex: 1;
|
|
1984
1984
|
overflow-y: auto;
|
|
1985
1985
|
}
|
|
1986
|
-
.ModalFooter-
|
|
1986
|
+
.ModalFooter-module_modalFooter__uS-Sd {
|
|
1987
1987
|
color: var(--oziko-color-font-primary);
|
|
1988
1988
|
font-size: var(--oziko-font-size-lg);
|
|
1989
1989
|
padding: var(--oziko-padding-md);
|
|
1990
1990
|
}
|
|
1991
|
-
.Backdrop-
|
|
1991
|
+
.Backdrop-module_container__IkwCT {
|
|
1992
1992
|
position: absolute;
|
|
1993
1993
|
top: 0;
|
|
1994
1994
|
width: 100%;
|
|
1995
1995
|
height: 100%;
|
|
1996
1996
|
}
|
|
1997
|
-
.Backdrop-
|
|
1997
|
+
.Backdrop-module_container__IkwCT.Backdrop-module_showBackdrop__MMIy- {
|
|
1998
1998
|
background-color: rgba(53, 52, 52, 0.651);
|
|
1999
1999
|
}
|
|
2000
|
-
.SelectOption-
|
|
2000
|
+
.SelectOption-module_option__wQb8V {
|
|
2001
2001
|
cursor: pointer;
|
|
2002
2002
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2003
2003
|
}
|
|
2004
|
-
.SelectOption-
|
|
2004
|
+
.SelectOption-module_option__wQb8V:not(.SelectOption-module_disabled__m5fGS):hover {
|
|
2005
2005
|
background: var(--oziko-color-zebra);
|
|
2006
2006
|
}
|
|
2007
|
-
.SelectOption-
|
|
2007
|
+
.SelectOption-module_option__wQb8V.SelectOption-module_selected__A6Rky {
|
|
2008
2008
|
background: var(--oziko-color-zebra);
|
|
2009
2009
|
}
|
|
2010
|
-
.SelectOption-
|
|
2010
|
+
.SelectOption-module_option__wQb8V.SelectOption-module_disabled__m5fGS {
|
|
2011
2011
|
cursor: default;
|
|
2012
2012
|
opacity: var(--oziko-disabled-opacity);
|
|
2013
2013
|
}
|
|
2014
|
-
.SelectOption-
|
|
2014
|
+
.SelectOption-module_option__wQb8V .SelectOption-module_displayer__lEn8X {
|
|
2015
2015
|
display: -webkit-box;
|
|
2016
2016
|
-webkit-box-orient: vertical;
|
|
2017
2017
|
overflow: hidden;
|
|
@@ -2019,36 +2019,36 @@
|
|
|
2019
2019
|
width: unset;
|
|
2020
2020
|
-webkit-line-clamp: 1;
|
|
2021
2021
|
}
|
|
2022
|
-
.StorageFileCard-
|
|
2022
|
+
.StorageFileCard-module_container__Qj11y {
|
|
2023
2023
|
border-radius: var(--oziko-border-radius-md);
|
|
2024
2024
|
justify-content: space-between !important;
|
|
2025
2025
|
background: var(--oziko-color-menu-background);
|
|
2026
2026
|
}
|
|
2027
|
-
.StorageFileCard-
|
|
2027
|
+
.StorageFileCard-module_container__Qj11y:hover {
|
|
2028
2028
|
cursor: pointer;
|
|
2029
2029
|
}
|
|
2030
|
-
.StorageFileCard-
|
|
2030
|
+
.StorageFileCard-module_container__Qj11y .StorageFileCard-module_viewContainer__MEXDI {
|
|
2031
2031
|
flex: 1;
|
|
2032
2032
|
overflow: hidden;
|
|
2033
2033
|
padding: var(--oziko-padding-md);
|
|
2034
2034
|
}
|
|
2035
|
-
.StorageFileCard-
|
|
2036
|
-
.StorageFileCard-
|
|
2035
|
+
.StorageFileCard-module_container__Qj11y .StorageFileCard-module_viewContainer__MEXDI img,
|
|
2036
|
+
.StorageFileCard-module_container__Qj11y .StorageFileCard-module_viewContainer__MEXDI embed {
|
|
2037
2037
|
width: 100%;
|
|
2038
2038
|
max-height: calc(85% - 2 * var(--oziko-padding-lg));
|
|
2039
2039
|
object-fit: contain;
|
|
2040
2040
|
}
|
|
2041
|
-
.StorageFileCard-
|
|
2041
|
+
.StorageFileCard-module_container__Qj11y .StorageFileCard-module_viewContainer__MEXDI .StorageFileCard-module_icon__dL0FE {
|
|
2042
2042
|
width: 2rem;
|
|
2043
2043
|
height: 2rem;
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
|
-
.StorageFileCard-
|
|
2046
|
+
.StorageFileCard-module_name__U4YHd {
|
|
2047
2047
|
border-top: var(--oziko-border-default);
|
|
2048
2048
|
padding: var(--oziko-padding-md);
|
|
2049
2049
|
text-align: center;
|
|
2050
2050
|
}
|
|
2051
|
-
.StorageFileCard-
|
|
2051
|
+
.StorageFileCard-module_name__U4YHd span {
|
|
2052
2052
|
display: -webkit-box;
|
|
2053
2053
|
-webkit-box-orient: vertical;
|
|
2054
2054
|
overflow: hidden;
|
|
@@ -2056,27 +2056,27 @@
|
|
|
2056
2056
|
width: unset;
|
|
2057
2057
|
-webkit-line-clamp: 1;
|
|
2058
2058
|
}
|
|
2059
|
-
.Switch-
|
|
2059
|
+
.Switch-module_switch__-4EkK {
|
|
2060
2060
|
position: relative;
|
|
2061
2061
|
display: inline-block;
|
|
2062
2062
|
width: 44px;
|
|
2063
2063
|
height: 22px;
|
|
2064
2064
|
cursor: pointer;
|
|
2065
2065
|
}
|
|
2066
|
-
.Switch-
|
|
2066
|
+
.Switch-module_switch__-4EkK input {
|
|
2067
2067
|
display: none;
|
|
2068
2068
|
}
|
|
2069
|
-
.Switch-
|
|
2069
|
+
.Switch-module_switch__-4EkK.Switch-module_disabled__eRVsQ {
|
|
2070
2070
|
cursor: not-allowed;
|
|
2071
2071
|
}
|
|
2072
|
-
.Switch-
|
|
2072
|
+
.Switch-module_switch__-4EkK.Switch-module_disabled__eRVsQ .Switch-module_slider__sHGGR {
|
|
2073
2073
|
opacity: 0.6;
|
|
2074
2074
|
}
|
|
2075
|
-
.Switch-
|
|
2075
|
+
.Switch-module_switch__-4EkK.Switch-module_disabled__eRVsQ .Switch-module_slider__sHGGR::before {
|
|
2076
2076
|
opacity: 0.6;
|
|
2077
2077
|
}
|
|
2078
2078
|
|
|
2079
|
-
.Switch-
|
|
2079
|
+
.Switch-module_slider__sHGGR {
|
|
2080
2080
|
position: absolute;
|
|
2081
2081
|
top: 0;
|
|
2082
2082
|
left: 0;
|
|
@@ -2086,7 +2086,7 @@
|
|
|
2086
2086
|
border-radius: 20px;
|
|
2087
2087
|
transition: background-color 0.3s ease;
|
|
2088
2088
|
}
|
|
2089
|
-
.Switch-
|
|
2089
|
+
.Switch-module_slider__sHGGR::before {
|
|
2090
2090
|
content: "";
|
|
2091
2091
|
position: absolute;
|
|
2092
2092
|
width: 16px;
|
|
@@ -2098,33 +2098,33 @@
|
|
|
2098
2098
|
border-radius: 100%;
|
|
2099
2099
|
}
|
|
2100
2100
|
|
|
2101
|
-
|
|
2101
|
+
input:checked + .Switch-module_slider__sHGGR {
|
|
2102
2102
|
background-color: rgba(var(--oziko-color-primary-rgb), 0.3);
|
|
2103
2103
|
}
|
|
2104
2104
|
|
|
2105
|
-
|
|
2105
|
+
input:checked + .Switch-module_slider__sHGGR::before {
|
|
2106
2106
|
transform: translateX(20px);
|
|
2107
2107
|
background: var(--oziko-color-primary);
|
|
2108
2108
|
}
|
|
2109
|
-
.Title-
|
|
2109
|
+
.Title-module_title__X4-sx {
|
|
2110
2110
|
color: #000000;
|
|
2111
2111
|
}
|
|
2112
|
-
.Accordion-
|
|
2112
|
+
.Accordion-module_accordionGroup__qt51Z {
|
|
2113
2113
|
width: 100%;
|
|
2114
2114
|
margin: 0 auto;
|
|
2115
2115
|
}
|
|
2116
2116
|
|
|
2117
|
-
.Accordion-
|
|
2117
|
+
.Accordion-module_accordionItem__yV0FU {
|
|
2118
2118
|
width: 100%;
|
|
2119
2119
|
}
|
|
2120
|
-
.Accordion-
|
|
2120
|
+
.Accordion-module_accordionItem__yV0FU .Accordion-module_icon__ni8rA {
|
|
2121
2121
|
transition: all var(--oziko-transition-duration) ease-in-out;
|
|
2122
2122
|
}
|
|
2123
|
-
.Accordion-
|
|
2123
|
+
.Accordion-module_accordionItem__yV0FU .Accordion-module_icon__ni8rA.Accordion-module_rotate__0j95F {
|
|
2124
2124
|
transform: rotate(180deg);
|
|
2125
2125
|
}
|
|
2126
2126
|
|
|
2127
|
-
.Accordion-
|
|
2127
|
+
.Accordion-module_accordionTitle__JkcQk {
|
|
2128
2128
|
width: 100%;
|
|
2129
2129
|
padding: var(--oziko-padding-lg);
|
|
2130
2130
|
text-align: left;
|
|
@@ -2134,23 +2134,23 @@
|
|
|
2134
2134
|
justify-content: space-between;
|
|
2135
2135
|
align-items: center;
|
|
2136
2136
|
}
|
|
2137
|
-
.Accordion-
|
|
2137
|
+
.Accordion-module_accordionTitle__JkcQk:hover {
|
|
2138
2138
|
background: var(--oziko-color-soft);
|
|
2139
2139
|
}
|
|
2140
|
-
.Accordion-
|
|
2140
|
+
.Accordion-module_accordionTitle__JkcQk:hover .Accordion-module_suffixOnHover__hHfy1 {
|
|
2141
2141
|
opacity: 1;
|
|
2142
2142
|
}
|
|
2143
|
-
.Accordion-
|
|
2143
|
+
.Accordion-module_accordionTitle__JkcQk.Accordion-module_open__C3ogj {
|
|
2144
2144
|
background: var(--oziko-color-soft);
|
|
2145
2145
|
}
|
|
2146
|
-
.Accordion-
|
|
2146
|
+
.Accordion-module_accordionTitle__JkcQk.Accordion-module_open__C3ogj:hover.Accordion-module_noBackgroundOnHover__MnluI {
|
|
2147
2147
|
background: var(--oziko-color-soft);
|
|
2148
2148
|
}
|
|
2149
|
-
.Accordion-
|
|
2149
|
+
.Accordion-module_accordionTitle__JkcQk.Accordion-module_noBackgroundOnFocus__nmKN9 {
|
|
2150
2150
|
background: transparent;
|
|
2151
2151
|
}
|
|
2152
2152
|
|
|
2153
|
-
.Accordion-
|
|
2153
|
+
.Accordion-module_accordionContent__VnGTH {
|
|
2154
2154
|
background: white;
|
|
2155
2155
|
width: 100%;
|
|
2156
2156
|
display: grid;
|
|
@@ -2160,30 +2160,30 @@
|
|
|
2160
2160
|
padding-left: var(--oziko-padding-lg);
|
|
2161
2161
|
padding-right: var(--oziko-padding-lg);
|
|
2162
2162
|
}
|
|
2163
|
-
.Accordion-
|
|
2163
|
+
.Accordion-module_accordionContent__VnGTH.Accordion-module_open__C3ogj {
|
|
2164
2164
|
grid-template-rows: 1fr;
|
|
2165
2165
|
opacity: 1;
|
|
2166
2166
|
padding-bottom: var(--oziko-padding-lg);
|
|
2167
2167
|
padding-top: var(--oziko-padding-lg);
|
|
2168
2168
|
}
|
|
2169
2169
|
|
|
2170
|
-
.Accordion-
|
|
2170
|
+
.Accordion-module_accordionContentInner__dFM3D {
|
|
2171
2171
|
overflow: hidden;
|
|
2172
2172
|
}
|
|
2173
2173
|
|
|
2174
|
-
.Accordion-
|
|
2174
|
+
.Accordion-module_bordered__4ZbV1 {
|
|
2175
2175
|
border: var(--oziko-border-default);
|
|
2176
2176
|
}
|
|
2177
2177
|
|
|
2178
|
-
.Accordion-
|
|
2178
|
+
.Accordion-module_suffixOnHover__hHfy1 {
|
|
2179
2179
|
opacity: 0;
|
|
2180
2180
|
transition: all var(--oziko-transition-duration) ease;
|
|
2181
2181
|
}
|
|
2182
|
-
.NavigatorItem-
|
|
2182
|
+
.NavigatorItem-module_navigatorItem__wZkYp {
|
|
2183
2183
|
padding: var(--oziko-padding-md);
|
|
2184
2184
|
color: var(--oziko-color-font-primary);
|
|
2185
2185
|
}
|
|
2186
|
-
.NavigatorItem-
|
|
2186
|
+
.NavigatorItem-module_navigatorItem__wZkYp .NavigatorItem-module_suffixButton__4TRQD {
|
|
2187
2187
|
border: 0;
|
|
2188
2188
|
padding: 0;
|
|
2189
2189
|
width: var(--oziko-icon-size-sm);
|
|
@@ -2191,23 +2191,23 @@
|
|
|
2191
2191
|
opacity: 0;
|
|
2192
2192
|
transition: opacity 0.1s ease-in-out;
|
|
2193
2193
|
}
|
|
2194
|
-
.NavigatorItem-
|
|
2194
|
+
.NavigatorItem-module_navigatorItem__wZkYp:hover {
|
|
2195
2195
|
cursor: pointer;
|
|
2196
2196
|
}
|
|
2197
|
-
.NavigatorItem-
|
|
2197
|
+
.NavigatorItem-module_navigatorItem__wZkYp:hover .NavigatorItem-module_suffixButton__4TRQD {
|
|
2198
2198
|
opacity: 1;
|
|
2199
2199
|
}
|
|
2200
|
-
.Select-
|
|
2200
|
+
.Select-module_container__txDHr {
|
|
2201
2201
|
background: var(--oziko-color-zebra);
|
|
2202
2202
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2203
2203
|
border-radius: var(--oziko-border-radius-md);
|
|
2204
2204
|
cursor: pointer;
|
|
2205
2205
|
}
|
|
2206
|
-
.Select-
|
|
2206
|
+
.Select-module_container__txDHr.Select-module_disabled__RJ71M {
|
|
2207
2207
|
cursor: default;
|
|
2208
2208
|
opacity: var(--oziko-disabled-opacity);
|
|
2209
2209
|
}
|
|
2210
|
-
.Select-
|
|
2210
|
+
.Select-module_container__txDHr .Select-module_displayer__gzmxI {
|
|
2211
2211
|
display: -webkit-box;
|
|
2212
2212
|
-webkit-box-orient: vertical;
|
|
2213
2213
|
overflow: hidden;
|
|
@@ -2216,7 +2216,7 @@
|
|
|
2216
2216
|
-webkit-line-clamp: 1;
|
|
2217
2217
|
}
|
|
2218
2218
|
|
|
2219
|
-
.Select-
|
|
2219
|
+
.Select-module_selectDropdown__HBmga {
|
|
2220
2220
|
position: fixed;
|
|
2221
2221
|
border-radius: var(--oziko-border-radius-md);
|
|
2222
2222
|
z-index: 1000;
|
|
@@ -2226,13 +2226,13 @@
|
|
|
2226
2226
|
box-shadow: var(--box-shadow);
|
|
2227
2227
|
background: var(--oziko-color-menu-background);
|
|
2228
2228
|
}
|
|
2229
|
-
.SSOButton-
|
|
2229
|
+
.SSOButton-module_ssoButton__UJTqm {
|
|
2230
2230
|
border-radius: var(--oziko-border-radius-lg);
|
|
2231
2231
|
padding: var(--oziko-padding-xl);
|
|
2232
2232
|
background: var(--oziko-color-menu-background);
|
|
2233
2233
|
border: 1px solid var(--oziko-color-border);
|
|
2234
2234
|
}
|
|
2235
|
-
.SSOButton-
|
|
2235
|
+
.SSOButton-module_ssoButton__UJTqm .SSOButton-module_text__TOexm {
|
|
2236
2236
|
display: -webkit-box;
|
|
2237
2237
|
-webkit-box-orient: vertical;
|
|
2238
2238
|
overflow: hidden;
|
|
@@ -2242,52 +2242,52 @@
|
|
|
2242
2242
|
display: block;
|
|
2243
2243
|
white-space: nowrap;
|
|
2244
2244
|
}
|
|
2245
|
-
.SSOButton-
|
|
2245
|
+
.SSOButton-module_ssoButton__UJTqm.SSOButton-module_clicked__ubyV- {
|
|
2246
2246
|
border-color: var(--oziko-color-primary);
|
|
2247
2247
|
}
|
|
2248
|
-
.SSOButton-
|
|
2248
|
+
.SSOButton-module_ssoButton__UJTqm .SSOButton-module_active__kBZGN {
|
|
2249
2249
|
color: var(--oziko-color-primary) !important;
|
|
2250
2250
|
}
|
|
2251
|
-
.StorageFilter-
|
|
2251
|
+
.StorageFilter-module_container__ZnTbe {
|
|
2252
2252
|
background: var(--oziko-color-menu-background);
|
|
2253
2253
|
padding: var(--oziko-padding-md);
|
|
2254
2254
|
box-shadow: var(--box-shadow);
|
|
2255
2255
|
border-radius: var(--oziko-border-radius-md);
|
|
2256
2256
|
}
|
|
2257
|
-
.StorageFilter-
|
|
2257
|
+
.StorageFilter-module_container__ZnTbe .StorageFilter-module_select__DyJK0 {
|
|
2258
2258
|
background: none;
|
|
2259
2259
|
padding: 0;
|
|
2260
2260
|
}
|
|
2261
|
-
.StorageFilter-
|
|
2261
|
+
.StorageFilter-module_container__ZnTbe .StorageFilter-module_content__-Mtu6 {
|
|
2262
2262
|
padding: var(--oziko-padding-sm) var(--oziko-padding-md);
|
|
2263
2263
|
border: var(--oziko-border-default);
|
|
2264
2264
|
border-radius: var(--oziko-border-radius-md);
|
|
2265
2265
|
}
|
|
2266
|
-
.StorageFilter-
|
|
2266
|
+
.StorageFilter-module_container__ZnTbe .StorageFilter-module_content__-Mtu6 .StorageFilter-module_left__uaxf1 {
|
|
2267
2267
|
border-right: var(--oziko-border-default);
|
|
2268
2268
|
}
|
|
2269
|
-
.StorageFilter-
|
|
2269
|
+
.StorageFilter-module_container__ZnTbe .StorageFilter-module_chip__V-Qgq {
|
|
2270
2270
|
font-size: var(--oziko-font-size-sm);
|
|
2271
2271
|
border-radius: var(--oziko-border-radius-md);
|
|
2272
2272
|
padding: var(--oziko-padding-sm) var(--oziko-padding-md) !important;
|
|
2273
2273
|
cursor: pointer;
|
|
2274
2274
|
justify-content: space-between !important;
|
|
2275
2275
|
}
|
|
2276
|
-
.StorageFilter-
|
|
2276
|
+
.StorageFilter-module_container__ZnTbe .StorageFilter-module_chip__V-Qgq.StorageFilter-module_active__pDnAF {
|
|
2277
2277
|
border-color: var(--oziko-color-primary);
|
|
2278
2278
|
}
|
|
2279
|
-
.Timeline-
|
|
2279
|
+
.Timeline-module_pan__6qEQq {
|
|
2280
2280
|
padding: 0 !important;
|
|
2281
2281
|
height: unset;
|
|
2282
2282
|
}
|
|
2283
|
-
.Timeline-
|
|
2283
|
+
.Timeline-module_pan__6qEQq svg {
|
|
2284
2284
|
color: #5187ed;
|
|
2285
2285
|
}
|
|
2286
2286
|
|
|
2287
|
-
.Timeline-
|
|
2287
|
+
.Timeline-module_container__s3lvD {
|
|
2288
2288
|
position: relative;
|
|
2289
2289
|
}
|
|
2290
|
-
.Timeline-
|
|
2290
|
+
.Timeline-module_container__s3lvD .Timeline-module_date__z5hHi {
|
|
2291
2291
|
min-width: 120px;
|
|
2292
2292
|
border: 1.5px solid #5187ed;
|
|
2293
2293
|
border-radius: var(--oziko-border-radius-round);
|
|
@@ -2299,19 +2299,19 @@
|
|
|
2299
2299
|
font-size: var(--oziko-font-size-sm) !important;
|
|
2300
2300
|
font-weight: 600;
|
|
2301
2301
|
}
|
|
2302
|
-
.Timeline-
|
|
2302
|
+
.Timeline-module_container__s3lvD .Timeline-module_date__z5hHi.Timeline-module_from__K9jIK {
|
|
2303
2303
|
left: 30px;
|
|
2304
2304
|
}
|
|
2305
|
-
.Timeline-
|
|
2305
|
+
.Timeline-module_container__s3lvD .Timeline-module_date__z5hHi.Timeline-module_to__gGj9w {
|
|
2306
2306
|
right: 0;
|
|
2307
2307
|
}
|
|
2308
|
-
.DraggableBar-
|
|
2308
|
+
.DraggableBar-module_bar__TpW1R {
|
|
2309
2309
|
cursor: grab;
|
|
2310
2310
|
position: absolute;
|
|
2311
2311
|
border-left: 2px dashed var(--oziko-color-primary-light);
|
|
2312
2312
|
height: 100px;
|
|
2313
2313
|
}
|
|
2314
|
-
.DraggableBar-
|
|
2314
|
+
.DraggableBar-module_bar__TpW1R::after {
|
|
2315
2315
|
content: "";
|
|
2316
2316
|
position: absolute;
|
|
2317
2317
|
bottom: -8px;
|
|
@@ -2321,37 +2321,37 @@
|
|
|
2321
2321
|
border-radius: 100%;
|
|
2322
2322
|
background: var(--oziko-color-primary-light);
|
|
2323
2323
|
}
|
|
2324
|
-
.DashboardLayout-
|
|
2324
|
+
.DashboardLayout-module_layoutContainer__wOGEu {
|
|
2325
2325
|
width: 100%;
|
|
2326
2326
|
height: 100%;
|
|
2327
2327
|
}
|
|
2328
|
-
.DashboardLayout-
|
|
2328
|
+
.DashboardLayout-module_layoutContainer__wOGEu .DashboardLayout-module_addNewComponent__Gan9z {
|
|
2329
2329
|
width: 100%;
|
|
2330
2330
|
height: 100%;
|
|
2331
2331
|
}
|
|
2332
|
-
.DashboardLayout-
|
|
2332
|
+
.DashboardLayout-module_layoutContainer__wOGEu .DashboardLayout-module_addNewComponent__Gan9z .DashboardLayout-module_plusIcon__yQQHP {
|
|
2333
2333
|
width: 100px;
|
|
2334
2334
|
height: 100px;
|
|
2335
2335
|
color: var(--oziko-color-font-primary);
|
|
2336
2336
|
}
|
|
2337
2337
|
|
|
2338
|
-
.DashboardLayout-
|
|
2338
|
+
.DashboardLayout-module_gridItem__NtXI- {
|
|
2339
2339
|
display: flex;
|
|
2340
2340
|
background-color: var(--oziko-color-menu-background);
|
|
2341
2341
|
border-radius: var(--oziko-border-radius-md);
|
|
2342
2342
|
overflow: hidden;
|
|
2343
2343
|
}
|
|
2344
|
-
.MenuGroup-
|
|
2344
|
+
.MenuGroup-module_container__VQaFb {
|
|
2345
2345
|
background-color: var(--oziko-color-menu-background);
|
|
2346
2346
|
border-radius: var(--oziko-border-radius-md);
|
|
2347
2347
|
box-shadow: var(--box-shadow);
|
|
2348
2348
|
color: var(--oziko-color-font-primary);
|
|
2349
2349
|
}
|
|
2350
2350
|
|
|
2351
|
-
.MenuGroup-
|
|
2351
|
+
.MenuGroup-module_menuSection__Nfvar {
|
|
2352
2352
|
padding: var(--oziko-padding-md);
|
|
2353
2353
|
}
|
|
2354
|
-
.MenuGroup-
|
|
2354
|
+
.MenuGroup-module_menuSection__Nfvar .MenuGroup-module_label__5skIC {
|
|
2355
2355
|
width: 100%;
|
|
2356
2356
|
display: -webkit-box;
|
|
2357
2357
|
-webkit-box-orient: vertical;
|
|
@@ -2362,14 +2362,14 @@
|
|
|
2362
2362
|
color: var(--oziko-color-input-placeholder);
|
|
2363
2363
|
}
|
|
2364
2364
|
|
|
2365
|
-
.MenuGroup-
|
|
2365
|
+
.MenuGroup-module_noDivider__7fIo3 {
|
|
2366
2366
|
border-bottom: none !important;
|
|
2367
2367
|
}
|
|
2368
2368
|
|
|
2369
|
-
.MenuGroup-
|
|
2369
|
+
.MenuGroup-module_container__VQaFb > *:not(:last-child) {
|
|
2370
2370
|
border-bottom: 1px solid var(--oziko-color-border);
|
|
2371
2371
|
}
|
|
2372
|
-
.SideBar-
|
|
2372
|
+
.SideBar-module_container__eK6uD {
|
|
2373
2373
|
background-color: var(--oziko-color-background);
|
|
2374
2374
|
position: fixed;
|
|
2375
2375
|
top: 0;
|
|
@@ -2379,7 +2379,7 @@
|
|
|
2379
2379
|
display: flex;
|
|
2380
2380
|
padding: var(--oziko-padding-md) 0;
|
|
2381
2381
|
}
|
|
2382
|
-
.SideBar-
|
|
2382
|
+
.SideBar-module_container__eK6uD .SideBar-module_menuContainer__KZqBy {
|
|
2383
2383
|
height: 100%;
|
|
2384
2384
|
display: flex;
|
|
2385
2385
|
flex-direction: column;
|
|
@@ -2387,13 +2387,13 @@
|
|
|
2387
2387
|
align-items: center;
|
|
2388
2388
|
padding: 0 0 var(--oziko-padding-lg);
|
|
2389
2389
|
}
|
|
2390
|
-
.SideBar-
|
|
2390
|
+
.SideBar-module_container__eK6uD .SideBar-module_menu__yA1Q8 {
|
|
2391
2391
|
display: flex;
|
|
2392
2392
|
flex-direction: column;
|
|
2393
2393
|
align-items: flex-end;
|
|
2394
2394
|
width: 100%;
|
|
2395
2395
|
}
|
|
2396
|
-
.SideBar-
|
|
2396
|
+
.SideBar-module_container__eK6uD .SideBar-module_menu__yA1Q8 .SideBar-module_menuItem__XWNWi {
|
|
2397
2397
|
width: 50px;
|
|
2398
2398
|
height: 70px;
|
|
2399
2399
|
display: flex;
|
|
@@ -2403,13 +2403,13 @@
|
|
|
2403
2403
|
border-bottom-left-radius: var(--oziko-border-radius-md);
|
|
2404
2404
|
cursor: pointer;
|
|
2405
2405
|
}
|
|
2406
|
-
.SideBar-
|
|
2406
|
+
.SideBar-module_container__eK6uD .SideBar-module_menu__yA1Q8 .SideBar-module_active__oWYcQ {
|
|
2407
2407
|
background-color: var(--oziko-color-menu-background);
|
|
2408
2408
|
}
|
|
2409
|
-
.SideBar-
|
|
2409
|
+
.SideBar-module_container__eK6uD .SideBar-module_versionControl__sqQmv {
|
|
2410
2410
|
cursor: pointer;
|
|
2411
2411
|
}
|
|
2412
|
-
.Navigator-
|
|
2412
|
+
.Navigator-module_navigation__plbK8 {
|
|
2413
2413
|
flex: 8;
|
|
2414
2414
|
height: 100%;
|
|
2415
2415
|
background: white;
|
|
@@ -2419,46 +2419,46 @@
|
|
|
2419
2419
|
flex-direction: column;
|
|
2420
2420
|
gap: var(--oziko-gap-lg);
|
|
2421
2421
|
}
|
|
2422
|
-
.Navigator-
|
|
2422
|
+
.Navigator-module_navigation__plbK8 .Navigator-module_items__IjEtG {
|
|
2423
2423
|
display: flex;
|
|
2424
2424
|
flex-direction: column;
|
|
2425
2425
|
gap: var(--oziko-gap-md);
|
|
2426
2426
|
}
|
|
2427
|
-
.Navigator-
|
|
2427
|
+
.Navigator-module_navigation__plbK8 .Navigator-module_header__UiUm- {
|
|
2428
2428
|
padding: var(--oziko-padding-md) 0 !important;
|
|
2429
2429
|
}
|
|
2430
|
-
.Navigator-
|
|
2430
|
+
.Navigator-module_navigation__plbK8 .Navigator-module_header__UiUm- .Navigator-module_title__tD475 {
|
|
2431
2431
|
font-weight: 600;
|
|
2432
2432
|
}
|
|
2433
|
-
.Navigator-
|
|
2433
|
+
.Navigator-module_navigation__plbK8 .Navigator-module_header__UiUm- .Navigator-module_icon__a-igT {
|
|
2434
2434
|
padding: 0 !important;
|
|
2435
2435
|
height: unset !important;
|
|
2436
2436
|
}
|
|
2437
|
-
.Navigator-
|
|
2438
|
-
.Navigator-
|
|
2437
|
+
.Navigator-module_navigation__plbK8 .Navigator-module_content__-CdNj,
|
|
2438
|
+
.Navigator-module_navigation__plbK8 .Navigator-module_ungrouped__4Hmi2 {
|
|
2439
2439
|
padding: 0 !important;
|
|
2440
2440
|
}
|
|
2441
|
-
.StorageFileSelect-
|
|
2441
|
+
.StorageFileSelect-module_container__nWScU {
|
|
2442
2442
|
padding: 0;
|
|
2443
2443
|
}
|
|
2444
2444
|
|
|
2445
|
-
.StorageFileSelect-
|
|
2445
|
+
.StorageFileSelect-module_content__mO7ei {
|
|
2446
2446
|
display: grid !important;
|
|
2447
2447
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
2448
2448
|
background: var(--oziko-color-background);
|
|
2449
2449
|
}
|
|
2450
|
-
.StorageFileSelect-
|
|
2450
|
+
.StorageFileSelect-module_content__mO7ei .StorageFileSelect-module_file__BQW2b {
|
|
2451
2451
|
min-width: 100px;
|
|
2452
2452
|
min-height: 100px;
|
|
2453
2453
|
max-height: 200px;
|
|
2454
2454
|
height: 200px;
|
|
2455
2455
|
}
|
|
2456
|
-
.StorageModalHeading-
|
|
2456
|
+
.StorageModalHeading-module_inputContainer__-sj7l {
|
|
2457
2457
|
border: none !important;
|
|
2458
2458
|
background: var(--oziko-color-input-background) !important;
|
|
2459
2459
|
}
|
|
2460
2460
|
|
|
2461
|
-
.Array-
|
|
2461
|
+
.Array-module_inputMinimized__N3CzD {
|
|
2462
2462
|
background-color: var(--oziko-color-input-background);
|
|
2463
2463
|
border-radius: var(--oziko-border-radius-md);
|
|
2464
2464
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -2466,15 +2466,15 @@
|
|
|
2466
2466
|
color: var(--oziko-color-font-primary);
|
|
2467
2467
|
border-radius: 0;
|
|
2468
2468
|
}
|
|
2469
|
-
.Array-
|
|
2469
|
+
.Array-module_inputMinimized__N3CzD input {
|
|
2470
2470
|
padding: 0;
|
|
2471
2471
|
}
|
|
2472
2472
|
|
|
2473
|
-
.Array-
|
|
2473
|
+
.Array-module_contentContainer__Nf98X {
|
|
2474
2474
|
padding: 0 !important;
|
|
2475
2475
|
}
|
|
2476
2476
|
|
|
2477
|
-
.Array-
|
|
2477
|
+
.Array-module_value__X6PGp {
|
|
2478
2478
|
display: -webkit-box;
|
|
2479
2479
|
-webkit-box-orient: vertical;
|
|
2480
2480
|
overflow: hidden;
|
|
@@ -2483,72 +2483,72 @@
|
|
|
2483
2483
|
-webkit-line-clamp: 1;
|
|
2484
2484
|
display: block;
|
|
2485
2485
|
}
|
|
2486
|
-
.ArrayInput-
|
|
2486
|
+
.ArrayInput-module_container__pCN6T {
|
|
2487
2487
|
background-color: var(--oziko-color-input-background);
|
|
2488
2488
|
border-radius: var(--oziko-border-radius-md);
|
|
2489
2489
|
color: var(--oziko-color-input-placeholder);
|
|
2490
2490
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2491
2491
|
}
|
|
2492
|
-
.ArrayInput-
|
|
2492
|
+
.ArrayInput-module_container__pCN6T input {
|
|
2493
2493
|
padding: 0;
|
|
2494
2494
|
}
|
|
2495
|
-
.String-
|
|
2495
|
+
.String-module_icon__pKB1k {
|
|
2496
2496
|
color: var(--oziko-color-font-primary) !important;
|
|
2497
2497
|
}
|
|
2498
2498
|
|
|
2499
|
-
.String-
|
|
2499
|
+
.String-module_text__-rE-j {
|
|
2500
2500
|
color: var(--oziko-color-input-placeholder) !important;
|
|
2501
2501
|
}
|
|
2502
2502
|
|
|
2503
|
-
.String-
|
|
2503
|
+
.String-module_select__G6d9c {
|
|
2504
2504
|
background: none !important;
|
|
2505
2505
|
padding: var(--oziko-padding-md) 0 !important;
|
|
2506
2506
|
height: 100% !important;
|
|
2507
2507
|
}
|
|
2508
2508
|
|
|
2509
|
-
.String-
|
|
2509
|
+
.String-module_baseInput__ieBad {
|
|
2510
2510
|
padding: 0 var(--oziko-padding-lg) !important;
|
|
2511
2511
|
}
|
|
2512
2512
|
|
|
2513
|
-
.String-
|
|
2513
|
+
.String-module_input__sXbRz {
|
|
2514
2514
|
padding: var(--oziko-padding-md) 0 !important;
|
|
2515
2515
|
}
|
|
2516
|
-
.Number-
|
|
2516
|
+
.Number-module_icon__o1inF {
|
|
2517
2517
|
color: var(--oziko-color-font-primary) !important;
|
|
2518
2518
|
}
|
|
2519
2519
|
|
|
2520
|
-
.Number-
|
|
2520
|
+
.Number-module_text__S4l2F {
|
|
2521
2521
|
color: var(--oziko-color-input-placeholder) !important;
|
|
2522
2522
|
}
|
|
2523
2523
|
|
|
2524
|
-
.Number-
|
|
2524
|
+
.Number-module_select__NRfCp {
|
|
2525
2525
|
background: none !important;
|
|
2526
2526
|
padding: var(--oziko-padding-md) 0 !important;
|
|
2527
2527
|
height: 100% !important;
|
|
2528
2528
|
}
|
|
2529
2529
|
|
|
2530
|
-
.Number-
|
|
2530
|
+
.Number-module_baseInput__uueTo {
|
|
2531
2531
|
padding: 0 var(--oziko-padding-lg) !important;
|
|
2532
2532
|
}
|
|
2533
2533
|
|
|
2534
|
-
.Number-
|
|
2534
|
+
.Number-module_input__m1vMZ {
|
|
2535
2535
|
padding: var(--oziko-padding-md) 0 !important;
|
|
2536
2536
|
}
|
|
2537
|
-
.TextArea-
|
|
2537
|
+
.TextArea-module_container__VXi9C {
|
|
2538
2538
|
background-color: var(--oziko-color-input-background);
|
|
2539
2539
|
border-radius: var(--oziko-border-radius-md);
|
|
2540
2540
|
color: var(--oziko-color-input-placeholder);
|
|
2541
2541
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2542
2542
|
padding: var(--oziko-padding-md);
|
|
2543
2543
|
}
|
|
2544
|
-
.TextArea-
|
|
2544
|
+
.TextArea-module_container__VXi9C input {
|
|
2545
2545
|
padding: 0;
|
|
2546
2546
|
}
|
|
2547
|
-
.TextArea-
|
|
2547
|
+
.TextArea-module_container__VXi9C .TextArea-module_titleContainer__l1CD0 {
|
|
2548
2548
|
font-size: var(--oziko-font-size-md);
|
|
2549
2549
|
color: var(--oziko-color-input-placeholder);
|
|
2550
2550
|
}
|
|
2551
|
-
.TextArea-
|
|
2551
|
+
.TextArea-module_container__VXi9C .TextArea-module_textAreaInput__iYLK4 {
|
|
2552
2552
|
width: 100%;
|
|
2553
2553
|
padding: var(--oziko-padding-md);
|
|
2554
2554
|
font-size: var(--oziko-font-size-md);
|
|
@@ -2561,11 +2561,11 @@
|
|
|
2561
2561
|
border: 0;
|
|
2562
2562
|
line-height: 1rem;
|
|
2563
2563
|
}
|
|
2564
|
-
.TextArea-
|
|
2564
|
+
.TextArea-module_container__VXi9C .TextArea-module_textAreaInput__iYLK4::placeholder {
|
|
2565
2565
|
color: var(--oziko-color-input-placeholder);
|
|
2566
2566
|
font-size: var(--oziko-font-size-md);
|
|
2567
2567
|
}
|
|
2568
|
-
.TextArea-
|
|
2568
|
+
.TextArea-module_container__VXi9C .TextArea-module_description__VEpUG {
|
|
2569
2569
|
width: 100% !important;
|
|
2570
2570
|
display: -webkit-box!important;
|
|
2571
2571
|
-webkit-box-orient: vertical;
|
|
@@ -2575,17 +2575,17 @@
|
|
|
2575
2575
|
-webkit-line-clamp: 2 !important;
|
|
2576
2576
|
padding: 0 var(--oziko-padding-md);
|
|
2577
2577
|
}
|
|
2578
|
-
.Boolean-
|
|
2578
|
+
.Boolean-module_container__RN4yt {
|
|
2579
2579
|
background-color: var(--oziko-color-input-background);
|
|
2580
2580
|
border-radius: var(--oziko-border-radius-md);
|
|
2581
2581
|
color: var(--oziko-color-input-placeholder);
|
|
2582
2582
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2583
2583
|
}
|
|
2584
|
-
.Boolean-
|
|
2584
|
+
.Boolean-module_container__RN4yt input {
|
|
2585
2585
|
padding: 0;
|
|
2586
2586
|
}
|
|
2587
2587
|
|
|
2588
|
-
.Boolean-
|
|
2588
|
+
.Boolean-module_description__v3iuY {
|
|
2589
2589
|
width: 100% !important;
|
|
2590
2590
|
display: -webkit-box!important;
|
|
2591
2591
|
-webkit-box-orient: vertical;
|
|
@@ -2595,78 +2595,78 @@
|
|
|
2595
2595
|
-webkit-line-clamp: 2 !important;
|
|
2596
2596
|
padding: 0 var(--oziko-padding-md);
|
|
2597
2597
|
}
|
|
2598
|
-
.Color-
|
|
2598
|
+
.Color-module_baseInput__gWvlQ {
|
|
2599
2599
|
padding: 0 var(--oziko-padding-lg) !important;
|
|
2600
2600
|
}
|
|
2601
|
-
.Storage-
|
|
2601
|
+
.Storage-module_container__jdMaj {
|
|
2602
2602
|
background-color: var(--oziko-color-input-background);
|
|
2603
2603
|
border-radius: var(--oziko-border-radius-md);
|
|
2604
2604
|
color: var(--oziko-color-input-placeholder);
|
|
2605
2605
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2606
2606
|
padding: var(--oziko-padding-md);
|
|
2607
2607
|
}
|
|
2608
|
-
.Storage-
|
|
2608
|
+
.Storage-module_container__jdMaj input {
|
|
2609
2609
|
padding: 0;
|
|
2610
2610
|
}
|
|
2611
|
-
.Storage-
|
|
2611
|
+
.Storage-module_container__jdMaj .Storage-module_top__vhJmX {
|
|
2612
2612
|
padding: var(--oziko-padding-md);
|
|
2613
2613
|
}
|
|
2614
|
-
.Storage-
|
|
2614
|
+
.Storage-module_container__jdMaj .Storage-module_storage__aXBhd {
|
|
2615
2615
|
position: relative;
|
|
2616
2616
|
cursor: pointer;
|
|
2617
2617
|
opacity: 0.8;
|
|
2618
2618
|
transition: all var(--oziko-transition-duration) ease-in-out;
|
|
2619
2619
|
}
|
|
2620
|
-
.Storage-
|
|
2620
|
+
.Storage-module_container__jdMaj .Storage-module_storage__aXBhd .Storage-module_previewIcon__zNCCM {
|
|
2621
2621
|
position: absolute;
|
|
2622
2622
|
z-index: 1;
|
|
2623
2623
|
color: #ffd740;
|
|
2624
2624
|
transition: all var(--oziko-transition-duration) ease-in-out;
|
|
2625
2625
|
}
|
|
2626
|
-
.Storage-
|
|
2626
|
+
.Storage-module_container__jdMaj .Storage-module_storage__aXBhd .Storage-module_text__8eR8V span {
|
|
2627
2627
|
text-align: center;
|
|
2628
2628
|
}
|
|
2629
|
-
.Storage-
|
|
2629
|
+
.Storage-module_container__jdMaj .Storage-module_storage__aXBhd:hover {
|
|
2630
2630
|
opacity: 1;
|
|
2631
2631
|
}
|
|
2632
|
-
.Storage-
|
|
2632
|
+
.Storage-module_container__jdMaj .Storage-module_storage__aXBhd:hover .Storage-module_previewIcon__zNCCM {
|
|
2633
2633
|
transform: rotate(180deg);
|
|
2634
2634
|
}
|
|
2635
|
-
.MultipleSelection-
|
|
2635
|
+
.MultipleSelection-module_icon__ewhbs {
|
|
2636
2636
|
color: var(--oziko-color-font-primary) !important;
|
|
2637
2637
|
}
|
|
2638
2638
|
|
|
2639
|
-
.MultipleSelection-
|
|
2639
|
+
.MultipleSelection-module_text__G5mEr {
|
|
2640
2640
|
color: var(--oziko-color-input-placeholder) !important;
|
|
2641
2641
|
}
|
|
2642
2642
|
|
|
2643
|
-
.MultipleSelection-
|
|
2643
|
+
.MultipleSelection-module_select__YXbPL {
|
|
2644
2644
|
background: none !important;
|
|
2645
2645
|
padding: var(--oziko-padding-md) 0 !important;
|
|
2646
2646
|
height: 100% !important;
|
|
2647
2647
|
}
|
|
2648
2648
|
|
|
2649
|
-
.MultipleSelection-
|
|
2649
|
+
.MultipleSelection-module_baseInput__eUWHB {
|
|
2650
2650
|
padding: 0 var(--oziko-padding-lg) !important;
|
|
2651
2651
|
}
|
|
2652
|
-
.Location-
|
|
2652
|
+
.Location-module_location__ix8Fi {
|
|
2653
2653
|
background: var(--oziko-color-input-background);
|
|
2654
2654
|
padding: var(--oziko-gap-md);
|
|
2655
2655
|
border-radius: var(--oziko-border-radius-md);
|
|
2656
2656
|
}
|
|
2657
|
-
.Location-
|
|
2657
|
+
.Location-module_location__ix8Fi .Location-module_icon__a3NfC {
|
|
2658
2658
|
color: var(--oziko-color-font-primary);
|
|
2659
2659
|
}
|
|
2660
|
-
.Location-
|
|
2660
|
+
.Location-module_location__ix8Fi .Location-module_map__No0ks {
|
|
2661
2661
|
height: 100%;
|
|
2662
2662
|
width: 100%;
|
|
2663
2663
|
border-radius: var(--oziko-border-radius-md);
|
|
2664
2664
|
}
|
|
2665
|
-
.Location-
|
|
2665
|
+
.Location-module_location__ix8Fi .Location-module_mapMarker__J3aE2 {
|
|
2666
2666
|
width: 35px;
|
|
2667
2667
|
height: 35px;
|
|
2668
2668
|
}
|
|
2669
|
-
.Location-
|
|
2669
|
+
.Location-module_location__ix8Fi .Location-module_description__mG0kX {
|
|
2670
2670
|
width: 100% !important;
|
|
2671
2671
|
display: -webkit-box!important;
|
|
2672
2672
|
-webkit-box-orient: vertical;
|
|
@@ -2676,7 +2676,7 @@
|
|
|
2676
2676
|
-webkit-line-clamp: 2 !important;
|
|
2677
2677
|
padding: 0 var(--oziko-padding-md);
|
|
2678
2678
|
}
|
|
2679
|
-
.RichText-
|
|
2679
|
+
.RichText-module_container__MIFsF {
|
|
2680
2680
|
background-color: var(--oziko-color-input-background);
|
|
2681
2681
|
border-radius: var(--oziko-border-radius-md);
|
|
2682
2682
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -2684,10 +2684,10 @@
|
|
|
2684
2684
|
color: #000;
|
|
2685
2685
|
padding: var(--oziko-padding-md);
|
|
2686
2686
|
}
|
|
2687
|
-
.RichText-
|
|
2687
|
+
.RichText-module_container__MIFsF input {
|
|
2688
2688
|
padding: 0;
|
|
2689
2689
|
}
|
|
2690
|
-
.RichText-
|
|
2690
|
+
.RichText-module_container__MIFsF .RichText-module_description__-uZpI {
|
|
2691
2691
|
width: 100% !important;
|
|
2692
2692
|
display: -webkit-box!important;
|
|
2693
2693
|
-webkit-box-orient: vertical;
|
|
@@ -2697,7 +2697,7 @@
|
|
|
2697
2697
|
-webkit-line-clamp: 2 !important;
|
|
2698
2698
|
padding: 0 var(--oziko-padding-md);
|
|
2699
2699
|
}
|
|
2700
|
-
.LexicalContent-
|
|
2700
|
+
.LexicalContent-module_editableContent__f69V7 {
|
|
2701
2701
|
text-align: start;
|
|
2702
2702
|
width: 100%;
|
|
2703
2703
|
height: 100%;
|
|
@@ -2706,7 +2706,7 @@
|
|
|
2706
2706
|
border-top: var(--oziko-border-default);
|
|
2707
2707
|
overflow: auto;
|
|
2708
2708
|
}
|
|
2709
|
-
.
|
|
2709
|
+
.dropdown {
|
|
2710
2710
|
z-index: 1000;
|
|
2711
2711
|
display: block;
|
|
2712
2712
|
position: fixed;
|
|
@@ -2715,7 +2715,7 @@
|
|
|
2715
2715
|
background-color: var(--oziko-color-menu-background);
|
|
2716
2716
|
box-shadow: var(--box-shadow);
|
|
2717
2717
|
}
|
|
2718
|
-
.
|
|
2718
|
+
.dropdown .item {
|
|
2719
2719
|
padding: 2px 10px;
|
|
2720
2720
|
cursor: pointer;
|
|
2721
2721
|
line-height: 12px;
|
|
@@ -2731,38 +2731,38 @@
|
|
|
2731
2731
|
min-width: 100px;
|
|
2732
2732
|
background-color: var(--oziko-color-menu-background);
|
|
2733
2733
|
}
|
|
2734
|
-
.
|
|
2734
|
+
.dropdown .item:hover {
|
|
2735
2735
|
background-color: var(--oziko-color-zebra);
|
|
2736
2736
|
}
|
|
2737
2737
|
|
|
2738
|
-
.
|
|
2739
|
-
.
|
|
2738
|
+
.dropdown .item.fontsize-item,
|
|
2739
|
+
.dropdown .item.fontsize-item .text {
|
|
2740
2740
|
min-width: unset;
|
|
2741
2741
|
}
|
|
2742
2742
|
|
|
2743
|
-
.
|
|
2743
|
+
.dropdown .item .active {
|
|
2744
2744
|
display: flex;
|
|
2745
2745
|
width: 20px;
|
|
2746
2746
|
height: 20px;
|
|
2747
2747
|
background-size: contain;
|
|
2748
2748
|
}
|
|
2749
2749
|
|
|
2750
|
-
.
|
|
2750
|
+
.dropdown .item:first-child {
|
|
2751
2751
|
margin-top: 8px;
|
|
2752
2752
|
}
|
|
2753
2753
|
|
|
2754
|
-
.
|
|
2754
|
+
.dropdown .item:last-child {
|
|
2755
2755
|
margin-bottom: 8px;
|
|
2756
2756
|
}
|
|
2757
2757
|
|
|
2758
|
-
.
|
|
2758
|
+
.dropdown .item .text {
|
|
2759
2759
|
display: flex;
|
|
2760
2760
|
line-height: 20px;
|
|
2761
2761
|
flex-grow: 1;
|
|
2762
2762
|
min-width: 150px;
|
|
2763
2763
|
}
|
|
2764
2764
|
|
|
2765
|
-
.
|
|
2765
|
+
.dropdown .item .icon {
|
|
2766
2766
|
display: flex;
|
|
2767
2767
|
width: 20px;
|
|
2768
2768
|
height: 20px;
|
|
@@ -2774,7 +2774,7 @@
|
|
|
2774
2774
|
background-repeat: no-repeat;
|
|
2775
2775
|
}
|
|
2776
2776
|
|
|
2777
|
-
.
|
|
2777
|
+
.dropdown .divider {
|
|
2778
2778
|
width: auto;
|
|
2779
2779
|
background-color: #eee;
|
|
2780
2780
|
margin: 4px 8px;
|
|
@@ -2782,35 +2782,35 @@
|
|
|
2782
2782
|
}
|
|
2783
2783
|
|
|
2784
2784
|
@media screen and (max-width: 1100px) {
|
|
2785
|
-
.
|
|
2785
|
+
.dropdown-button-text {
|
|
2786
2786
|
display: none !important;
|
|
2787
2787
|
}
|
|
2788
|
-
.
|
|
2788
|
+
.dialog-dropdown > .dropdown-button-text {
|
|
2789
2789
|
display: flex !important;
|
|
2790
2790
|
}
|
|
2791
|
-
.
|
|
2791
|
+
.font-size .dropdown-button-text {
|
|
2792
2792
|
display: flex !important;
|
|
2793
2793
|
}
|
|
2794
|
-
.
|
|
2794
|
+
.code-language .dropdown-button-text {
|
|
2795
2795
|
display: flex !important;
|
|
2796
2796
|
}
|
|
2797
2797
|
}
|
|
2798
|
-
|
|
2798
|
+
button.toolbar-item.active {
|
|
2799
2799
|
background-color: rgba(168, 175, 189, 0.3);
|
|
2800
2800
|
}
|
|
2801
2801
|
|
|
2802
|
-
|
|
2802
|
+
button.toolbar-item.active i {
|
|
2803
2803
|
opacity: 1;
|
|
2804
2804
|
}
|
|
2805
2805
|
|
|
2806
|
-
.
|
|
2806
|
+
.toolbar {
|
|
2807
2807
|
display: flex;
|
|
2808
2808
|
align-items: center;
|
|
2809
2809
|
flex-wrap: wrap;
|
|
2810
2810
|
gap: var(--oziko-gap-sm);
|
|
2811
2811
|
}
|
|
2812
2812
|
|
|
2813
|
-
.
|
|
2813
|
+
.toolbar-item {
|
|
2814
2814
|
display: flex;
|
|
2815
2815
|
align-items: center;
|
|
2816
2816
|
justify-content: center;
|
|
@@ -2821,14 +2821,14 @@
|
|
|
2821
2821
|
border-radius: var(--oziko-border-radius-md);
|
|
2822
2822
|
}
|
|
2823
2823
|
|
|
2824
|
-
.
|
|
2824
|
+
.toolbar-item:hover {
|
|
2825
2825
|
background: var(--oziko-color-zebra);
|
|
2826
2826
|
}
|
|
2827
|
-
.
|
|
2827
|
+
.toolbar-item .toolbar-icon {
|
|
2828
2828
|
min-width: 18px;
|
|
2829
2829
|
min-height: 18px;
|
|
2830
2830
|
}
|
|
2831
|
-
.
|
|
2831
|
+
.toolbar-item.dropdownButton {
|
|
2832
2832
|
width: auto;
|
|
2833
2833
|
border-radius: var(--oziko-border-radius-md);
|
|
2834
2834
|
height: 30px;
|
|
@@ -2837,17 +2837,17 @@
|
|
|
2837
2837
|
padding-left: var(--oziko-padding-md);
|
|
2838
2838
|
}
|
|
2839
2839
|
|
|
2840
|
-
.
|
|
2840
|
+
.divider {
|
|
2841
2841
|
width: 1px;
|
|
2842
2842
|
background-color: var(--oziko-color-input-placeholder);
|
|
2843
2843
|
margin: 0 4px;
|
|
2844
2844
|
height: 20px;
|
|
2845
2845
|
}
|
|
2846
|
-
.
|
|
2846
|
+
.color-picker-wrapper {
|
|
2847
2847
|
padding: 20px;
|
|
2848
2848
|
}
|
|
2849
2849
|
|
|
2850
|
-
.
|
|
2850
|
+
.color-picker-basic-color {
|
|
2851
2851
|
display: flex;
|
|
2852
2852
|
flex-wrap: wrap;
|
|
2853
2853
|
gap: 10px;
|
|
@@ -2855,7 +2855,7 @@
|
|
|
2855
2855
|
padding: 0;
|
|
2856
2856
|
}
|
|
2857
2857
|
|
|
2858
|
-
.
|
|
2858
|
+
.color-picker-basic-color button {
|
|
2859
2859
|
border: 1px solid #ccc;
|
|
2860
2860
|
border-radius: 4px;
|
|
2861
2861
|
height: 16px;
|
|
@@ -2864,11 +2864,11 @@
|
|
|
2864
2864
|
list-style-type: none;
|
|
2865
2865
|
}
|
|
2866
2866
|
|
|
2867
|
-
.
|
|
2867
|
+
.color-picker-basic-color button.active {
|
|
2868
2868
|
box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.3);
|
|
2869
2869
|
}
|
|
2870
2870
|
|
|
2871
|
-
.
|
|
2871
|
+
.color-picker-saturation {
|
|
2872
2872
|
width: 100%;
|
|
2873
2873
|
position: relative;
|
|
2874
2874
|
margin-top: 15px;
|
|
@@ -2877,7 +2877,7 @@
|
|
|
2877
2877
|
linear-gradient(to right, white, transparent);
|
|
2878
2878
|
user-select: none;
|
|
2879
2879
|
}
|
|
2880
|
-
.
|
|
2880
|
+
.color-picker-saturation_cursor {
|
|
2881
2881
|
position: absolute;
|
|
2882
2882
|
width: 20px;
|
|
2883
2883
|
height: 20px;
|
|
@@ -2887,7 +2887,7 @@
|
|
|
2887
2887
|
box-sizing: border-box;
|
|
2888
2888
|
transform: translate(-10px, -10px);
|
|
2889
2889
|
}
|
|
2890
|
-
.
|
|
2890
|
+
.color-picker-hue {
|
|
2891
2891
|
width: 100%;
|
|
2892
2892
|
position: relative;
|
|
2893
2893
|
margin-top: 15px;
|
|
@@ -2906,7 +2906,7 @@
|
|
|
2906
2906
|
border-radius: 12px;
|
|
2907
2907
|
}
|
|
2908
2908
|
|
|
2909
|
-
.
|
|
2909
|
+
.color-picker-hue_cursor {
|
|
2910
2910
|
position: absolute;
|
|
2911
2911
|
width: 20px;
|
|
2912
2912
|
height: 20px;
|
|
@@ -2917,25 +2917,25 @@
|
|
|
2917
2917
|
transform: translate(-10px, -4px);
|
|
2918
2918
|
}
|
|
2919
2919
|
|
|
2920
|
-
.
|
|
2920
|
+
.color-picker-color {
|
|
2921
2921
|
border: 1px solid #ccc;
|
|
2922
2922
|
margin-top: 15px;
|
|
2923
2923
|
width: 100%;
|
|
2924
2924
|
height: 20px;
|
|
2925
2925
|
}
|
|
2926
2926
|
|
|
2927
|
-
.
|
|
2927
|
+
.Input__wrapper {
|
|
2928
2928
|
display: flex;
|
|
2929
2929
|
flex-direction: row;
|
|
2930
2930
|
align-items: center;
|
|
2931
2931
|
margin-bottom: 10px;
|
|
2932
2932
|
}
|
|
2933
|
-
.
|
|
2933
|
+
.Input__label {
|
|
2934
2934
|
display: flex;
|
|
2935
2935
|
flex: 1;
|
|
2936
2936
|
color: #666;
|
|
2937
2937
|
}
|
|
2938
|
-
.
|
|
2938
|
+
.Input__input {
|
|
2939
2939
|
display: flex;
|
|
2940
2940
|
flex: 2;
|
|
2941
2941
|
border: 1px solid #999;
|
|
@@ -2948,7 +2948,7 @@
|
|
|
2948
2948
|
min-width: 0;
|
|
2949
2949
|
}
|
|
2950
2950
|
|
|
2951
|
-
.
|
|
2951
|
+
.font-size-input {
|
|
2952
2952
|
font-weight: bold;
|
|
2953
2953
|
font-size: 12px;
|
|
2954
2954
|
color: #777;
|
|
@@ -2961,45 +2961,45 @@
|
|
|
2961
2961
|
width: 24px;
|
|
2962
2962
|
}
|
|
2963
2963
|
|
|
2964
|
-
|
|
2965
|
-
|
|
2964
|
+
input[type="number"]::-webkit-outer-spin-button,
|
|
2965
|
+
input[type="number"]::-webkit-inner-spin-button {
|
|
2966
2966
|
-webkit-appearance: none;
|
|
2967
2967
|
margin: 0;
|
|
2968
2968
|
}
|
|
2969
2969
|
|
|
2970
|
-
|
|
2970
|
+
input[type="number"] {
|
|
2971
2971
|
-moz-appearance: textfield;
|
|
2972
2972
|
}
|
|
2973
2973
|
|
|
2974
|
-
|
|
2974
|
+
button.font-decrement {
|
|
2975
2975
|
padding: 0px;
|
|
2976
2976
|
margin-right: 3px;
|
|
2977
2977
|
}
|
|
2978
2978
|
|
|
2979
|
-
|
|
2979
|
+
button.font-increment {
|
|
2980
2980
|
padding: 0px;
|
|
2981
2981
|
margin-left: 3px;
|
|
2982
2982
|
}
|
|
2983
2983
|
|
|
2984
|
-
.ObjectInput-
|
|
2984
|
+
.ObjectInput-module_container__JtW64 {
|
|
2985
2985
|
background-color: var(--oziko-color-input-background);
|
|
2986
2986
|
border-radius: var(--oziko-border-radius-md);
|
|
2987
2987
|
color: var(--oziko-color-input-placeholder);
|
|
2988
2988
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2989
2989
|
}
|
|
2990
|
-
.ObjectInput-
|
|
2990
|
+
.ObjectInput-module_container__JtW64 input {
|
|
2991
2991
|
padding: 0;
|
|
2992
2992
|
}
|
|
2993
|
-
.ChipInput-
|
|
2993
|
+
.ChipInput-module_chipInputContainer__qkZtV {
|
|
2994
2994
|
background-color: var(--oziko-color-input-background);
|
|
2995
2995
|
border-radius: var(--oziko-border-radius-md);
|
|
2996
2996
|
color: var(--oziko-color-input-placeholder);
|
|
2997
2997
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
2998
2998
|
}
|
|
2999
|
-
.ChipInput-
|
|
2999
|
+
.ChipInput-module_chipInputContainer__qkZtV input {
|
|
3000
3000
|
padding: 0;
|
|
3001
3001
|
}
|
|
3002
|
-
.ColorMinimized-
|
|
3002
|
+
.ColorMinimized-module_colorMinimized__CnRpu {
|
|
3003
3003
|
background-color: var(--oziko-color-input-background);
|
|
3004
3004
|
border-radius: var(--oziko-border-radius-md);
|
|
3005
3005
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -3009,62 +3009,62 @@
|
|
|
3009
3009
|
padding: 0 var(--oziko-padding-md);
|
|
3010
3010
|
font-size: var(--oziko-font-size-md);
|
|
3011
3011
|
}
|
|
3012
|
-
.ColorMinimized-
|
|
3012
|
+
.ColorMinimized-module_colorMinimized__CnRpu input {
|
|
3013
3013
|
padding: 0;
|
|
3014
3014
|
}
|
|
3015
|
-
.ColorMinimized-
|
|
3015
|
+
.ColorMinimized-module_colorMinimized__CnRpu .ColorMinimized-module_closeIcon__SH3uo {
|
|
3016
3016
|
border: 0;
|
|
3017
3017
|
padding: 0;
|
|
3018
3018
|
}
|
|
3019
|
-
.Date-
|
|
3019
|
+
.Date-module_minimizedDatePicker__ZIsQ7 {
|
|
3020
3020
|
background-color: var(--oziko-color-input-background);
|
|
3021
3021
|
border-radius: var(--oziko-border-radius-md);
|
|
3022
3022
|
color: var(--oziko-color-input-placeholder);
|
|
3023
3023
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
3024
3024
|
}
|
|
3025
|
-
.Date-
|
|
3025
|
+
.Date-module_minimizedDatePicker__ZIsQ7 input {
|
|
3026
3026
|
padding: 0;
|
|
3027
3027
|
}
|
|
3028
|
-
.Date-
|
|
3028
|
+
.Date-module_minimizedDatePicker__ZIsQ7 .Date-module_clearButton__WMLse {
|
|
3029
3029
|
cursor: pointer;
|
|
3030
3030
|
height: max-content;
|
|
3031
3031
|
padding: 0 !important;
|
|
3032
3032
|
}
|
|
3033
|
-
.Location-
|
|
3033
|
+
.Location-module_container__SbKlF {
|
|
3034
3034
|
background-color: var(--oziko-color-input-background);
|
|
3035
3035
|
border-radius: var(--oziko-border-radius-md);
|
|
3036
3036
|
color: var(--oziko-color-input-placeholder);
|
|
3037
3037
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
3038
3038
|
}
|
|
3039
|
-
.Location-
|
|
3039
|
+
.Location-module_container__SbKlF input {
|
|
3040
3040
|
padding: 0;
|
|
3041
3041
|
}
|
|
3042
3042
|
|
|
3043
|
-
.Location-
|
|
3043
|
+
.Location-module_map__7pBAg {
|
|
3044
3044
|
width: 300px;
|
|
3045
3045
|
height: 300px;
|
|
3046
3046
|
}
|
|
3047
|
-
.MultiSelection-
|
|
3047
|
+
.MultiSelection-module_multiSelectionContainer__tUi2u {
|
|
3048
3048
|
background-color: var(--oziko-color-input-background);
|
|
3049
3049
|
border-radius: var(--oziko-border-radius-md);
|
|
3050
3050
|
color: var(--oziko-color-input-placeholder);
|
|
3051
3051
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
3052
3052
|
padding: 0;
|
|
3053
3053
|
}
|
|
3054
|
-
.MultiSelection-
|
|
3054
|
+
.MultiSelection-module_multiSelectionContainer__tUi2u input {
|
|
3055
3055
|
padding: 0;
|
|
3056
3056
|
}
|
|
3057
|
-
.MultiSelection-
|
|
3057
|
+
.MultiSelection-module_multiSelectionContainer__tUi2u .MultiSelection-module_multiSelect__SA5u- {
|
|
3058
3058
|
background: transparent;
|
|
3059
3059
|
}
|
|
3060
|
-
.MultiSelection-
|
|
3060
|
+
.MultiSelection-module_multiSelectionContainer__tUi2u .MultiSelection-module_visible__q-F19 {
|
|
3061
3061
|
visibility: visible;
|
|
3062
3062
|
}
|
|
3063
|
-
.MultiSelection-
|
|
3063
|
+
.MultiSelection-module_multiSelectionContainer__tUi2u .MultiSelection-module_hidden__nt7o2 {
|
|
3064
3064
|
visibility: hidden;
|
|
3065
3065
|
pointer-events: none;
|
|
3066
3066
|
}
|
|
3067
|
-
.NumberMinimized-
|
|
3067
|
+
.NumberMinimized-module_numberMinimized__o1ZAN {
|
|
3068
3068
|
background-color: var(--oziko-color-input-background);
|
|
3069
3069
|
border-radius: var(--oziko-border-radius-md);
|
|
3070
3070
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -3074,18 +3074,18 @@
|
|
|
3074
3074
|
padding: 0 var(--oziko-padding-md);
|
|
3075
3075
|
font-size: var(--oziko-font-size-md);
|
|
3076
3076
|
}
|
|
3077
|
-
.NumberMinimized-
|
|
3077
|
+
.NumberMinimized-module_numberMinimized__o1ZAN input {
|
|
3078
3078
|
padding: 0;
|
|
3079
3079
|
}
|
|
3080
|
-
.NumberMinimized-
|
|
3080
|
+
.NumberMinimized-module_numberMinimized__o1ZAN .NumberMinimized-module_select__yHQXe {
|
|
3081
3081
|
background: var(--oziko-color-input-background);
|
|
3082
3082
|
padding: 0;
|
|
3083
3083
|
}
|
|
3084
|
-
.NumberMinimized-
|
|
3084
|
+
.NumberMinimized-module_numberMinimized__o1ZAN .NumberMinimized-module_closeIcon__EgNTI {
|
|
3085
3085
|
border: 0;
|
|
3086
3086
|
padding: 0;
|
|
3087
3087
|
}
|
|
3088
|
-
.Object-
|
|
3088
|
+
.Object-module_inputMinimized__JH1n- {
|
|
3089
3089
|
background-color: var(--oziko-color-input-background);
|
|
3090
3090
|
border-radius: var(--oziko-border-radius-md);
|
|
3091
3091
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -3093,15 +3093,15 @@
|
|
|
3093
3093
|
color: var(--oziko-color-font-primary);
|
|
3094
3094
|
border-radius: 0;
|
|
3095
3095
|
}
|
|
3096
|
-
.Object-
|
|
3096
|
+
.Object-module_inputMinimized__JH1n- input {
|
|
3097
3097
|
padding: 0;
|
|
3098
3098
|
}
|
|
3099
3099
|
|
|
3100
|
-
.Object-
|
|
3100
|
+
.Object-module_contentContainer__y0Sfp {
|
|
3101
3101
|
padding: 0 !important;
|
|
3102
3102
|
}
|
|
3103
3103
|
|
|
3104
|
-
.Object-
|
|
3104
|
+
.Object-module_value__SJt70 {
|
|
3105
3105
|
display: -webkit-box;
|
|
3106
3106
|
-webkit-box-orient: vertical;
|
|
3107
3107
|
overflow: hidden;
|
|
@@ -3110,7 +3110,7 @@
|
|
|
3110
3110
|
-webkit-line-clamp: 1;
|
|
3111
3111
|
display: block;
|
|
3112
3112
|
}
|
|
3113
|
-
.RichText-
|
|
3113
|
+
.RichText-module_richTextMinimized__LUAfH {
|
|
3114
3114
|
background-color: var(--oziko-color-input-background);
|
|
3115
3115
|
border-radius: var(--oziko-border-radius-md);
|
|
3116
3116
|
color: var(--oziko-color-input-placeholder);
|
|
@@ -3118,45 +3118,45 @@
|
|
|
3118
3118
|
color: var(--oziko-color-font-primary);
|
|
3119
3119
|
border-radius: 0;
|
|
3120
3120
|
}
|
|
3121
|
-
.RichText-
|
|
3121
|
+
.RichText-module_richTextMinimized__LUAfH input {
|
|
3122
3122
|
padding: 0;
|
|
3123
3123
|
}
|
|
3124
|
-
.StringMinimized-
|
|
3124
|
+
.StringMinimized-module_stringMinimized__m53JQ {
|
|
3125
3125
|
border-radius: 0;
|
|
3126
3126
|
padding: 0 var(--oziko-padding-md);
|
|
3127
3127
|
font-size: var(--oziko-font-size-md);
|
|
3128
3128
|
color: var(--oziko-color-font-primary);
|
|
3129
3129
|
background: var(--oziko-color-input-background);
|
|
3130
3130
|
}
|
|
3131
|
-
.StringMinimized-
|
|
3131
|
+
.StringMinimized-module_stringMinimized__m53JQ .StringMinimized-module_select__uPgy- {
|
|
3132
3132
|
background: var(--oziko-color-input-background);
|
|
3133
3133
|
}
|
|
3134
|
-
.StringMinimized-
|
|
3134
|
+
.StringMinimized-module_stringMinimized__m53JQ .StringMinimized-module_closeIcon__N2ycP {
|
|
3135
3135
|
border: 0;
|
|
3136
3136
|
}
|
|
3137
|
-
.TextArea-
|
|
3137
|
+
.TextArea-module_textArea__VbAA6 {
|
|
3138
3138
|
background-color: var(--oziko-color-input-background);
|
|
3139
3139
|
border-radius: var(--oziko-border-radius-md);
|
|
3140
3140
|
color: var(--oziko-color-input-placeholder);
|
|
3141
3141
|
padding: var(--oziko-padding-md) var(--oziko-padding-lg);
|
|
3142
3142
|
}
|
|
3143
|
-
.TextArea-
|
|
3143
|
+
.TextArea-module_textArea__VbAA6 input {
|
|
3144
3144
|
padding: 0;
|
|
3145
3145
|
}
|
|
3146
|
-
.TextArea-
|
|
3146
|
+
.TextArea-module_textArea__VbAA6 textarea {
|
|
3147
3147
|
border: none;
|
|
3148
3148
|
outline: none;
|
|
3149
3149
|
width: 100%;
|
|
3150
3150
|
padding: 0;
|
|
3151
3151
|
}
|
|
3152
|
-
.Drawer-
|
|
3152
|
+
.Drawer-module_drawerContainer__ygAhi {
|
|
3153
3153
|
position: absolute;
|
|
3154
3154
|
width: 100% !important;
|
|
3155
3155
|
height: 100% !important;
|
|
3156
3156
|
top: 0;
|
|
3157
3157
|
}
|
|
3158
3158
|
|
|
3159
|
-
.Drawer-
|
|
3159
|
+
.Drawer-module_contentContainer__Bku-Q {
|
|
3160
3160
|
position: fixed;
|
|
3161
3161
|
background-color: var(--oziko-color-menu-background);
|
|
3162
3162
|
overflow: auto;
|
|
@@ -3164,88 +3164,88 @@
|
|
|
3164
3164
|
flex-direction: column;
|
|
3165
3165
|
align-items: flex-end;
|
|
3166
3166
|
}
|
|
3167
|
-
.Drawer-
|
|
3167
|
+
.Drawer-module_contentContainer__Bku-Q .Drawer-module_closeButton__dw57X {
|
|
3168
3168
|
position: sticky;
|
|
3169
3169
|
top: 0;
|
|
3170
3170
|
padding: var(--oziko-padding-md);
|
|
3171
3171
|
cursor: pointer;
|
|
3172
3172
|
align-self: flex-end;
|
|
3173
3173
|
}
|
|
3174
|
-
.Drawer-
|
|
3174
|
+
.Drawer-module_contentContainer__Bku-Q .Drawer-module_closeButton__dw57X.Drawer-module_leftPosition__kS7SQ {
|
|
3175
3175
|
align-self: flex-start;
|
|
3176
3176
|
}
|
|
3177
|
-
.Drawer-
|
|
3177
|
+
.Drawer-module_contentContainer__Bku-Q .Drawer-module_scrollableContent__gAaIU {
|
|
3178
3178
|
flex: 1;
|
|
3179
3179
|
overflow: auto;
|
|
3180
3180
|
width: 100%;
|
|
3181
3181
|
}
|
|
3182
|
-
.Drawer-
|
|
3182
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz {
|
|
3183
3183
|
width: 100%;
|
|
3184
3184
|
}
|
|
3185
|
-
.Drawer-
|
|
3185
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK.Drawer-module_xs__jAtGZ, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz.Drawer-module_xs__jAtGZ {
|
|
3186
3186
|
height: 25%;
|
|
3187
3187
|
}
|
|
3188
|
-
.Drawer-
|
|
3188
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK.Drawer-module_sm__Up7LN, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz.Drawer-module_sm__Up7LN {
|
|
3189
3189
|
height: 35%;
|
|
3190
3190
|
}
|
|
3191
|
-
.Drawer-
|
|
3191
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK.Drawer-module_md__cJcNU, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz.Drawer-module_md__cJcNU {
|
|
3192
3192
|
height: 50%;
|
|
3193
3193
|
}
|
|
3194
|
-
.Drawer-
|
|
3194
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK.Drawer-module_lg__c7C-6, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz.Drawer-module_lg__c7C-6 {
|
|
3195
3195
|
height: 60%;
|
|
3196
3196
|
}
|
|
3197
|
-
.Drawer-
|
|
3197
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK.Drawer-module_xl__r6s2-, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz.Drawer-module_xl__r6s2- {
|
|
3198
3198
|
height: 75%;
|
|
3199
3199
|
}
|
|
3200
|
-
.Drawer-
|
|
3200
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK.Drawer-module_full__maAwS, .Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz.Drawer-module_full__maAwS {
|
|
3201
3201
|
height: 100%;
|
|
3202
3202
|
}
|
|
3203
|
-
.Drawer-
|
|
3203
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr {
|
|
3204
3204
|
height: 100%;
|
|
3205
3205
|
}
|
|
3206
|
-
.Drawer-
|
|
3206
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V.Drawer-module_xs__jAtGZ, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr.Drawer-module_xs__jAtGZ {
|
|
3207
3207
|
width: 25%;
|
|
3208
3208
|
}
|
|
3209
|
-
.Drawer-
|
|
3209
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V.Drawer-module_sm__Up7LN, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr.Drawer-module_sm__Up7LN {
|
|
3210
3210
|
width: 35%;
|
|
3211
3211
|
}
|
|
3212
|
-
.Drawer-
|
|
3212
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V.Drawer-module_md__cJcNU, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr.Drawer-module_md__cJcNU {
|
|
3213
3213
|
width: 50%;
|
|
3214
3214
|
}
|
|
3215
|
-
.Drawer-
|
|
3215
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V.Drawer-module_lg__c7C-6, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr.Drawer-module_lg__c7C-6 {
|
|
3216
3216
|
width: 60%;
|
|
3217
3217
|
}
|
|
3218
|
-
.Drawer-
|
|
3218
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V.Drawer-module_xl__r6s2-, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr.Drawer-module_xl__r6s2- {
|
|
3219
3219
|
width: 75%;
|
|
3220
3220
|
}
|
|
3221
|
-
.Drawer-
|
|
3221
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V.Drawer-module_full__maAwS, .Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr.Drawer-module_full__maAwS {
|
|
3222
3222
|
width: 100%;
|
|
3223
3223
|
}
|
|
3224
|
-
.Drawer-
|
|
3224
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_top__YhWtK {
|
|
3225
3225
|
top: 0;
|
|
3226
3226
|
}
|
|
3227
|
-
.Drawer-
|
|
3227
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_right__X1qUr {
|
|
3228
3228
|
right: 0;
|
|
3229
3229
|
}
|
|
3230
|
-
.Drawer-
|
|
3230
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_bottom__5nFWz {
|
|
3231
3231
|
bottom: 0;
|
|
3232
3232
|
}
|
|
3233
|
-
.Drawer-
|
|
3233
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_left__NCP-V {
|
|
3234
3234
|
left: 0;
|
|
3235
3235
|
}
|
|
3236
|
-
.Drawer-
|
|
3236
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_leftToMiddle__UwTtm {
|
|
3237
3237
|
animation: Drawer-module_slideFromLeft__PD3iU var(--oziko-transition-duration) forwards ease;
|
|
3238
3238
|
}
|
|
3239
|
-
.Drawer-
|
|
3239
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_rightToMiddle__-1zTg {
|
|
3240
3240
|
animation: Drawer-module_slideFromRight__y-9Lp var(--oziko-transition-duration) forwards ease;
|
|
3241
3241
|
}
|
|
3242
|
-
.Drawer-
|
|
3242
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_topToBottom__DlPXA {
|
|
3243
3243
|
animation: Drawer-module_slideFromTop__-c93O var(--oziko-transition-duration) forwards ease;
|
|
3244
3244
|
}
|
|
3245
|
-
.Drawer-
|
|
3245
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_bottomToTop__b0ULm {
|
|
3246
3246
|
animation: Drawer-module_slideFromBottom__uSm8d var(--oziko-transition-duration) forwards ease;
|
|
3247
3247
|
}
|
|
3248
|
-
.Drawer-
|
|
3248
|
+
.Drawer-module_contentContainer__Bku-Q.Drawer-module_shake__pBbnG {
|
|
3249
3249
|
animation: Drawer-module_shake__pBbnG var(--oziko-transition-duration) ease-in-out;
|
|
3250
3250
|
}
|
|
3251
3251
|
@keyframes Drawer-module_slideFromLeft__PD3iU {
|
|
@@ -3299,14 +3299,14 @@
|
|
|
3299
3299
|
transform: translateX(10px);
|
|
3300
3300
|
}
|
|
3301
3301
|
}
|
|
3302
|
-
.Tab-
|
|
3302
|
+
.Tab-module_container__e6CN6 {
|
|
3303
3303
|
position: relative;
|
|
3304
3304
|
display: flex;
|
|
3305
3305
|
align-items: center;
|
|
3306
3306
|
justify-content: space-between;
|
|
3307
3307
|
padding: var(--oziko-padding-xs);
|
|
3308
3308
|
}
|
|
3309
|
-
.Tab-
|
|
3309
|
+
.Tab-module_container__e6CN6 .Tab-module_indicator__UNCf0 {
|
|
3310
3310
|
position: absolute;
|
|
3311
3311
|
height: 100%;
|
|
3312
3312
|
background-color: var(--oziko-color-primary);
|
|
@@ -3314,37 +3314,37 @@
|
|
|
3314
3314
|
transition: transform var(--oziko-transition-duration) ease-out, left var(--oziko-transition-duration) ease-out;
|
|
3315
3315
|
z-index: 1;
|
|
3316
3316
|
}
|
|
3317
|
-
.Tab-
|
|
3317
|
+
.Tab-module_container__e6CN6 .Tab-module_item__jpQZh {
|
|
3318
3318
|
z-index: 1;
|
|
3319
3319
|
}
|
|
3320
|
-
.Tab-
|
|
3320
|
+
.Tab-module_container__e6CN6.Tab-module_default__qy-23 {
|
|
3321
3321
|
background-color: var(--oziko-color-default);
|
|
3322
3322
|
border: var(--oziko-border-default);
|
|
3323
3323
|
}
|
|
3324
|
-
.Tab-
|
|
3324
|
+
.Tab-module_container__e6CN6.Tab-module_default__qy-23 .Tab-module_active__687wz {
|
|
3325
3325
|
color: var(--oziko-color-default);
|
|
3326
3326
|
}
|
|
3327
|
-
.Tab-
|
|
3327
|
+
.Tab-module_container__e6CN6.Tab-module_default__qy-23 .Tab-module_indicator__UNCf0 {
|
|
3328
3328
|
height: calc(100% - 2 * var(--oziko-padding-xs));
|
|
3329
3329
|
}
|
|
3330
|
-
.Tab-
|
|
3330
|
+
.Tab-module_container__e6CN6.Tab-module_underline__1gKBc {
|
|
3331
3331
|
background: transparent;
|
|
3332
3332
|
border-bottom: var(--oziko-border-default);
|
|
3333
3333
|
}
|
|
3334
|
-
.Tab-
|
|
3334
|
+
.Tab-module_container__e6CN6.Tab-module_underline__1gKBc .Tab-module_indicator__UNCf0 {
|
|
3335
3335
|
bottom: -1px;
|
|
3336
3336
|
height: 2px;
|
|
3337
3337
|
}
|
|
3338
|
-
.Tab-
|
|
3338
|
+
.Tab-module_container__e6CN6.Tab-module_window__vPuG0 {
|
|
3339
3339
|
background-color: transparent;
|
|
3340
3340
|
}
|
|
3341
|
-
.Tab-
|
|
3341
|
+
.Tab-module_container__e6CN6.Tab-module_window__vPuG0 .Tab-module_item__jpQZh {
|
|
3342
3342
|
border-right: var(--oziko-border-default);
|
|
3343
3343
|
}
|
|
3344
|
-
.Tab-
|
|
3344
|
+
.Tab-module_container__e6CN6.Tab-module_window__vPuG0 .Tab-module_item__jpQZh .Tab-module_root__gGJhw {
|
|
3345
3345
|
opacity: 0.25;
|
|
3346
3346
|
}
|
|
3347
|
-
.Tab-
|
|
3347
|
+
.Tab-module_container__e6CN6.Tab-module_window__vPuG0 .Tab-module_active__687wz {
|
|
3348
3348
|
background-color: var(--oziko-color-default);
|
|
3349
3349
|
opacity: 1;
|
|
3350
3350
|
}
|