@delon/theme 20.1.0 → 21.0.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compact.css +853 -632
- package/compact.min.css +1 -1
- package/dark.css +850 -629
- package/dark.min.css +1 -1
- package/default.css +850 -629
- package/default.min.css +1 -1
- package/fesm2022/layout-default.mjs +499 -400
- package/fesm2022/layout-default.mjs.map +1 -1
- package/fesm2022/setting-drawer.mjs +90 -17
- package/fesm2022/setting-drawer.mjs.map +1 -1
- package/fesm2022/theme-btn.mjs +97 -33
- package/fesm2022/theme-btn.mjs.map +1 -1
- package/fesm2022/theme.mjs +507 -149
- package/fesm2022/theme.mjs.map +1 -1
- package/layout-default/style/_layout.less +2 -1
- package/package.json +12 -12
- package/system/theme-default.less +1 -1
- package/types/layout-default.d.ts +210 -0
- package/types/theme-btn.d.ts +42 -0
- package/{index.d.ts → types/theme.d.ts} +29 -7
- package/variable.css +850 -629
- package/variable.min.css +1 -1
- package/layout-default/index.d.ts +0 -245
- package/theme-btn/index.d.ts +0 -42
- /package/{layout-blank/index.d.ts → types/layout-blank.d.ts} +0 -0
- /package/{setting-drawer/index.d.ts → types/setting-drawer.d.ts} +0 -0
package/variable.css
CHANGED
|
@@ -90,9 +90,6 @@ html {
|
|
|
90
90
|
-ms-overflow-style: scrollbar;
|
|
91
91
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
92
92
|
}
|
|
93
|
-
@-ms-viewport {
|
|
94
|
-
width: device-width;
|
|
95
|
-
}
|
|
96
93
|
body {
|
|
97
94
|
margin: 0;
|
|
98
95
|
color: rgba(0, 0, 0, 0.85);
|
|
@@ -352,10 +349,6 @@ template {
|
|
|
352
349
|
[hidden] {
|
|
353
350
|
display: none !important;
|
|
354
351
|
}
|
|
355
|
-
mark {
|
|
356
|
-
padding: 0.2em;
|
|
357
|
-
background-color: #feffe6;
|
|
358
|
-
}
|
|
359
352
|
::selection {
|
|
360
353
|
color: #fff;
|
|
361
354
|
background: var(--ant-primary-color);
|
|
@@ -427,72 +420,6 @@ mark {
|
|
|
427
420
|
display: inline-block;
|
|
428
421
|
animation: loadingCircle 1s infinite linear;
|
|
429
422
|
}
|
|
430
|
-
.ant-fade-enter,
|
|
431
|
-
.ant-fade-appear {
|
|
432
|
-
animation-duration: 0.2s;
|
|
433
|
-
animation-fill-mode: both;
|
|
434
|
-
animation-play-state: paused;
|
|
435
|
-
}
|
|
436
|
-
.ant-fade-leave {
|
|
437
|
-
animation-duration: 0.2s;
|
|
438
|
-
animation-fill-mode: both;
|
|
439
|
-
animation-play-state: paused;
|
|
440
|
-
}
|
|
441
|
-
.ant-fade-enter.ant-fade-enter-active,
|
|
442
|
-
.ant-fade-appear.ant-fade-appear-active {
|
|
443
|
-
animation-name: antFadeIn;
|
|
444
|
-
animation-play-state: running;
|
|
445
|
-
}
|
|
446
|
-
.ant-fade-leave.ant-fade-leave-active {
|
|
447
|
-
animation-name: antFadeOut;
|
|
448
|
-
animation-play-state: running;
|
|
449
|
-
pointer-events: none;
|
|
450
|
-
}
|
|
451
|
-
.ant-fade-enter,
|
|
452
|
-
.ant-fade-appear {
|
|
453
|
-
animation-duration: 0.2s;
|
|
454
|
-
animation-fill-mode: both;
|
|
455
|
-
animation-play-state: paused;
|
|
456
|
-
}
|
|
457
|
-
.ant-fade-leave {
|
|
458
|
-
animation-duration: 0.2s;
|
|
459
|
-
animation-fill-mode: both;
|
|
460
|
-
animation-play-state: paused;
|
|
461
|
-
}
|
|
462
|
-
.ant-fade-enter.ant-fade-enter-active,
|
|
463
|
-
.ant-fade-appear.ant-fade-appear-active {
|
|
464
|
-
animation-name: antFadeIn;
|
|
465
|
-
animation-play-state: running;
|
|
466
|
-
}
|
|
467
|
-
.ant-fade-leave.ant-fade-leave-active {
|
|
468
|
-
animation-name: antFadeOut;
|
|
469
|
-
animation-play-state: running;
|
|
470
|
-
pointer-events: none;
|
|
471
|
-
}
|
|
472
|
-
.ant-fade-enter,
|
|
473
|
-
.ant-fade-appear {
|
|
474
|
-
opacity: 0;
|
|
475
|
-
animation-timing-function: linear;
|
|
476
|
-
}
|
|
477
|
-
.ant-fade-leave {
|
|
478
|
-
animation-timing-function: linear;
|
|
479
|
-
}
|
|
480
|
-
@keyframes antFadeIn {
|
|
481
|
-
0% {
|
|
482
|
-
opacity: 0;
|
|
483
|
-
}
|
|
484
|
-
100% {
|
|
485
|
-
opacity: 1;
|
|
486
|
-
}
|
|
487
|
-
}
|
|
488
|
-
@keyframes antFadeOut {
|
|
489
|
-
0% {
|
|
490
|
-
opacity: 1;
|
|
491
|
-
}
|
|
492
|
-
100% {
|
|
493
|
-
opacity: 0;
|
|
494
|
-
}
|
|
495
|
-
}
|
|
496
423
|
.ant-move-up-enter,
|
|
497
424
|
.ant-move-up-appear {
|
|
498
425
|
animation-duration: 0.2s;
|
|
@@ -2240,68 +2167,6 @@ nz-link {
|
|
|
2240
2167
|
margin-right: 3px;
|
|
2241
2168
|
margin-left: 0;
|
|
2242
2169
|
}
|
|
2243
|
-
.ant-back-top {
|
|
2244
|
-
box-sizing: border-box;
|
|
2245
|
-
margin: 0;
|
|
2246
|
-
padding: 0;
|
|
2247
|
-
color: rgba(0, 0, 0, 0.85);
|
|
2248
|
-
font-size: 14px;
|
|
2249
|
-
font-variant: tabular-nums;
|
|
2250
|
-
line-height: 1.5715;
|
|
2251
|
-
list-style: none;
|
|
2252
|
-
font-feature-settings: 'tnum';
|
|
2253
|
-
position: fixed;
|
|
2254
|
-
right: 100px;
|
|
2255
|
-
bottom: 50px;
|
|
2256
|
-
z-index: 10;
|
|
2257
|
-
width: 40px;
|
|
2258
|
-
height: 40px;
|
|
2259
|
-
cursor: pointer;
|
|
2260
|
-
}
|
|
2261
|
-
.ant-back-top:empty {
|
|
2262
|
-
display: none;
|
|
2263
|
-
}
|
|
2264
|
-
.ant-back-top-rtl {
|
|
2265
|
-
right: auto;
|
|
2266
|
-
left: 100px;
|
|
2267
|
-
direction: rtl;
|
|
2268
|
-
}
|
|
2269
|
-
.ant-back-top-content {
|
|
2270
|
-
width: 40px;
|
|
2271
|
-
height: 40px;
|
|
2272
|
-
overflow: hidden;
|
|
2273
|
-
color: #fff;
|
|
2274
|
-
text-align: center;
|
|
2275
|
-
background-color: rgba(0, 0, 0, 0.45);
|
|
2276
|
-
border-radius: 20px;
|
|
2277
|
-
transition: all 0.3s;
|
|
2278
|
-
}
|
|
2279
|
-
.ant-back-top-content:hover {
|
|
2280
|
-
background-color: rgba(0, 0, 0, 0.85);
|
|
2281
|
-
transition: all 0.3s;
|
|
2282
|
-
}
|
|
2283
|
-
.ant-back-top-icon {
|
|
2284
|
-
font-size: 24px;
|
|
2285
|
-
line-height: 40px;
|
|
2286
|
-
}
|
|
2287
|
-
@media screen and (max-width: 768px) {
|
|
2288
|
-
.ant-back-top {
|
|
2289
|
-
right: 60px;
|
|
2290
|
-
}
|
|
2291
|
-
.ant-back-top-rtl {
|
|
2292
|
-
right: auto;
|
|
2293
|
-
left: 60px;
|
|
2294
|
-
}
|
|
2295
|
-
}
|
|
2296
|
-
@media screen and (max-width: 480px) {
|
|
2297
|
-
.ant-back-top {
|
|
2298
|
-
right: 20px;
|
|
2299
|
-
}
|
|
2300
|
-
.ant-back-top-rtl {
|
|
2301
|
-
right: auto;
|
|
2302
|
-
left: 20px;
|
|
2303
|
-
}
|
|
2304
|
-
}
|
|
2305
2170
|
.ant-badge {
|
|
2306
2171
|
box-sizing: border-box;
|
|
2307
2172
|
margin: 0;
|
|
@@ -2601,16 +2466,7 @@ nz-link {
|
|
|
2601
2466
|
border: 4px solid;
|
|
2602
2467
|
transform: scaleY(0.75);
|
|
2603
2468
|
transform-origin: top;
|
|
2604
|
-
|
|
2605
|
-
.ant-ribbon-corner::after {
|
|
2606
|
-
position: absolute;
|
|
2607
|
-
top: -4px;
|
|
2608
|
-
left: -4px;
|
|
2609
|
-
width: inherit;
|
|
2610
|
-
height: inherit;
|
|
2611
|
-
color: rgba(0, 0, 0, 0.25);
|
|
2612
|
-
border: inherit;
|
|
2613
|
-
content: '';
|
|
2469
|
+
filter: brightness(75%);
|
|
2614
2470
|
}
|
|
2615
2471
|
.ant-ribbon-color-pink {
|
|
2616
2472
|
color: #eb2f96;
|
|
@@ -6373,48 +6229,48 @@ nz-comment-content {
|
|
|
6373
6229
|
color: rgba(0, 0, 0, 0.25);
|
|
6374
6230
|
}
|
|
6375
6231
|
.ant-picker.ant-picker-borderless {
|
|
6376
|
-
background-color: transparent
|
|
6377
|
-
border-color: transparent
|
|
6378
|
-
box-shadow: none
|
|
6232
|
+
background-color: transparent;
|
|
6233
|
+
border-color: transparent;
|
|
6234
|
+
box-shadow: none;
|
|
6379
6235
|
}
|
|
6380
6236
|
.ant-picker.ant-picker-filled {
|
|
6381
|
-
background-color: #f5f5f5
|
|
6382
|
-
border-color: transparent
|
|
6383
|
-
box-shadow: none
|
|
6237
|
+
background-color: #f5f5f5;
|
|
6238
|
+
border-color: transparent;
|
|
6239
|
+
box-shadow: none;
|
|
6384
6240
|
}
|
|
6385
6241
|
.ant-picker.ant-picker-filled:hover {
|
|
6386
|
-
background-color: #f0f0f0
|
|
6387
|
-
border-color: transparent
|
|
6388
|
-
box-shadow: none
|
|
6242
|
+
background-color: #f0f0f0;
|
|
6243
|
+
border-color: transparent;
|
|
6244
|
+
box-shadow: none;
|
|
6389
6245
|
}
|
|
6390
6246
|
.ant-picker.ant-picker-filled:focus,
|
|
6391
6247
|
.ant-picker.ant-picker-filled.ant-picker-focused {
|
|
6392
|
-
border-color: var(--ant-primary-color-hover)
|
|
6393
|
-
box-shadow: 0 0 0 2px var(--ant-primary-color-outline)
|
|
6394
|
-
border-right-width: 1px
|
|
6395
|
-
outline: 0
|
|
6396
|
-
background-color: transparent
|
|
6397
|
-
box-shadow: none
|
|
6248
|
+
border-color: var(--ant-primary-color-hover);
|
|
6249
|
+
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
6250
|
+
border-right-width: 1px;
|
|
6251
|
+
outline: 0;
|
|
6252
|
+
background-color: transparent;
|
|
6253
|
+
box-shadow: none;
|
|
6398
6254
|
}
|
|
6399
6255
|
.ant-input-rtl .ant-picker.ant-picker-filled:focus,
|
|
6400
6256
|
.ant-input-rtl .ant-picker.ant-picker-filled.ant-picker-focused {
|
|
6401
|
-
border-right-width: 0
|
|
6257
|
+
border-right-width: 0;
|
|
6402
6258
|
border-left-width: 1px !important;
|
|
6403
6259
|
}
|
|
6404
6260
|
.ant-picker.ant-picker-filled.ant-picker-disabled,
|
|
6405
6261
|
.ant-picker.ant-picker-filled.ant-picker[disabled] {
|
|
6406
|
-
background-color: #f5f5f5
|
|
6407
|
-
border-color: #d9d9d9
|
|
6408
|
-
box-shadow: none
|
|
6409
|
-
cursor: not-allowed
|
|
6410
|
-
opacity: 1
|
|
6411
|
-
pointer-events: none
|
|
6412
|
-
color: rgba(0, 0, 0, 0.25)
|
|
6262
|
+
background-color: #f5f5f5;
|
|
6263
|
+
border-color: #d9d9d9;
|
|
6264
|
+
box-shadow: none;
|
|
6265
|
+
cursor: not-allowed;
|
|
6266
|
+
opacity: 1;
|
|
6267
|
+
pointer-events: none;
|
|
6268
|
+
color: rgba(0, 0, 0, 0.25);
|
|
6413
6269
|
}
|
|
6414
6270
|
.ant-picker.ant-picker-filled.ant-picker-disabled:hover,
|
|
6415
6271
|
.ant-picker.ant-picker-filled.ant-picker[disabled]:hover {
|
|
6416
|
-
border-color: #d9d9d9
|
|
6417
|
-
border-right-width: 1px
|
|
6272
|
+
border-color: #d9d9d9;
|
|
6273
|
+
border-right-width: 1px;
|
|
6418
6274
|
}
|
|
6419
6275
|
.ant-picker.ant-picker-underlined,
|
|
6420
6276
|
.ant-picker.ant-picker-underlined:hover,
|
|
@@ -6422,10 +6278,13 @@ nz-comment-content {
|
|
|
6422
6278
|
.ant-picker.ant-picker-underlined.ant-picker-focused,
|
|
6423
6279
|
.ant-picker.ant-picker-underlined.ant-picker-disabled,
|
|
6424
6280
|
.ant-picker.ant-picker-underlined.ant-picker[disabled] {
|
|
6425
|
-
background-color: transparent
|
|
6426
|
-
border-width: 0 0 1px
|
|
6427
|
-
border-radius: 0
|
|
6428
|
-
box-shadow: none
|
|
6281
|
+
background-color: transparent;
|
|
6282
|
+
border-width: 0 0 1px;
|
|
6283
|
+
border-radius: 0;
|
|
6284
|
+
box-shadow: none;
|
|
6285
|
+
}
|
|
6286
|
+
.ant-picker.ant-picker-underlined:hover:not(.ant-picker-focused):not(:focus) {
|
|
6287
|
+
border-color: #d9d9d9;
|
|
6429
6288
|
}
|
|
6430
6289
|
.ant-picker-input {
|
|
6431
6290
|
position: relative;
|
|
@@ -6514,67 +6373,66 @@ nz-comment-content {
|
|
|
6514
6373
|
border-color: #d9d9d9;
|
|
6515
6374
|
border-right-width: 1px;
|
|
6516
6375
|
}
|
|
6517
|
-
.ant-picker-input > input
|
|
6518
|
-
.ant-picker-input > input
|
|
6519
|
-
.ant-picker-input > input
|
|
6520
|
-
.ant-picker-input > input-borderless.ant-picker-input > input-focused,
|
|
6521
|
-
.ant-picker-input > input-borderless.ant-picker-input > input-disabled,
|
|
6522
|
-
.ant-picker-input > input-borderless.ant-picker-input > input[disabled] {
|
|
6523
|
-
background-color: transparent
|
|
6524
|
-
border: none
|
|
6525
|
-
box-shadow: none
|
|
6376
|
+
.ant-picker-input > input.ant-picker-input > input-borderless,
|
|
6377
|
+
.ant-picker-input > input.ant-picker-input > input-borderless:hover,
|
|
6378
|
+
.ant-picker-input > input.ant-picker-input > input-borderless:focus,
|
|
6379
|
+
.ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input-focused,
|
|
6380
|
+
.ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input-disabled,
|
|
6381
|
+
.ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input[disabled] {
|
|
6382
|
+
background-color: transparent;
|
|
6383
|
+
border: none;
|
|
6384
|
+
box-shadow: none;
|
|
6526
6385
|
}
|
|
6527
|
-
.ant-picker-input > input-filled {
|
|
6528
|
-
background-color: #f5f5f5
|
|
6386
|
+
.ant-picker-input > input.ant-picker-input > input-filled {
|
|
6387
|
+
background-color: #f5f5f5;
|
|
6529
6388
|
border-color: transparent;
|
|
6530
|
-
box-shadow: none
|
|
6389
|
+
box-shadow: none;
|
|
6531
6390
|
}
|
|
6532
|
-
.ant-picker-input > input
|
|
6533
|
-
background-color: #f0f0f0
|
|
6534
|
-
border-color: transparent !important;
|
|
6391
|
+
.ant-picker-input > input.ant-picker-input > input-filled:hover {
|
|
6392
|
+
background-color: #f0f0f0;
|
|
6535
6393
|
}
|
|
6536
|
-
.ant-picker-input > input-filled:focus,
|
|
6537
|
-
.ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6394
|
+
.ant-picker-input > input.ant-picker-input > input-filled:focus,
|
|
6395
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6538
6396
|
border-color: var(--ant-primary-color-hover);
|
|
6539
6397
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
6540
6398
|
border-right-width: 1px;
|
|
6541
6399
|
outline: 0;
|
|
6542
|
-
background-color: transparent
|
|
6543
|
-
box-shadow: none
|
|
6400
|
+
background-color: transparent;
|
|
6401
|
+
box-shadow: none;
|
|
6544
6402
|
}
|
|
6545
|
-
.ant-input-rtl .ant-picker-input > input-filled:focus,
|
|
6546
|
-
.ant-input-rtl .ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6403
|
+
.ant-input-rtl .ant-picker-input > input.ant-picker-input > input-filled:focus,
|
|
6404
|
+
.ant-input-rtl .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6547
6405
|
border-right-width: 0;
|
|
6548
6406
|
border-left-width: 1px !important;
|
|
6549
6407
|
}
|
|
6550
|
-
.ant-picker-input > input-filled.ant-picker-input > input-disabled,
|
|
6551
|
-
.ant-picker-input > input-filled.ant-picker-input > input[disabled] {
|
|
6552
|
-
background-color: #f5f5f5
|
|
6553
|
-
border-color: #d9d9d9
|
|
6554
|
-
box-shadow: none
|
|
6555
|
-
cursor: not-allowed
|
|
6556
|
-
opacity: 1
|
|
6557
|
-
pointer-events: none
|
|
6558
|
-
color: rgba(0, 0, 0, 0.25)
|
|
6408
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-disabled,
|
|
6409
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input[disabled] {
|
|
6410
|
+
background-color: #f5f5f5;
|
|
6411
|
+
border-color: #d9d9d9;
|
|
6412
|
+
box-shadow: none;
|
|
6413
|
+
cursor: not-allowed;
|
|
6414
|
+
opacity: 1;
|
|
6415
|
+
pointer-events: none;
|
|
6416
|
+
color: rgba(0, 0, 0, 0.25);
|
|
6559
6417
|
}
|
|
6560
|
-
.ant-picker-input > input-filled.ant-picker-input > input-disabled:hover,
|
|
6561
|
-
.ant-picker-input > input-filled.ant-picker-input > input[disabled]:hover {
|
|
6562
|
-
border-color: #d9d9d9
|
|
6563
|
-
border-right-width: 1px
|
|
6564
|
-
}
|
|
6565
|
-
.ant-picker-input > input-underlined.ant-picker-input > input,
|
|
6566
|
-
.ant-picker-input > input-underlined:hover,
|
|
6567
|
-
.ant-picker-input > input-underlined:focus,
|
|
6568
|
-
.ant-picker-input > input-underlined.ant-picker-input > input-focused,
|
|
6569
|
-
.ant-picker-input > input-underlined.ant-picker-input > input-disabled,
|
|
6570
|
-
.ant-picker-input > input-underlined.ant-picker-input > input[disabled] {
|
|
6571
|
-
background-color: transparent !important;
|
|
6572
|
-
border-width: 0 0 1px !important;
|
|
6573
|
-
border-radius: 0 !important;
|
|
6574
|
-
box-shadow: none !important;
|
|
6418
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-disabled:hover,
|
|
6419
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input[disabled]:hover {
|
|
6420
|
+
border-color: #d9d9d9;
|
|
6421
|
+
border-right-width: 1px;
|
|
6575
6422
|
}
|
|
6576
|
-
.ant-picker-input > input
|
|
6577
|
-
|
|
6423
|
+
.ant-picker-input > input.ant-picker-input > input-underlined,
|
|
6424
|
+
.ant-picker-input > input.ant-picker-input > input-underlined:hover,
|
|
6425
|
+
.ant-picker-input > input.ant-picker-input > input-underlined:focus,
|
|
6426
|
+
.ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input-focused,
|
|
6427
|
+
.ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input-disabled,
|
|
6428
|
+
.ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input[disabled] {
|
|
6429
|
+
background-color: transparent;
|
|
6430
|
+
border-width: 0 0 1px;
|
|
6431
|
+
border-radius: 0;
|
|
6432
|
+
box-shadow: none;
|
|
6433
|
+
}
|
|
6434
|
+
.ant-picker-input > input.ant-picker-input > input-underlined:hover:not(.ant-picker-input > input-focused):not(:focus) {
|
|
6435
|
+
border-color: #d9d9d9;
|
|
6578
6436
|
}
|
|
6579
6437
|
textarea.ant-picker-input > input {
|
|
6580
6438
|
max-width: 100%;
|
|
@@ -7954,10 +7812,7 @@ nz-descriptions {
|
|
|
7954
7812
|
}
|
|
7955
7813
|
.ant-drawer {
|
|
7956
7814
|
position: fixed;
|
|
7957
|
-
|
|
7958
|
-
right: 0;
|
|
7959
|
-
bottom: 0;
|
|
7960
|
-
left: 0;
|
|
7815
|
+
inset: 0;
|
|
7961
7816
|
z-index: 1000;
|
|
7962
7817
|
pointer-events: none;
|
|
7963
7818
|
}
|
|
@@ -7966,10 +7821,7 @@ nz-descriptions {
|
|
|
7966
7821
|
}
|
|
7967
7822
|
.ant-drawer-mask {
|
|
7968
7823
|
position: absolute;
|
|
7969
|
-
|
|
7970
|
-
right: 0;
|
|
7971
|
-
bottom: 0;
|
|
7972
|
-
left: 0;
|
|
7824
|
+
inset: 0;
|
|
7973
7825
|
z-index: 1000;
|
|
7974
7826
|
background: rgba(0, 0, 0, 0.45);
|
|
7975
7827
|
pointer-events: auto;
|
|
@@ -8206,6 +8058,18 @@ nz-descriptions {
|
|
|
8206
8058
|
.ant-drawer-panel-motion-bottom-leave-active {
|
|
8207
8059
|
transform: translateY(100%);
|
|
8208
8060
|
}
|
|
8061
|
+
.ant-drawer-mask-motion-enter {
|
|
8062
|
+
animation-name: antFadeIn;
|
|
8063
|
+
animation-duration: 0.3s;
|
|
8064
|
+
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8065
|
+
animation-fill-mode: both;
|
|
8066
|
+
}
|
|
8067
|
+
.ant-drawer-mask-motion-leave {
|
|
8068
|
+
animation-name: antFadeOut;
|
|
8069
|
+
animation-duration: 0.3s;
|
|
8070
|
+
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
8071
|
+
animation-fill-mode: both;
|
|
8072
|
+
}
|
|
8209
8073
|
.ant-drawer-rtl {
|
|
8210
8074
|
direction: rtl;
|
|
8211
8075
|
}
|
|
@@ -14216,67 +14080,66 @@ nz-empty {
|
|
|
14216
14080
|
border-color: #d9d9d9;
|
|
14217
14081
|
border-right-width: 1px;
|
|
14218
14082
|
}
|
|
14219
|
-
.ant-input-affix-wrapper
|
|
14220
|
-
.ant-input-affix-wrapper
|
|
14221
|
-
.ant-input-affix-wrapper
|
|
14222
|
-
.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-focused,
|
|
14223
|
-
.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-disabled,
|
|
14224
|
-
.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper[disabled] {
|
|
14225
|
-
background-color: transparent
|
|
14226
|
-
border: none
|
|
14227
|
-
box-shadow: none
|
|
14083
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless,
|
|
14084
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless:hover,
|
|
14085
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless:focus,
|
|
14086
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-focused,
|
|
14087
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-disabled,
|
|
14088
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper[disabled] {
|
|
14089
|
+
background-color: transparent;
|
|
14090
|
+
border: none;
|
|
14091
|
+
box-shadow: none;
|
|
14228
14092
|
}
|
|
14229
|
-
.ant-input-affix-wrapper-filled {
|
|
14230
|
-
background-color: #f5f5f5
|
|
14093
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled {
|
|
14094
|
+
background-color: #f5f5f5;
|
|
14231
14095
|
border-color: transparent;
|
|
14232
|
-
box-shadow: none
|
|
14096
|
+
box-shadow: none;
|
|
14233
14097
|
}
|
|
14234
|
-
.ant-input-affix-wrapper
|
|
14235
|
-
background-color: #f0f0f0
|
|
14236
|
-
border-color: transparent !important;
|
|
14098
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled:hover {
|
|
14099
|
+
background-color: #f0f0f0;
|
|
14237
14100
|
}
|
|
14238
|
-
.ant-input-affix-wrapper-filled:focus,
|
|
14239
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14101
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled:focus,
|
|
14102
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14240
14103
|
border-color: var(--ant-primary-color-hover);
|
|
14241
14104
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
14242
14105
|
border-right-width: 1px;
|
|
14243
14106
|
outline: 0;
|
|
14244
|
-
background-color: transparent
|
|
14245
|
-
box-shadow: none
|
|
14107
|
+
background-color: transparent;
|
|
14108
|
+
box-shadow: none;
|
|
14246
14109
|
}
|
|
14247
|
-
.ant-input-rtl .ant-input-affix-wrapper-filled:focus,
|
|
14248
|
-
.ant-input-rtl .ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14110
|
+
.ant-input-rtl .ant-input-affix-wrapper.ant-input-affix-wrapper-filled:focus,
|
|
14111
|
+
.ant-input-rtl .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14249
14112
|
border-right-width: 0;
|
|
14250
14113
|
border-left-width: 1px !important;
|
|
14251
14114
|
}
|
|
14252
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled,
|
|
14253
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled] {
|
|
14254
|
-
background-color: #f5f5f5
|
|
14255
|
-
border-color: #d9d9d9
|
|
14256
|
-
box-shadow: none
|
|
14257
|
-
cursor: not-allowed
|
|
14258
|
-
opacity: 1
|
|
14259
|
-
pointer-events: none
|
|
14260
|
-
color: rgba(0, 0, 0, 0.25)
|
|
14115
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled,
|
|
14116
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled] {
|
|
14117
|
+
background-color: #f5f5f5;
|
|
14118
|
+
border-color: #d9d9d9;
|
|
14119
|
+
box-shadow: none;
|
|
14120
|
+
cursor: not-allowed;
|
|
14121
|
+
opacity: 1;
|
|
14122
|
+
pointer-events: none;
|
|
14123
|
+
color: rgba(0, 0, 0, 0.25);
|
|
14261
14124
|
}
|
|
14262
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled:hover,
|
|
14263
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled]:hover {
|
|
14264
|
-
border-color: #d9d9d9
|
|
14265
|
-
border-right-width: 1px
|
|
14266
|
-
}
|
|
14267
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper,
|
|
14268
|
-
.ant-input-affix-wrapper-underlined:hover,
|
|
14269
|
-
.ant-input-affix-wrapper-underlined:focus,
|
|
14270
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-focused,
|
|
14271
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-disabled,
|
|
14272
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper[disabled] {
|
|
14273
|
-
background-color: transparent !important;
|
|
14274
|
-
border-width: 0 0 1px !important;
|
|
14275
|
-
border-radius: 0 !important;
|
|
14276
|
-
box-shadow: none !important;
|
|
14125
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled:hover,
|
|
14126
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled]:hover {
|
|
14127
|
+
border-color: #d9d9d9;
|
|
14128
|
+
border-right-width: 1px;
|
|
14277
14129
|
}
|
|
14278
|
-
.ant-input-affix-wrapper
|
|
14279
|
-
|
|
14130
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined,
|
|
14131
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:hover,
|
|
14132
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:focus,
|
|
14133
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-focused,
|
|
14134
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-disabled,
|
|
14135
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper[disabled] {
|
|
14136
|
+
background-color: transparent;
|
|
14137
|
+
border-width: 0 0 1px;
|
|
14138
|
+
border-radius: 0;
|
|
14139
|
+
box-shadow: none;
|
|
14140
|
+
}
|
|
14141
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:hover:not(.ant-input-affix-wrapper-focused):not(:focus) {
|
|
14142
|
+
border-color: #d9d9d9;
|
|
14280
14143
|
}
|
|
14281
14144
|
textarea.ant-input-affix-wrapper {
|
|
14282
14145
|
max-width: 100%;
|
|
@@ -14553,67 +14416,66 @@ textarea.ant-input-affix-wrapper {
|
|
|
14553
14416
|
border-color: #d9d9d9;
|
|
14554
14417
|
border-right-width: 1px;
|
|
14555
14418
|
}
|
|
14556
|
-
.ant-input
|
|
14557
|
-
.ant-input
|
|
14558
|
-
.ant-input
|
|
14559
|
-
.ant-input-borderless.ant-input-focused,
|
|
14560
|
-
.ant-input-borderless.ant-input-disabled,
|
|
14561
|
-
.ant-input-borderless.ant-input[disabled] {
|
|
14562
|
-
background-color: transparent
|
|
14563
|
-
border: none
|
|
14564
|
-
box-shadow: none
|
|
14419
|
+
.ant-input.ant-input-borderless,
|
|
14420
|
+
.ant-input.ant-input-borderless:hover,
|
|
14421
|
+
.ant-input.ant-input-borderless:focus,
|
|
14422
|
+
.ant-input.ant-input-borderless.ant-input-focused,
|
|
14423
|
+
.ant-input.ant-input-borderless.ant-input-disabled,
|
|
14424
|
+
.ant-input.ant-input-borderless.ant-input[disabled] {
|
|
14425
|
+
background-color: transparent;
|
|
14426
|
+
border: none;
|
|
14427
|
+
box-shadow: none;
|
|
14565
14428
|
}
|
|
14566
|
-
.ant-input-filled {
|
|
14567
|
-
background-color: #f5f5f5
|
|
14429
|
+
.ant-input.ant-input-filled {
|
|
14430
|
+
background-color: #f5f5f5;
|
|
14568
14431
|
border-color: transparent;
|
|
14569
|
-
box-shadow: none
|
|
14432
|
+
box-shadow: none;
|
|
14570
14433
|
}
|
|
14571
|
-
.ant-input
|
|
14572
|
-
background-color: #f0f0f0
|
|
14573
|
-
border-color: transparent !important;
|
|
14434
|
+
.ant-input.ant-input-filled:hover {
|
|
14435
|
+
background-color: #f0f0f0;
|
|
14574
14436
|
}
|
|
14575
|
-
.ant-input-filled:focus,
|
|
14576
|
-
.ant-input-filled.ant-input-focused {
|
|
14437
|
+
.ant-input.ant-input-filled:focus,
|
|
14438
|
+
.ant-input.ant-input-filled.ant-input-focused {
|
|
14577
14439
|
border-color: var(--ant-primary-color-hover);
|
|
14578
14440
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
14579
14441
|
border-right-width: 1px;
|
|
14580
14442
|
outline: 0;
|
|
14581
|
-
background-color: transparent
|
|
14582
|
-
box-shadow: none
|
|
14443
|
+
background-color: transparent;
|
|
14444
|
+
box-shadow: none;
|
|
14583
14445
|
}
|
|
14584
|
-
.ant-input-rtl .ant-input-filled:focus,
|
|
14585
|
-
.ant-input-rtl .ant-input-filled.ant-input-focused {
|
|
14446
|
+
.ant-input-rtl .ant-input.ant-input-filled:focus,
|
|
14447
|
+
.ant-input-rtl .ant-input.ant-input-filled.ant-input-focused {
|
|
14586
14448
|
border-right-width: 0;
|
|
14587
14449
|
border-left-width: 1px !important;
|
|
14588
14450
|
}
|
|
14589
|
-
.ant-input-filled.ant-input-disabled,
|
|
14590
|
-
.ant-input-filled.ant-input[disabled] {
|
|
14591
|
-
background-color: #f5f5f5
|
|
14592
|
-
border-color: #d9d9d9
|
|
14593
|
-
box-shadow: none
|
|
14594
|
-
cursor: not-allowed
|
|
14595
|
-
opacity: 1
|
|
14596
|
-
pointer-events: none
|
|
14597
|
-
color: rgba(0, 0, 0, 0.25)
|
|
14451
|
+
.ant-input.ant-input-filled.ant-input-disabled,
|
|
14452
|
+
.ant-input.ant-input-filled.ant-input[disabled] {
|
|
14453
|
+
background-color: #f5f5f5;
|
|
14454
|
+
border-color: #d9d9d9;
|
|
14455
|
+
box-shadow: none;
|
|
14456
|
+
cursor: not-allowed;
|
|
14457
|
+
opacity: 1;
|
|
14458
|
+
pointer-events: none;
|
|
14459
|
+
color: rgba(0, 0, 0, 0.25);
|
|
14598
14460
|
}
|
|
14599
|
-
.ant-input-filled.ant-input-disabled:hover,
|
|
14600
|
-
.ant-input-filled.ant-input[disabled]:hover {
|
|
14601
|
-
border-color: #d9d9d9
|
|
14602
|
-
border-right-width: 1px
|
|
14603
|
-
}
|
|
14604
|
-
.ant-input-underlined.ant-input,
|
|
14605
|
-
.ant-input-underlined:hover,
|
|
14606
|
-
.ant-input-underlined:focus,
|
|
14607
|
-
.ant-input-underlined.ant-input-focused,
|
|
14608
|
-
.ant-input-underlined.ant-input-disabled,
|
|
14609
|
-
.ant-input-underlined.ant-input[disabled] {
|
|
14610
|
-
background-color: transparent !important;
|
|
14611
|
-
border-width: 0 0 1px !important;
|
|
14612
|
-
border-radius: 0 !important;
|
|
14613
|
-
box-shadow: none !important;
|
|
14461
|
+
.ant-input.ant-input-filled.ant-input-disabled:hover,
|
|
14462
|
+
.ant-input.ant-input-filled.ant-input[disabled]:hover {
|
|
14463
|
+
border-color: #d9d9d9;
|
|
14464
|
+
border-right-width: 1px;
|
|
14614
14465
|
}
|
|
14615
|
-
.ant-input
|
|
14616
|
-
|
|
14466
|
+
.ant-input.ant-input-underlined,
|
|
14467
|
+
.ant-input.ant-input-underlined:hover,
|
|
14468
|
+
.ant-input.ant-input-underlined:focus,
|
|
14469
|
+
.ant-input.ant-input-underlined.ant-input-focused,
|
|
14470
|
+
.ant-input.ant-input-underlined.ant-input-disabled,
|
|
14471
|
+
.ant-input.ant-input-underlined.ant-input[disabled] {
|
|
14472
|
+
background-color: transparent;
|
|
14473
|
+
border-width: 0 0 1px;
|
|
14474
|
+
border-radius: 0;
|
|
14475
|
+
box-shadow: none;
|
|
14476
|
+
}
|
|
14477
|
+
.ant-input.ant-input-underlined:hover:not(.ant-input-focused):not(:focus) {
|
|
14478
|
+
border-color: #d9d9d9;
|
|
14617
14479
|
}
|
|
14618
14480
|
textarea.ant-input {
|
|
14619
14481
|
max-width: 100%;
|
|
@@ -14999,14 +14861,42 @@ textarea.ant-input {
|
|
|
14999
14861
|
text-align: start;
|
|
15000
14862
|
vertical-align: top;
|
|
15001
14863
|
}
|
|
15002
|
-
.ant-input-
|
|
14864
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input-compact-item .ant-input,
|
|
14865
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input-compact-item .ant-input-group-addon {
|
|
14866
|
+
border-radius: 0;
|
|
14867
|
+
}
|
|
14868
|
+
.ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-first-item .ant-input,
|
|
14869
|
+
.ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-first-item .ant-input-group-addon {
|
|
14870
|
+
border-start-end-radius: 0;
|
|
14871
|
+
border-end-end-radius: 0;
|
|
14872
|
+
}
|
|
14873
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-last-item .ant-input,
|
|
14874
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-last-item .ant-input-group-addon {
|
|
14875
|
+
border-start-start-radius: 0;
|
|
14876
|
+
border-end-start-radius: 0;
|
|
14877
|
+
}
|
|
14878
|
+
.ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-item .ant-input-affix-wrapper {
|
|
14879
|
+
border-start-end-radius: 0;
|
|
14880
|
+
border-end-end-radius: 0;
|
|
14881
|
+
}
|
|
14882
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-item .ant-input-affix-wrapper {
|
|
14883
|
+
border-start-start-radius: 0;
|
|
14884
|
+
border-end-start-radius: 0;
|
|
14885
|
+
}
|
|
14886
|
+
.ant-input-password-icon {
|
|
15003
14887
|
color: rgba(0, 0, 0, 0.45);
|
|
15004
14888
|
cursor: pointer;
|
|
15005
14889
|
transition: all 0.3s;
|
|
15006
14890
|
}
|
|
15007
|
-
.ant-input-password-icon
|
|
14891
|
+
.ant-input-password-icon:hover {
|
|
15008
14892
|
color: rgba(0, 0, 0, 0.85);
|
|
15009
14893
|
}
|
|
14894
|
+
.ant-input-disabled .ant-input-password-icon {
|
|
14895
|
+
cursor: not-allowed;
|
|
14896
|
+
}
|
|
14897
|
+
.ant-input-disabled .ant-input-password-icon:hover {
|
|
14898
|
+
color: rgba(0, 0, 0, 0.45);
|
|
14899
|
+
}
|
|
15010
14900
|
.ant-input[type='color'] {
|
|
15011
14901
|
height: 32px;
|
|
15012
14902
|
}
|
|
@@ -15717,67 +15607,66 @@ nz-form-item-feedback-icon.ant-input-suffix {
|
|
|
15717
15607
|
border-color: #d9d9d9;
|
|
15718
15608
|
border-right-width: 1px;
|
|
15719
15609
|
}
|
|
15720
|
-
.ant-input-number-affix-wrapper
|
|
15721
|
-
.ant-input-number-affix-wrapper
|
|
15722
|
-
.ant-input-number-affix-wrapper
|
|
15723
|
-
.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-focused,
|
|
15724
|
-
.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-disabled,
|
|
15725
|
-
.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper[disabled] {
|
|
15726
|
-
background-color: transparent
|
|
15727
|
-
border: none
|
|
15728
|
-
box-shadow: none
|
|
15610
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless,
|
|
15611
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless:hover,
|
|
15612
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless:focus,
|
|
15613
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-focused,
|
|
15614
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-disabled,
|
|
15615
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper[disabled] {
|
|
15616
|
+
background-color: transparent;
|
|
15617
|
+
border: none;
|
|
15618
|
+
box-shadow: none;
|
|
15729
15619
|
}
|
|
15730
|
-
.ant-input-number-affix-wrapper-filled {
|
|
15731
|
-
background-color: #f5f5f5
|
|
15620
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled {
|
|
15621
|
+
background-color: #f5f5f5;
|
|
15732
15622
|
border-color: transparent;
|
|
15733
|
-
box-shadow: none
|
|
15623
|
+
box-shadow: none;
|
|
15734
15624
|
}
|
|
15735
|
-
.ant-input-number-affix-wrapper
|
|
15736
|
-
background-color: #f0f0f0
|
|
15737
|
-
border-color: transparent !important;
|
|
15625
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:hover {
|
|
15626
|
+
background-color: #f0f0f0;
|
|
15738
15627
|
}
|
|
15739
|
-
.ant-input-number-affix-wrapper-filled:focus,
|
|
15740
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15628
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:focus,
|
|
15629
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15741
15630
|
border-color: var(--ant-primary-color-hover);
|
|
15742
15631
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
15743
15632
|
border-right-width: 1px;
|
|
15744
15633
|
outline: 0;
|
|
15745
|
-
background-color: transparent
|
|
15746
|
-
box-shadow: none
|
|
15634
|
+
background-color: transparent;
|
|
15635
|
+
box-shadow: none;
|
|
15747
15636
|
}
|
|
15748
|
-
.ant-input-rtl .ant-input-number-affix-wrapper-filled:focus,
|
|
15749
|
-
.ant-input-rtl .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15637
|
+
.ant-input-rtl .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:focus,
|
|
15638
|
+
.ant-input-rtl .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15750
15639
|
border-right-width: 0;
|
|
15751
15640
|
border-left-width: 1px !important;
|
|
15752
15641
|
}
|
|
15753
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled,
|
|
15754
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled] {
|
|
15755
|
-
background-color: #f5f5f5
|
|
15756
|
-
border-color: #d9d9d9
|
|
15757
|
-
box-shadow: none
|
|
15758
|
-
cursor: not-allowed
|
|
15759
|
-
opacity: 1
|
|
15760
|
-
pointer-events: none
|
|
15761
|
-
color: rgba(0, 0, 0, 0.25)
|
|
15642
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled,
|
|
15643
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled] {
|
|
15644
|
+
background-color: #f5f5f5;
|
|
15645
|
+
border-color: #d9d9d9;
|
|
15646
|
+
box-shadow: none;
|
|
15647
|
+
cursor: not-allowed;
|
|
15648
|
+
opacity: 1;
|
|
15649
|
+
pointer-events: none;
|
|
15650
|
+
color: rgba(0, 0, 0, 0.25);
|
|
15762
15651
|
}
|
|
15763
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled:hover,
|
|
15764
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled]:hover {
|
|
15765
|
-
border-color: #d9d9d9
|
|
15766
|
-
border-right-width: 1px
|
|
15767
|
-
}
|
|
15768
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper,
|
|
15769
|
-
.ant-input-number-affix-wrapper-underlined:hover,
|
|
15770
|
-
.ant-input-number-affix-wrapper-underlined:focus,
|
|
15771
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-focused,
|
|
15772
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-disabled,
|
|
15773
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper[disabled] {
|
|
15774
|
-
background-color: transparent !important;
|
|
15775
|
-
border-width: 0 0 1px !important;
|
|
15776
|
-
border-radius: 0 !important;
|
|
15777
|
-
box-shadow: none !important;
|
|
15652
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled:hover,
|
|
15653
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled]:hover {
|
|
15654
|
+
border-color: #d9d9d9;
|
|
15655
|
+
border-right-width: 1px;
|
|
15778
15656
|
}
|
|
15779
|
-
.ant-input-number-affix-wrapper
|
|
15780
|
-
|
|
15657
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined,
|
|
15658
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:hover,
|
|
15659
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:focus,
|
|
15660
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-focused,
|
|
15661
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-disabled,
|
|
15662
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper[disabled] {
|
|
15663
|
+
background-color: transparent;
|
|
15664
|
+
border-width: 0 0 1px;
|
|
15665
|
+
border-radius: 0;
|
|
15666
|
+
box-shadow: none;
|
|
15667
|
+
}
|
|
15668
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:hover:not(.ant-input-number-affix-wrapper-focused):not(:focus) {
|
|
15669
|
+
border-color: #d9d9d9;
|
|
15781
15670
|
}
|
|
15782
15671
|
textarea.ant-input-number-affix-wrapper {
|
|
15783
15672
|
max-width: 100%;
|
|
@@ -16016,67 +15905,66 @@ textarea.ant-input-number-affix-wrapper {
|
|
|
16016
15905
|
border-color: #d9d9d9;
|
|
16017
15906
|
border-right-width: 1px;
|
|
16018
15907
|
}
|
|
16019
|
-
.ant-input-number
|
|
16020
|
-
.ant-input-number
|
|
16021
|
-
.ant-input-number
|
|
16022
|
-
.ant-input-number-borderless.ant-input-number-focused,
|
|
16023
|
-
.ant-input-number-borderless.ant-input-number-disabled,
|
|
16024
|
-
.ant-input-number-borderless.ant-input-number[disabled] {
|
|
16025
|
-
background-color: transparent
|
|
16026
|
-
border: none
|
|
16027
|
-
box-shadow: none
|
|
15908
|
+
.ant-input-number.ant-input-number-borderless,
|
|
15909
|
+
.ant-input-number.ant-input-number-borderless:hover,
|
|
15910
|
+
.ant-input-number.ant-input-number-borderless:focus,
|
|
15911
|
+
.ant-input-number.ant-input-number-borderless.ant-input-number-focused,
|
|
15912
|
+
.ant-input-number.ant-input-number-borderless.ant-input-number-disabled,
|
|
15913
|
+
.ant-input-number.ant-input-number-borderless.ant-input-number[disabled] {
|
|
15914
|
+
background-color: transparent;
|
|
15915
|
+
border: none;
|
|
15916
|
+
box-shadow: none;
|
|
16028
15917
|
}
|
|
16029
|
-
.ant-input-number-filled {
|
|
16030
|
-
background-color: #f5f5f5
|
|
15918
|
+
.ant-input-number.ant-input-number-filled {
|
|
15919
|
+
background-color: #f5f5f5;
|
|
16031
15920
|
border-color: transparent;
|
|
16032
|
-
box-shadow: none
|
|
15921
|
+
box-shadow: none;
|
|
16033
15922
|
}
|
|
16034
|
-
.ant-input-number
|
|
16035
|
-
background-color: #f0f0f0
|
|
16036
|
-
border-color: transparent !important;
|
|
15923
|
+
.ant-input-number.ant-input-number-filled:hover {
|
|
15924
|
+
background-color: #f0f0f0;
|
|
16037
15925
|
}
|
|
16038
|
-
.ant-input-number-filled:focus,
|
|
16039
|
-
.ant-input-number-filled.ant-input-number-focused {
|
|
15926
|
+
.ant-input-number.ant-input-number-filled:focus,
|
|
15927
|
+
.ant-input-number.ant-input-number-filled.ant-input-number-focused {
|
|
16040
15928
|
border-color: var(--ant-primary-color-hover);
|
|
16041
15929
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
16042
15930
|
border-right-width: 1px;
|
|
16043
15931
|
outline: 0;
|
|
16044
|
-
background-color: transparent
|
|
16045
|
-
box-shadow: none
|
|
15932
|
+
background-color: transparent;
|
|
15933
|
+
box-shadow: none;
|
|
16046
15934
|
}
|
|
16047
|
-
.ant-input-rtl .ant-input-number-filled:focus,
|
|
16048
|
-
.ant-input-rtl .ant-input-number-filled.ant-input-number-focused {
|
|
15935
|
+
.ant-input-rtl .ant-input-number.ant-input-number-filled:focus,
|
|
15936
|
+
.ant-input-rtl .ant-input-number.ant-input-number-filled.ant-input-number-focused {
|
|
16049
15937
|
border-right-width: 0;
|
|
16050
15938
|
border-left-width: 1px !important;
|
|
16051
15939
|
}
|
|
16052
|
-
.ant-input-number-filled.ant-input-number-disabled,
|
|
16053
|
-
.ant-input-number-filled.ant-input-number[disabled] {
|
|
16054
|
-
background-color: #f5f5f5
|
|
16055
|
-
border-color: #d9d9d9
|
|
16056
|
-
box-shadow: none
|
|
16057
|
-
cursor: not-allowed
|
|
16058
|
-
opacity: 1
|
|
16059
|
-
pointer-events: none
|
|
16060
|
-
color: rgba(0, 0, 0, 0.25)
|
|
15940
|
+
.ant-input-number.ant-input-number-filled.ant-input-number-disabled,
|
|
15941
|
+
.ant-input-number.ant-input-number-filled.ant-input-number[disabled] {
|
|
15942
|
+
background-color: #f5f5f5;
|
|
15943
|
+
border-color: #d9d9d9;
|
|
15944
|
+
box-shadow: none;
|
|
15945
|
+
cursor: not-allowed;
|
|
15946
|
+
opacity: 1;
|
|
15947
|
+
pointer-events: none;
|
|
15948
|
+
color: rgba(0, 0, 0, 0.25);
|
|
16061
15949
|
}
|
|
16062
|
-
.ant-input-number-filled.ant-input-number-disabled:hover,
|
|
16063
|
-
.ant-input-number-filled.ant-input-number[disabled]:hover {
|
|
16064
|
-
border-color: #d9d9d9
|
|
16065
|
-
border-right-width: 1px
|
|
16066
|
-
}
|
|
16067
|
-
.ant-input-number-underlined.ant-input-number,
|
|
16068
|
-
.ant-input-number-underlined:hover,
|
|
16069
|
-
.ant-input-number-underlined:focus,
|
|
16070
|
-
.ant-input-number-underlined.ant-input-number-focused,
|
|
16071
|
-
.ant-input-number-underlined.ant-input-number-disabled,
|
|
16072
|
-
.ant-input-number-underlined.ant-input-number[disabled] {
|
|
16073
|
-
background-color: transparent !important;
|
|
16074
|
-
border-width: 0 0 1px !important;
|
|
16075
|
-
border-radius: 0 !important;
|
|
16076
|
-
box-shadow: none !important;
|
|
15950
|
+
.ant-input-number.ant-input-number-filled.ant-input-number-disabled:hover,
|
|
15951
|
+
.ant-input-number.ant-input-number-filled.ant-input-number[disabled]:hover {
|
|
15952
|
+
border-color: #d9d9d9;
|
|
15953
|
+
border-right-width: 1px;
|
|
16077
15954
|
}
|
|
16078
|
-
.ant-input-number
|
|
16079
|
-
|
|
15955
|
+
.ant-input-number.ant-input-number-underlined,
|
|
15956
|
+
.ant-input-number.ant-input-number-underlined:hover,
|
|
15957
|
+
.ant-input-number.ant-input-number-underlined:focus,
|
|
15958
|
+
.ant-input-number.ant-input-number-underlined.ant-input-number-focused,
|
|
15959
|
+
.ant-input-number.ant-input-number-underlined.ant-input-number-disabled,
|
|
15960
|
+
.ant-input-number.ant-input-number-underlined.ant-input-number[disabled] {
|
|
15961
|
+
background-color: transparent;
|
|
15962
|
+
border-width: 0 0 1px;
|
|
15963
|
+
border-radius: 0;
|
|
15964
|
+
box-shadow: none;
|
|
15965
|
+
}
|
|
15966
|
+
.ant-input-number.ant-input-number-underlined:hover:not(.ant-input-number-focused):not(:focus) {
|
|
15967
|
+
border-color: #d9d9d9;
|
|
16080
15968
|
}
|
|
16081
15969
|
textarea.ant-input-number {
|
|
16082
15970
|
max-width: 100%;
|
|
@@ -16461,6 +16349,28 @@ textarea.ant-input-number {
|
|
|
16461
16349
|
text-align: start;
|
|
16462
16350
|
vertical-align: top;
|
|
16463
16351
|
}
|
|
16352
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number,
|
|
16353
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item):not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number-group-addon {
|
|
16354
|
+
border-radius: 0;
|
|
16355
|
+
}
|
|
16356
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-first-item .ant-input-number,
|
|
16357
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-first-item .ant-input-number-group-addon {
|
|
16358
|
+
border-start-end-radius: 0;
|
|
16359
|
+
border-end-end-radius: 0;
|
|
16360
|
+
}
|
|
16361
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-last-item .ant-input-number,
|
|
16362
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-last-item .ant-input-number-group-addon {
|
|
16363
|
+
border-start-start-radius: 0;
|
|
16364
|
+
border-end-start-radius: 0;
|
|
16365
|
+
}
|
|
16366
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number-affix-wrapper {
|
|
16367
|
+
border-start-end-radius: 0;
|
|
16368
|
+
border-end-end-radius: 0;
|
|
16369
|
+
}
|
|
16370
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-item .ant-input-number-affix-wrapper {
|
|
16371
|
+
border-start-start-radius: 0;
|
|
16372
|
+
border-end-start-radius: 0;
|
|
16373
|
+
}
|
|
16464
16374
|
.ant-input-number-handler {
|
|
16465
16375
|
position: relative;
|
|
16466
16376
|
display: block;
|
|
@@ -16539,10 +16449,6 @@ textarea.ant-input-number {
|
|
|
16539
16449
|
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
16540
16450
|
display: block;
|
|
16541
16451
|
}
|
|
16542
|
-
.ant-input-number:hover {
|
|
16543
|
-
border-color: var(--ant-primary-5);
|
|
16544
|
-
border-right-width: 1px;
|
|
16545
|
-
}
|
|
16546
16452
|
.ant-input-number:hover + .ant-form-item-children-icon {
|
|
16547
16453
|
opacity: 0;
|
|
16548
16454
|
transition: opacity 0.24s linear 0.24s;
|
|
@@ -17162,17 +17068,6 @@ textarea.ant-input-number {
|
|
|
17162
17068
|
direction: ltr;
|
|
17163
17069
|
text-align: right;
|
|
17164
17070
|
}
|
|
17165
|
-
.ant-input-number-affix-wrapper > nz-input-number.ant-input-number {
|
|
17166
|
-
width: 100%;
|
|
17167
|
-
border: none;
|
|
17168
|
-
outline: none;
|
|
17169
|
-
}
|
|
17170
|
-
.ant-input-number-affix-wrapper > nz-input-number.ant-input-number.ant-input-number-focused {
|
|
17171
|
-
box-shadow: none !important;
|
|
17172
|
-
}
|
|
17173
|
-
.ant-input-number.ant-input-number-has-feedback .ant-input-number-handler-wrap {
|
|
17174
|
-
z-index: 2;
|
|
17175
|
-
}
|
|
17176
17071
|
.ant-layout {
|
|
17177
17072
|
display: flex;
|
|
17178
17073
|
flex: auto;
|
|
@@ -17306,6 +17201,52 @@ nz-footer {
|
|
|
17306
17201
|
nz-header {
|
|
17307
17202
|
display: block;
|
|
17308
17203
|
}
|
|
17204
|
+
.ant-form-validate_animation-enter {
|
|
17205
|
+
animation: enter 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
17206
|
+
}
|
|
17207
|
+
.ant-form-validate_animation-leave {
|
|
17208
|
+
animation: leave 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
17209
|
+
}
|
|
17210
|
+
@keyframes enter {
|
|
17211
|
+
from {
|
|
17212
|
+
transform: translateY(-5px);
|
|
17213
|
+
opacity: 0;
|
|
17214
|
+
}
|
|
17215
|
+
to {
|
|
17216
|
+
transform: translateY(0);
|
|
17217
|
+
opacity: 1;
|
|
17218
|
+
}
|
|
17219
|
+
}
|
|
17220
|
+
@keyframes enter {
|
|
17221
|
+
from {
|
|
17222
|
+
transform: translateY(-5px);
|
|
17223
|
+
opacity: 0;
|
|
17224
|
+
}
|
|
17225
|
+
to {
|
|
17226
|
+
transform: translateY(0);
|
|
17227
|
+
opacity: 1;
|
|
17228
|
+
}
|
|
17229
|
+
}
|
|
17230
|
+
@keyframes leave {
|
|
17231
|
+
from {
|
|
17232
|
+
transform: translateY(0);
|
|
17233
|
+
opacity: 1;
|
|
17234
|
+
}
|
|
17235
|
+
to {
|
|
17236
|
+
transform: translateY(-5px);
|
|
17237
|
+
opacity: 0;
|
|
17238
|
+
}
|
|
17239
|
+
}
|
|
17240
|
+
@keyframes leave {
|
|
17241
|
+
from {
|
|
17242
|
+
transform: translateY(0);
|
|
17243
|
+
opacity: 1;
|
|
17244
|
+
}
|
|
17245
|
+
to {
|
|
17246
|
+
transform: translateY(-5px);
|
|
17247
|
+
opacity: 0;
|
|
17248
|
+
}
|
|
17249
|
+
}
|
|
17309
17250
|
.ant-form-item .ant-input-number + .ant-form-text {
|
|
17310
17251
|
margin-left: 8px;
|
|
17311
17252
|
}
|
|
@@ -17628,7 +17569,7 @@ nz-header {
|
|
|
17628
17569
|
font-size: 14px;
|
|
17629
17570
|
vertical-align: top;
|
|
17630
17571
|
}
|
|
17631
|
-
.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
|
|
17572
|
+
.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional):not( .ant-form-item-required-mark-hidden)::before {
|
|
17632
17573
|
display: inline-block;
|
|
17633
17574
|
margin-right: 4px;
|
|
17634
17575
|
color: #ff4d4f;
|
|
@@ -17637,7 +17578,7 @@ nz-header {
|
|
|
17637
17578
|
line-height: 1;
|
|
17638
17579
|
content: '*';
|
|
17639
17580
|
}
|
|
17640
|
-
.ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
|
|
17581
|
+
.ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional):not( .ant-form-item-required-mark-hidden)::before {
|
|
17641
17582
|
display: none;
|
|
17642
17583
|
}
|
|
17643
17584
|
.ant-form-item-label > label .ant-form-item-optional {
|
|
@@ -19281,67 +19222,66 @@ nz-list-item-extra {
|
|
|
19281
19222
|
border-color: #d9d9d9;
|
|
19282
19223
|
border-right-width: 1px;
|
|
19283
19224
|
}
|
|
19284
|
-
.ant-mentions
|
|
19285
|
-
.ant-mentions
|
|
19286
|
-
.ant-mentions
|
|
19287
|
-
.ant-mentions-borderless.ant-mentions-focused,
|
|
19288
|
-
.ant-mentions-borderless.ant-mentions-disabled,
|
|
19289
|
-
.ant-mentions-borderless.ant-mentions[disabled] {
|
|
19290
|
-
background-color: transparent
|
|
19291
|
-
border: none
|
|
19292
|
-
box-shadow: none
|
|
19225
|
+
.ant-mentions.ant-mentions-borderless,
|
|
19226
|
+
.ant-mentions.ant-mentions-borderless:hover,
|
|
19227
|
+
.ant-mentions.ant-mentions-borderless:focus,
|
|
19228
|
+
.ant-mentions.ant-mentions-borderless.ant-mentions-focused,
|
|
19229
|
+
.ant-mentions.ant-mentions-borderless.ant-mentions-disabled,
|
|
19230
|
+
.ant-mentions.ant-mentions-borderless.ant-mentions[disabled] {
|
|
19231
|
+
background-color: transparent;
|
|
19232
|
+
border: none;
|
|
19233
|
+
box-shadow: none;
|
|
19293
19234
|
}
|
|
19294
|
-
.ant-mentions-filled {
|
|
19295
|
-
background-color: #f5f5f5
|
|
19235
|
+
.ant-mentions.ant-mentions-filled {
|
|
19236
|
+
background-color: #f5f5f5;
|
|
19296
19237
|
border-color: transparent;
|
|
19297
|
-
box-shadow: none
|
|
19238
|
+
box-shadow: none;
|
|
19298
19239
|
}
|
|
19299
|
-
.ant-mentions
|
|
19300
|
-
background-color: #f0f0f0
|
|
19301
|
-
border-color: transparent !important;
|
|
19240
|
+
.ant-mentions.ant-mentions-filled:hover {
|
|
19241
|
+
background-color: #f0f0f0;
|
|
19302
19242
|
}
|
|
19303
|
-
.ant-mentions-filled:focus,
|
|
19304
|
-
.ant-mentions-filled.ant-mentions-focused {
|
|
19243
|
+
.ant-mentions.ant-mentions-filled:focus,
|
|
19244
|
+
.ant-mentions.ant-mentions-filled.ant-mentions-focused {
|
|
19305
19245
|
border-color: var(--ant-primary-color-hover);
|
|
19306
19246
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
19307
19247
|
border-right-width: 1px;
|
|
19308
19248
|
outline: 0;
|
|
19309
|
-
background-color: transparent
|
|
19310
|
-
box-shadow: none
|
|
19249
|
+
background-color: transparent;
|
|
19250
|
+
box-shadow: none;
|
|
19311
19251
|
}
|
|
19312
|
-
.ant-input-rtl .ant-mentions-filled:focus,
|
|
19313
|
-
.ant-input-rtl .ant-mentions-filled.ant-mentions-focused {
|
|
19252
|
+
.ant-input-rtl .ant-mentions.ant-mentions-filled:focus,
|
|
19253
|
+
.ant-input-rtl .ant-mentions.ant-mentions-filled.ant-mentions-focused {
|
|
19314
19254
|
border-right-width: 0;
|
|
19315
19255
|
border-left-width: 1px !important;
|
|
19316
19256
|
}
|
|
19317
|
-
.ant-mentions-filled.ant-mentions-disabled,
|
|
19318
|
-
.ant-mentions-filled.ant-mentions[disabled] {
|
|
19319
|
-
background-color: #f5f5f5
|
|
19320
|
-
border-color: #d9d9d9
|
|
19321
|
-
box-shadow: none
|
|
19322
|
-
cursor: not-allowed
|
|
19323
|
-
opacity: 1
|
|
19324
|
-
pointer-events: none
|
|
19325
|
-
color: rgba(0, 0, 0, 0.25)
|
|
19257
|
+
.ant-mentions.ant-mentions-filled.ant-mentions-disabled,
|
|
19258
|
+
.ant-mentions.ant-mentions-filled.ant-mentions[disabled] {
|
|
19259
|
+
background-color: #f5f5f5;
|
|
19260
|
+
border-color: #d9d9d9;
|
|
19261
|
+
box-shadow: none;
|
|
19262
|
+
cursor: not-allowed;
|
|
19263
|
+
opacity: 1;
|
|
19264
|
+
pointer-events: none;
|
|
19265
|
+
color: rgba(0, 0, 0, 0.25);
|
|
19326
19266
|
}
|
|
19327
|
-
.ant-mentions-filled.ant-mentions-disabled:hover,
|
|
19328
|
-
.ant-mentions-filled.ant-mentions[disabled]:hover {
|
|
19329
|
-
border-color: #d9d9d9
|
|
19330
|
-
border-right-width: 1px
|
|
19331
|
-
}
|
|
19332
|
-
.ant-mentions-underlined.ant-mentions,
|
|
19333
|
-
.ant-mentions-underlined:hover,
|
|
19334
|
-
.ant-mentions-underlined:focus,
|
|
19335
|
-
.ant-mentions-underlined.ant-mentions-focused,
|
|
19336
|
-
.ant-mentions-underlined.ant-mentions-disabled,
|
|
19337
|
-
.ant-mentions-underlined.ant-mentions[disabled] {
|
|
19338
|
-
background-color: transparent !important;
|
|
19339
|
-
border-width: 0 0 1px !important;
|
|
19340
|
-
border-radius: 0 !important;
|
|
19341
|
-
box-shadow: none !important;
|
|
19267
|
+
.ant-mentions.ant-mentions-filled.ant-mentions-disabled:hover,
|
|
19268
|
+
.ant-mentions.ant-mentions-filled.ant-mentions[disabled]:hover {
|
|
19269
|
+
border-color: #d9d9d9;
|
|
19270
|
+
border-right-width: 1px;
|
|
19342
19271
|
}
|
|
19343
|
-
.ant-mentions
|
|
19344
|
-
|
|
19272
|
+
.ant-mentions.ant-mentions-underlined,
|
|
19273
|
+
.ant-mentions.ant-mentions-underlined:hover,
|
|
19274
|
+
.ant-mentions.ant-mentions-underlined:focus,
|
|
19275
|
+
.ant-mentions.ant-mentions-underlined.ant-mentions-focused,
|
|
19276
|
+
.ant-mentions.ant-mentions-underlined.ant-mentions-disabled,
|
|
19277
|
+
.ant-mentions.ant-mentions-underlined.ant-mentions[disabled] {
|
|
19278
|
+
background-color: transparent;
|
|
19279
|
+
border-width: 0 0 1px;
|
|
19280
|
+
border-radius: 0;
|
|
19281
|
+
box-shadow: none;
|
|
19282
|
+
}
|
|
19283
|
+
.ant-mentions.ant-mentions-underlined:hover:not(.ant-mentions-focused):not(:focus) {
|
|
19284
|
+
border-color: #d9d9d9;
|
|
19345
19285
|
}
|
|
19346
19286
|
textarea.ant-mentions {
|
|
19347
19287
|
max-width: 100%;
|
|
@@ -20381,6 +20321,16 @@ nz-page-header-footer {
|
|
|
20381
20321
|
line-height: 1.5715;
|
|
20382
20322
|
list-style: none;
|
|
20383
20323
|
font-feature-settings: 'tnum';
|
|
20324
|
+
display: flex;
|
|
20325
|
+
}
|
|
20326
|
+
.ant-pagination-start {
|
|
20327
|
+
justify-content: start;
|
|
20328
|
+
}
|
|
20329
|
+
.ant-pagination-center {
|
|
20330
|
+
justify-content: center;
|
|
20331
|
+
}
|
|
20332
|
+
.ant-pagination-end {
|
|
20333
|
+
justify-content: end;
|
|
20384
20334
|
}
|
|
20385
20335
|
.ant-pagination ul,
|
|
20386
20336
|
.ant-pagination ol {
|
|
@@ -20702,67 +20652,66 @@ nz-page-header-footer {
|
|
|
20702
20652
|
border-color: #d9d9d9;
|
|
20703
20653
|
border-right-width: 1px;
|
|
20704
20654
|
}
|
|
20705
|
-
.ant-pagination-options-quick-jumper input
|
|
20706
|
-
.ant-pagination-options-quick-jumper input
|
|
20707
|
-
.ant-pagination-options-quick-jumper input
|
|
20708
|
-
.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-focused,
|
|
20709
|
-
.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-disabled,
|
|
20710
|
-
.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input[disabled] {
|
|
20711
|
-
background-color: transparent
|
|
20712
|
-
border: none
|
|
20713
|
-
box-shadow: none
|
|
20655
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless,
|
|
20656
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless:hover,
|
|
20657
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless:focus,
|
|
20658
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-focused,
|
|
20659
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-disabled,
|
|
20660
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input[disabled] {
|
|
20661
|
+
background-color: transparent;
|
|
20662
|
+
border: none;
|
|
20663
|
+
box-shadow: none;
|
|
20714
20664
|
}
|
|
20715
|
-
.ant-pagination-options-quick-jumper input-filled {
|
|
20716
|
-
background-color: #f5f5f5
|
|
20665
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled {
|
|
20666
|
+
background-color: #f5f5f5;
|
|
20717
20667
|
border-color: transparent;
|
|
20718
|
-
box-shadow: none
|
|
20668
|
+
box-shadow: none;
|
|
20719
20669
|
}
|
|
20720
|
-
.ant-pagination-options-quick-jumper input
|
|
20721
|
-
background-color: #f0f0f0
|
|
20722
|
-
border-color: transparent !important;
|
|
20670
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:hover {
|
|
20671
|
+
background-color: #f0f0f0;
|
|
20723
20672
|
}
|
|
20724
|
-
.ant-pagination-options-quick-jumper input-filled:focus,
|
|
20725
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
20673
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:focus,
|
|
20674
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
20726
20675
|
border-color: var(--ant-primary-color-hover);
|
|
20727
20676
|
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
20728
20677
|
border-right-width: 1px;
|
|
20729
20678
|
outline: 0;
|
|
20730
|
-
background-color: transparent
|
|
20731
|
-
box-shadow: none
|
|
20679
|
+
background-color: transparent;
|
|
20680
|
+
box-shadow: none;
|
|
20732
20681
|
}
|
|
20733
|
-
.ant-input-rtl .ant-pagination-options-quick-jumper input-filled:focus,
|
|
20734
|
-
.ant-input-rtl .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
20682
|
+
.ant-input-rtl .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:focus,
|
|
20683
|
+
.ant-input-rtl .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
20735
20684
|
border-right-width: 0;
|
|
20736
20685
|
border-left-width: 1px !important;
|
|
20737
20686
|
}
|
|
20738
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled,
|
|
20739
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled] {
|
|
20740
|
-
background-color: #f5f5f5
|
|
20741
|
-
border-color: #d9d9d9
|
|
20742
|
-
box-shadow: none
|
|
20743
|
-
cursor: not-allowed
|
|
20744
|
-
opacity: 1
|
|
20745
|
-
pointer-events: none
|
|
20746
|
-
color: rgba(0, 0, 0, 0.25)
|
|
20687
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled,
|
|
20688
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled] {
|
|
20689
|
+
background-color: #f5f5f5;
|
|
20690
|
+
border-color: #d9d9d9;
|
|
20691
|
+
box-shadow: none;
|
|
20692
|
+
cursor: not-allowed;
|
|
20693
|
+
opacity: 1;
|
|
20694
|
+
pointer-events: none;
|
|
20695
|
+
color: rgba(0, 0, 0, 0.25);
|
|
20747
20696
|
}
|
|
20748
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled:hover,
|
|
20749
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled]:hover {
|
|
20750
|
-
border-color: #d9d9d9
|
|
20751
|
-
border-right-width: 1px
|
|
20752
|
-
}
|
|
20753
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input,
|
|
20754
|
-
.ant-pagination-options-quick-jumper input-underlined:hover,
|
|
20755
|
-
.ant-pagination-options-quick-jumper input-underlined:focus,
|
|
20756
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-focused,
|
|
20757
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-disabled,
|
|
20758
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input[disabled] {
|
|
20759
|
-
background-color: transparent !important;
|
|
20760
|
-
border-width: 0 0 1px !important;
|
|
20761
|
-
border-radius: 0 !important;
|
|
20762
|
-
box-shadow: none !important;
|
|
20697
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled:hover,
|
|
20698
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled]:hover {
|
|
20699
|
+
border-color: #d9d9d9;
|
|
20700
|
+
border-right-width: 1px;
|
|
20763
20701
|
}
|
|
20764
|
-
.ant-pagination-options-quick-jumper input
|
|
20765
|
-
|
|
20702
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined,
|
|
20703
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:hover,
|
|
20704
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:focus,
|
|
20705
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-focused,
|
|
20706
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-disabled,
|
|
20707
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input[disabled] {
|
|
20708
|
+
background-color: transparent;
|
|
20709
|
+
border-width: 0 0 1px;
|
|
20710
|
+
border-radius: 0;
|
|
20711
|
+
box-shadow: none;
|
|
20712
|
+
}
|
|
20713
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:hover:not(.ant-pagination-options-quick-jumper input-focused):not(:focus) {
|
|
20714
|
+
border-color: #d9d9d9;
|
|
20766
20715
|
}
|
|
20767
20716
|
textarea.ant-pagination-options-quick-jumper input {
|
|
20768
20717
|
max-width: 100%;
|
|
@@ -22117,7 +22066,7 @@ span.ant-radio + * {
|
|
|
22117
22066
|
}
|
|
22118
22067
|
.ant-select-single.ant-select-sm {
|
|
22119
22068
|
height: 24px;
|
|
22120
|
-
font-size:
|
|
22069
|
+
font-size: 14px;
|
|
22121
22070
|
}
|
|
22122
22071
|
.ant-select-single.ant-select-sm .ant-select-selector {
|
|
22123
22072
|
display: flex;
|
|
@@ -22159,7 +22108,7 @@ span.ant-radio + * {
|
|
|
22159
22108
|
.ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-item,
|
|
22160
22109
|
.ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-search,
|
|
22161
22110
|
.ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-placeholder {
|
|
22162
|
-
padding-inline-end:
|
|
22111
|
+
padding-inline-end: 18px;
|
|
22163
22112
|
}
|
|
22164
22113
|
.ant-select-single.ant-select-sm.ant-select-open .ant-select-selection-item {
|
|
22165
22114
|
color: #bfbfbf;
|
|
@@ -22924,16 +22873,6 @@ span.ant-radio + * {
|
|
|
22924
22873
|
.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
|
|
22925
22874
|
cursor: auto;
|
|
22926
22875
|
}
|
|
22927
|
-
.ant-select-focused:not(.ant-select-disabled) .ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
22928
|
-
border-color: var(--ant-primary-color-hover);
|
|
22929
|
-
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
22930
|
-
border-right-width: 1px;
|
|
22931
|
-
outline: 0;
|
|
22932
|
-
}
|
|
22933
|
-
.ant-input-rtl .ant-select-focused:not(.ant-select-disabled) .ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
22934
|
-
border-right-width: 0;
|
|
22935
|
-
border-left-width: 1px !important;
|
|
22936
|
-
}
|
|
22937
22876
|
.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
22938
22877
|
color: rgba(0, 0, 0, 0.25);
|
|
22939
22878
|
background: #f5f5f5;
|
|
@@ -22966,6 +22905,16 @@ span.ant-radio + * {
|
|
|
22966
22905
|
border-right-width: 0;
|
|
22967
22906
|
border-left-width: 1px !important;
|
|
22968
22907
|
}
|
|
22908
|
+
.ant-select:not(.ant-select-disabled).ant-select-focused .ant-select-selector {
|
|
22909
|
+
border-color: var(--ant-primary-color-hover);
|
|
22910
|
+
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
22911
|
+
border-right-width: 1px;
|
|
22912
|
+
outline: 0;
|
|
22913
|
+
}
|
|
22914
|
+
.ant-input-rtl .ant-select:not(.ant-select-disabled).ant-select-focused .ant-select-selector {
|
|
22915
|
+
border-right-width: 0;
|
|
22916
|
+
border-left-width: 1px !important;
|
|
22917
|
+
}
|
|
22969
22918
|
.ant-select-selection-item {
|
|
22970
22919
|
flex: 1;
|
|
22971
22920
|
overflow: hidden;
|
|
@@ -23196,60 +23145,68 @@ span.ant-radio + * {
|
|
|
23196
23145
|
.ant-select-lg {
|
|
23197
23146
|
font-size: 16px;
|
|
23198
23147
|
}
|
|
23199
|
-
.ant-select-borderless .ant-select-selector
|
|
23200
|
-
|
|
23201
|
-
|
|
23202
|
-
|
|
23148
|
+
.ant-select.ant-select-borderless .ant-select-selector,
|
|
23149
|
+
.ant-select.ant-select-borderless:hover .ant-select-selector,
|
|
23150
|
+
.ant-select.ant-select-borderless:focus .ant-select-selector,
|
|
23151
|
+
.ant-select.ant-select-borderless.ant-select-focused .ant-select-selector,
|
|
23152
|
+
.ant-select.ant-select-borderless.ant-select-disabled .ant-select-selector,
|
|
23153
|
+
.ant-select.ant-select-borderless.ant-select[disabled] .ant-select-selector {
|
|
23154
|
+
background-color: transparent;
|
|
23155
|
+
border-color: transparent;
|
|
23156
|
+
box-shadow: none;
|
|
23203
23157
|
}
|
|
23204
|
-
.ant-select-filled .ant-select-selector {
|
|
23205
|
-
background-color: #f5f5f5
|
|
23206
|
-
border-color: transparent
|
|
23207
|
-
box-shadow: none
|
|
23158
|
+
.ant-select.ant-select-filled .ant-select-selector {
|
|
23159
|
+
background-color: #f5f5f5;
|
|
23160
|
+
border-color: transparent;
|
|
23161
|
+
box-shadow: none;
|
|
23208
23162
|
}
|
|
23209
|
-
.ant-select-filled:hover .ant-select-selector {
|
|
23210
|
-
background-color: #f0f0f0
|
|
23211
|
-
border-color: transparent
|
|
23212
|
-
box-shadow: none
|
|
23163
|
+
.ant-select.ant-select-filled:hover .ant-select-selector {
|
|
23164
|
+
background-color: #f0f0f0;
|
|
23165
|
+
border-color: transparent;
|
|
23166
|
+
box-shadow: none;
|
|
23213
23167
|
}
|
|
23214
|
-
.ant-select-filled:focus .ant-select-selector,
|
|
23215
|
-
.ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23216
|
-
border-color: var(--ant-primary-color-hover)
|
|
23217
|
-
box-shadow: 0 0 0 2px var(--ant-primary-color-outline)
|
|
23218
|
-
border-right-width: 1px
|
|
23219
|
-
outline: 0
|
|
23220
|
-
background-color: transparent
|
|
23221
|
-
box-shadow: none
|
|
23168
|
+
.ant-select.ant-select-filled:focus .ant-select-selector,
|
|
23169
|
+
.ant-select.ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23170
|
+
border-color: var(--ant-primary-color-hover);
|
|
23171
|
+
box-shadow: 0 0 0 2px var(--ant-primary-color-outline);
|
|
23172
|
+
border-right-width: 1px;
|
|
23173
|
+
outline: 0;
|
|
23174
|
+
background-color: transparent;
|
|
23175
|
+
box-shadow: none;
|
|
23222
23176
|
}
|
|
23223
|
-
.ant-input-rtl .ant-select-filled:focus .ant-select-selector,
|
|
23224
|
-
.ant-input-rtl .ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23225
|
-
border-right-width: 0
|
|
23177
|
+
.ant-input-rtl .ant-select.ant-select-filled:focus .ant-select-selector,
|
|
23178
|
+
.ant-input-rtl .ant-select.ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23179
|
+
border-right-width: 0;
|
|
23226
23180
|
border-left-width: 1px !important;
|
|
23227
23181
|
}
|
|
23228
|
-
.ant-select-filled.ant-select-disabled .ant-select-selector,
|
|
23229
|
-
.ant-select-filled.ant-select[disabled] .ant-select-selector {
|
|
23230
|
-
background-color: #f5f5f5
|
|
23231
|
-
border-color: #d9d9d9
|
|
23232
|
-
box-shadow: none
|
|
23233
|
-
cursor: not-allowed
|
|
23234
|
-
opacity: 1
|
|
23235
|
-
pointer-events: none
|
|
23236
|
-
color: rgba(0, 0, 0, 0.25)
|
|
23182
|
+
.ant-select.ant-select-filled.ant-select-disabled .ant-select-selector,
|
|
23183
|
+
.ant-select.ant-select-filled.ant-select[disabled] .ant-select-selector {
|
|
23184
|
+
background-color: #f5f5f5;
|
|
23185
|
+
border-color: #d9d9d9;
|
|
23186
|
+
box-shadow: none;
|
|
23187
|
+
cursor: not-allowed;
|
|
23188
|
+
opacity: 1;
|
|
23189
|
+
pointer-events: none;
|
|
23190
|
+
color: rgba(0, 0, 0, 0.25);
|
|
23237
23191
|
}
|
|
23238
|
-
.ant-select-filled.ant-select-disabled .ant-select-selector:hover,
|
|
23239
|
-
.ant-select-filled.ant-select[disabled] .ant-select-selector:hover {
|
|
23240
|
-
border-color: #d9d9d9
|
|
23241
|
-
border-right-width: 1px
|
|
23242
|
-
}
|
|
23243
|
-
.ant-select-underlined .ant-select-selector,
|
|
23244
|
-
.ant-select-underlined:hover .ant-select-selector,
|
|
23245
|
-
.ant-select-underlined:focus .ant-select-selector,
|
|
23246
|
-
.ant-select-underlined.ant-select-focused .ant-select-selector,
|
|
23247
|
-
.ant-select-underlined.ant-select-disabled .ant-select-selector,
|
|
23248
|
-
.ant-select-underlined.ant-select[disabled] .ant-select-selector {
|
|
23249
|
-
background-color: transparent
|
|
23250
|
-
border-width: 0 0 1px
|
|
23251
|
-
border-radius: 0
|
|
23252
|
-
box-shadow: none
|
|
23192
|
+
.ant-select.ant-select-filled.ant-select-disabled .ant-select-selector:hover,
|
|
23193
|
+
.ant-select.ant-select-filled.ant-select[disabled] .ant-select-selector:hover {
|
|
23194
|
+
border-color: #d9d9d9;
|
|
23195
|
+
border-right-width: 1px;
|
|
23196
|
+
}
|
|
23197
|
+
.ant-select.ant-select-underlined .ant-select-selector,
|
|
23198
|
+
.ant-select.ant-select-underlined:hover .ant-select-selector,
|
|
23199
|
+
.ant-select.ant-select-underlined:focus .ant-select-selector,
|
|
23200
|
+
.ant-select.ant-select-underlined.ant-select-focused .ant-select-selector,
|
|
23201
|
+
.ant-select.ant-select-underlined.ant-select-disabled .ant-select-selector,
|
|
23202
|
+
.ant-select.ant-select-underlined.ant-select[disabled] .ant-select-selector {
|
|
23203
|
+
background-color: transparent;
|
|
23204
|
+
border-width: 0 0 1px;
|
|
23205
|
+
border-radius: 0;
|
|
23206
|
+
box-shadow: none;
|
|
23207
|
+
}
|
|
23208
|
+
.ant-select.ant-select-underlined:hover:not(.ant-select-focused):not(:focus) .ant-select-selector {
|
|
23209
|
+
border-color: #d9d9d9;
|
|
23253
23210
|
}
|
|
23254
23211
|
.ant-select.ant-select-in-form-item {
|
|
23255
23212
|
width: 100%;
|
|
@@ -30292,9 +30249,6 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
30292
30249
|
.font-highlight {
|
|
30293
30250
|
color: #ff4d4f;
|
|
30294
30251
|
}
|
|
30295
|
-
.ant-tree-child-tree {
|
|
30296
|
-
overflow: hidden;
|
|
30297
|
-
}
|
|
30298
30252
|
nz-tree {
|
|
30299
30253
|
display: block;
|
|
30300
30254
|
}
|
|
@@ -31316,6 +31270,18 @@ nz-space-item {
|
|
|
31316
31270
|
overflow: hidden;
|
|
31317
31271
|
outline: none;
|
|
31318
31272
|
}
|
|
31273
|
+
.ant-image-preview-fade-motion-enter {
|
|
31274
|
+
animation-name: antFadeIn;
|
|
31275
|
+
animation-duration: 0.2s;
|
|
31276
|
+
animation-timing-function: linear;
|
|
31277
|
+
animation-fill-mode: both;
|
|
31278
|
+
}
|
|
31279
|
+
.ant-image-preview-fade-motion-leave {
|
|
31280
|
+
animation-name: antFadeOut;
|
|
31281
|
+
animation-duration: 0.2s;
|
|
31282
|
+
animation-timing-function: linear;
|
|
31283
|
+
animation-fill-mode: both;
|
|
31284
|
+
}
|
|
31319
31285
|
.cdk-overlay-backdrop.ant-image-preview-mask {
|
|
31320
31286
|
opacity: 1;
|
|
31321
31287
|
}
|
|
@@ -31451,26 +31417,16 @@ nz-space-item {
|
|
|
31451
31417
|
.ant-qrcode-expired {
|
|
31452
31418
|
color: rgba(0, 0, 0, 0.85);
|
|
31453
31419
|
}
|
|
31454
|
-
.ant-
|
|
31455
|
-
position: relative;
|
|
31456
|
-
display: block;
|
|
31457
|
-
}
|
|
31458
|
-
.ant-color-picker {
|
|
31459
|
-
position: absolute;
|
|
31460
|
-
z-index: 1;
|
|
31420
|
+
.ant-color-picker-inner {
|
|
31461
31421
|
display: block;
|
|
31462
|
-
width: max-content;
|
|
31463
|
-
min-width: 250px;
|
|
31464
|
-
visibility: visible;
|
|
31465
31422
|
}
|
|
31466
|
-
.ant-color-picker-
|
|
31467
|
-
display: none;
|
|
31468
|
-
}
|
|
31469
|
-
.ant-color-picker-panel {
|
|
31423
|
+
.ant-color-picker-inner-content {
|
|
31470
31424
|
display: flex;
|
|
31471
31425
|
flex-direction: column;
|
|
31472
|
-
width:
|
|
31473
|
-
|
|
31426
|
+
width: 234px;
|
|
31427
|
+
}
|
|
31428
|
+
.ant-color-picker-panel {
|
|
31429
|
+
user-select: none;
|
|
31474
31430
|
}
|
|
31475
31431
|
.ant-color-picker-panel-disabled {
|
|
31476
31432
|
cursor: not-allowed;
|
|
@@ -31481,8 +31437,10 @@ nz-space-item {
|
|
|
31481
31437
|
}
|
|
31482
31438
|
.ant-color-picker-palette {
|
|
31483
31439
|
position: relative;
|
|
31440
|
+
display: block;
|
|
31484
31441
|
}
|
|
31485
31442
|
.ant-color-picker-select {
|
|
31443
|
+
display: block;
|
|
31486
31444
|
margin-bottom: 12px;
|
|
31487
31445
|
}
|
|
31488
31446
|
.ant-color-picker-select .ant-color-picker-palette {
|
|
@@ -31507,6 +31465,7 @@ nz-space-item {
|
|
|
31507
31465
|
z-index: 1;
|
|
31508
31466
|
}
|
|
31509
31467
|
.ant-color-picker-handler {
|
|
31468
|
+
display: block;
|
|
31510
31469
|
box-sizing: border-box;
|
|
31511
31470
|
width: 16px;
|
|
31512
31471
|
height: 16px;
|
|
@@ -31518,7 +31477,7 @@ nz-space-item {
|
|
|
31518
31477
|
height: 12px;
|
|
31519
31478
|
}
|
|
31520
31479
|
.ant-color-picker-slider {
|
|
31521
|
-
|
|
31480
|
+
display: block;
|
|
31522
31481
|
border-radius: 2px;
|
|
31523
31482
|
}
|
|
31524
31483
|
.ant-color-picker-slider .ant-color-picker-palette {
|
|
@@ -31566,10 +31525,10 @@ nz-space-item {
|
|
|
31566
31525
|
}
|
|
31567
31526
|
.ant-color-picker-color-block {
|
|
31568
31527
|
position: relative;
|
|
31569
|
-
|
|
31570
|
-
|
|
31528
|
+
display: block;
|
|
31529
|
+
width: 24px;
|
|
31530
|
+
height: 24px;
|
|
31571
31531
|
overflow: hidden;
|
|
31572
|
-
background-image: conic-gradient(rgba(0, 0, 0, 0.06) 0 25%, transparent 0 50%, rgba(0, 0, 0, 0.06) 0 75%, transparent 0);
|
|
31573
31532
|
background-size: 50% 50%;
|
|
31574
31533
|
border-radius: 2px;
|
|
31575
31534
|
}
|
|
@@ -31629,6 +31588,7 @@ nz-space-item {
|
|
|
31629
31588
|
}
|
|
31630
31589
|
.ant-color-picker-input-container {
|
|
31631
31590
|
display: flex;
|
|
31591
|
+
margin-bottom: 12px;
|
|
31632
31592
|
}
|
|
31633
31593
|
.ant-color-picker-input-container .ant-select {
|
|
31634
31594
|
font-size: 12px;
|
|
@@ -31700,6 +31660,47 @@ nz-space-item {
|
|
|
31700
31660
|
width: 16px;
|
|
31701
31661
|
height: 16px;
|
|
31702
31662
|
}
|
|
31663
|
+
.ant-color-picker-presets-wrapper {
|
|
31664
|
+
max-height: 200px;
|
|
31665
|
+
overflow-y: auto;
|
|
31666
|
+
}
|
|
31667
|
+
.ant-color-picker-presets-wrapper .ant-collapse {
|
|
31668
|
+
display: flex;
|
|
31669
|
+
flex-direction: column;
|
|
31670
|
+
gap: 4px;
|
|
31671
|
+
}
|
|
31672
|
+
.ant-color-picker-presets-wrapper .ant-collapse .ant-collapse-header {
|
|
31673
|
+
padding: 0 !important;
|
|
31674
|
+
font-size: 12px;
|
|
31675
|
+
}
|
|
31676
|
+
.ant-color-picker-presets-items {
|
|
31677
|
+
display: flex;
|
|
31678
|
+
flex-wrap: wrap;
|
|
31679
|
+
gap: 8px;
|
|
31680
|
+
padding: 8px 0;
|
|
31681
|
+
}
|
|
31682
|
+
.ant-color-picker-presets-color {
|
|
31683
|
+
position: relative;
|
|
31684
|
+
}
|
|
31685
|
+
.ant-color-picker-presets-color-checked::after {
|
|
31686
|
+
position: absolute;
|
|
31687
|
+
top: 50%;
|
|
31688
|
+
display: table;
|
|
31689
|
+
box-sizing: border-box;
|
|
31690
|
+
width: calc(120px / 13);
|
|
31691
|
+
height: calc(192px / 13);
|
|
31692
|
+
border: 2px solid #fff;
|
|
31693
|
+
border-top: 0;
|
|
31694
|
+
transform: translate(-50%, -60%) rotate(45deg);
|
|
31695
|
+
content: '';
|
|
31696
|
+
pointer-events: none;
|
|
31697
|
+
border-inline-start: 0;
|
|
31698
|
+
inset-inline-start: 46.5%;
|
|
31699
|
+
}
|
|
31700
|
+
.ant-color-picker-presets-color-bright.ant-color-picker-presets-color-checked::after,
|
|
31701
|
+
.ant-color-picker-presets-color-checked.ant-color-picker-presets-color-bright::after {
|
|
31702
|
+
border-color: rgba(0, 0, 0, 0.88);
|
|
31703
|
+
}
|
|
31703
31704
|
.ant-hash-code {
|
|
31704
31705
|
display: flex;
|
|
31705
31706
|
flex-direction: column;
|
|
@@ -31826,21 +31827,17 @@ nz-space-item {
|
|
|
31826
31827
|
}
|
|
31827
31828
|
.ant-float-btn {
|
|
31828
31829
|
position: fixed;
|
|
31830
|
+
bottom: 48px;
|
|
31829
31831
|
z-index: 99;
|
|
31830
31832
|
display: block;
|
|
31831
31833
|
align-items: center;
|
|
31832
31834
|
justify-content: center;
|
|
31833
31835
|
width: 40px;
|
|
31834
31836
|
height: 40px;
|
|
31835
|
-
overflow: hidden;
|
|
31836
31837
|
border: none;
|
|
31837
31838
|
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
31838
31839
|
cursor: pointer;
|
|
31839
31840
|
inset-inline-end: 24px;
|
|
31840
|
-
inset-block-end: 48px;
|
|
31841
|
-
}
|
|
31842
|
-
.ant-float-btn-hidden {
|
|
31843
|
-
display: none;
|
|
31844
31841
|
}
|
|
31845
31842
|
.ant-float-btn-pure {
|
|
31846
31843
|
position: relative;
|
|
@@ -31849,6 +31846,16 @@ nz-space-item {
|
|
|
31849
31846
|
.ant-float-btn:empty {
|
|
31850
31847
|
display: none;
|
|
31851
31848
|
}
|
|
31849
|
+
.ant-float-btn .ant-badge {
|
|
31850
|
+
width: 100%;
|
|
31851
|
+
height: 100%;
|
|
31852
|
+
}
|
|
31853
|
+
.ant-float-btn .ant-badge .ant-badge-count {
|
|
31854
|
+
top: -6px;
|
|
31855
|
+
transform: translate(0, 0);
|
|
31856
|
+
transform-origin: center;
|
|
31857
|
+
inset-inline-end: -6px;
|
|
31858
|
+
}
|
|
31852
31859
|
.ant-float-btn-body {
|
|
31853
31860
|
display: flex;
|
|
31854
31861
|
align-items: center;
|
|
@@ -31863,7 +31870,7 @@ nz-space-item {
|
|
|
31863
31870
|
align-items: center;
|
|
31864
31871
|
justify-content: center;
|
|
31865
31872
|
min-height: 40px;
|
|
31866
|
-
padding:
|
|
31873
|
+
padding: 4px / 2 4px;
|
|
31867
31874
|
overflow: hidden;
|
|
31868
31875
|
text-align: center;
|
|
31869
31876
|
}
|
|
@@ -31890,6 +31897,11 @@ nz-space-item {
|
|
|
31890
31897
|
height: 40px;
|
|
31891
31898
|
border-radius: 50%;
|
|
31892
31899
|
}
|
|
31900
|
+
.ant-float-btn-circle .ant-badge .ant-badge-dot {
|
|
31901
|
+
top: 5.6px;
|
|
31902
|
+
inset-inline-end: 5.6px;
|
|
31903
|
+
}
|
|
31904
|
+
.ant-float-btn-circle .ant-float-btn-inner,
|
|
31893
31905
|
.ant-float-btn-circle .ant-float-btn-body {
|
|
31894
31906
|
border-radius: 50%;
|
|
31895
31907
|
}
|
|
@@ -31898,6 +31910,10 @@ nz-space-item {
|
|
|
31898
31910
|
min-height: 40px;
|
|
31899
31911
|
border-radius: 2px;
|
|
31900
31912
|
}
|
|
31913
|
+
.ant-float-btn-square .ant-badge .ant-badge-dot {
|
|
31914
|
+
top: 1px;
|
|
31915
|
+
inset-inline-end: 1px;
|
|
31916
|
+
}
|
|
31901
31917
|
.ant-float-btn-square .ant-float-btn-body {
|
|
31902
31918
|
height: auto;
|
|
31903
31919
|
border-radius: 2px;
|
|
@@ -32043,6 +32059,10 @@ nz-space-item {
|
|
|
32043
32059
|
.ant-float-btn-group-square .ant-float-btn-square:not(:last-child) {
|
|
32044
32060
|
border-bottom: 1px solid #d9d9d9;
|
|
32045
32061
|
}
|
|
32062
|
+
.ant-float-btn-group-square .ant-float-btn-square .ant-badge .ant-badge-count {
|
|
32063
|
+
top: -10px;
|
|
32064
|
+
inset-inline-end: -10px;
|
|
32065
|
+
}
|
|
32046
32066
|
.ant-float-btn-group-square .ant-float-btn-group-wrap {
|
|
32047
32067
|
border-radius: 2px;
|
|
32048
32068
|
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
@@ -32099,6 +32119,203 @@ nz-space-item {
|
|
|
32099
32119
|
width: 32px;
|
|
32100
32120
|
height: 32px;
|
|
32101
32121
|
}
|
|
32122
|
+
/* stylelint-disable less/no-duplicate-variables */
|
|
32123
|
+
.ant-float-btn-enter-top {
|
|
32124
|
+
animation: enter-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32125
|
+
}
|
|
32126
|
+
.ant-float-btn-leave-top {
|
|
32127
|
+
animation: leave-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32128
|
+
}
|
|
32129
|
+
.ant-float-btn-enter-bottom {
|
|
32130
|
+
animation: enter-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32131
|
+
}
|
|
32132
|
+
.ant-float-btn-leave-bottom {
|
|
32133
|
+
animation: leave-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32134
|
+
}
|
|
32135
|
+
.ant-float-btn-enter-left {
|
|
32136
|
+
animation: enter-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32137
|
+
}
|
|
32138
|
+
.ant-float-btn-leave-left {
|
|
32139
|
+
animation: leave-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32140
|
+
}
|
|
32141
|
+
.ant-float-btn-enter-right {
|
|
32142
|
+
animation: enter-right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32143
|
+
}
|
|
32144
|
+
.ant-float-btn-leave-right {
|
|
32145
|
+
animation: leave-right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32146
|
+
}
|
|
32147
|
+
@keyframes enter-top {
|
|
32148
|
+
from {
|
|
32149
|
+
transform: translateY(40px);
|
|
32150
|
+
opacity: 0;
|
|
32151
|
+
}
|
|
32152
|
+
to {
|
|
32153
|
+
transform: translateY(0);
|
|
32154
|
+
opacity: 1;
|
|
32155
|
+
}
|
|
32156
|
+
}
|
|
32157
|
+
@keyframes enter-top {
|
|
32158
|
+
from {
|
|
32159
|
+
transform: translateY(40px);
|
|
32160
|
+
opacity: 0;
|
|
32161
|
+
}
|
|
32162
|
+
to {
|
|
32163
|
+
transform: translateY(0);
|
|
32164
|
+
opacity: 1;
|
|
32165
|
+
}
|
|
32166
|
+
}
|
|
32167
|
+
@keyframes leave-top {
|
|
32168
|
+
from {
|
|
32169
|
+
transform: translateY(0);
|
|
32170
|
+
opacity: 1;
|
|
32171
|
+
}
|
|
32172
|
+
to {
|
|
32173
|
+
transform: translateY(40px);
|
|
32174
|
+
opacity: 0;
|
|
32175
|
+
}
|
|
32176
|
+
}
|
|
32177
|
+
@keyframes leave-top {
|
|
32178
|
+
from {
|
|
32179
|
+
transform: translateY(0);
|
|
32180
|
+
opacity: 1;
|
|
32181
|
+
}
|
|
32182
|
+
to {
|
|
32183
|
+
transform: translateY(40px);
|
|
32184
|
+
opacity: 0;
|
|
32185
|
+
}
|
|
32186
|
+
}
|
|
32187
|
+
@keyframes enter-bottom {
|
|
32188
|
+
from {
|
|
32189
|
+
transform: translateY(-40px);
|
|
32190
|
+
opacity: 0;
|
|
32191
|
+
}
|
|
32192
|
+
to {
|
|
32193
|
+
transform: translateY(0);
|
|
32194
|
+
opacity: 1;
|
|
32195
|
+
}
|
|
32196
|
+
}
|
|
32197
|
+
@keyframes enter-bottom {
|
|
32198
|
+
from {
|
|
32199
|
+
transform: translateY(-40px);
|
|
32200
|
+
opacity: 0;
|
|
32201
|
+
}
|
|
32202
|
+
to {
|
|
32203
|
+
transform: translateY(0);
|
|
32204
|
+
opacity: 1;
|
|
32205
|
+
}
|
|
32206
|
+
}
|
|
32207
|
+
@keyframes leave-bottom {
|
|
32208
|
+
from {
|
|
32209
|
+
transform: translateY(0);
|
|
32210
|
+
opacity: 1;
|
|
32211
|
+
}
|
|
32212
|
+
to {
|
|
32213
|
+
transform: translateY(-40px);
|
|
32214
|
+
opacity: 0;
|
|
32215
|
+
}
|
|
32216
|
+
}
|
|
32217
|
+
@keyframes leave-bottom {
|
|
32218
|
+
from {
|
|
32219
|
+
transform: translateY(0);
|
|
32220
|
+
opacity: 1;
|
|
32221
|
+
}
|
|
32222
|
+
to {
|
|
32223
|
+
transform: translateY(-40px);
|
|
32224
|
+
opacity: 0;
|
|
32225
|
+
}
|
|
32226
|
+
}
|
|
32227
|
+
@keyframes enter-left {
|
|
32228
|
+
from {
|
|
32229
|
+
transform: translateX(40px);
|
|
32230
|
+
opacity: 0;
|
|
32231
|
+
}
|
|
32232
|
+
to {
|
|
32233
|
+
transform: translateX(0);
|
|
32234
|
+
opacity: 1;
|
|
32235
|
+
}
|
|
32236
|
+
}
|
|
32237
|
+
@keyframes enter-left {
|
|
32238
|
+
from {
|
|
32239
|
+
transform: translateX(40px);
|
|
32240
|
+
opacity: 0;
|
|
32241
|
+
}
|
|
32242
|
+
to {
|
|
32243
|
+
transform: translateX(0);
|
|
32244
|
+
opacity: 1;
|
|
32245
|
+
}
|
|
32246
|
+
}
|
|
32247
|
+
@keyframes leave-left {
|
|
32248
|
+
from {
|
|
32249
|
+
transform: translateX(0);
|
|
32250
|
+
opacity: 1;
|
|
32251
|
+
}
|
|
32252
|
+
to {
|
|
32253
|
+
transform: translateX(40px);
|
|
32254
|
+
opacity: 0;
|
|
32255
|
+
}
|
|
32256
|
+
}
|
|
32257
|
+
@keyframes leave-left {
|
|
32258
|
+
from {
|
|
32259
|
+
transform: translateX(0);
|
|
32260
|
+
opacity: 1;
|
|
32261
|
+
}
|
|
32262
|
+
to {
|
|
32263
|
+
transform: translateX(40px);
|
|
32264
|
+
opacity: 0;
|
|
32265
|
+
}
|
|
32266
|
+
}
|
|
32267
|
+
@keyframes enter-right {
|
|
32268
|
+
from {
|
|
32269
|
+
transform: translateX(-40px);
|
|
32270
|
+
opacity: 0;
|
|
32271
|
+
}
|
|
32272
|
+
to {
|
|
32273
|
+
transform: translateX(0);
|
|
32274
|
+
opacity: 1;
|
|
32275
|
+
}
|
|
32276
|
+
}
|
|
32277
|
+
@keyframes enter-right {
|
|
32278
|
+
from {
|
|
32279
|
+
transform: translateX(-40px);
|
|
32280
|
+
opacity: 0;
|
|
32281
|
+
}
|
|
32282
|
+
to {
|
|
32283
|
+
transform: translateX(0);
|
|
32284
|
+
opacity: 1;
|
|
32285
|
+
}
|
|
32286
|
+
}
|
|
32287
|
+
@keyframes leave-right {
|
|
32288
|
+
from {
|
|
32289
|
+
transform: translateX(0);
|
|
32290
|
+
opacity: 1;
|
|
32291
|
+
}
|
|
32292
|
+
to {
|
|
32293
|
+
transform: translateX(-40px);
|
|
32294
|
+
opacity: 0;
|
|
32295
|
+
}
|
|
32296
|
+
}
|
|
32297
|
+
@keyframes leave-right {
|
|
32298
|
+
from {
|
|
32299
|
+
transform: translateX(0);
|
|
32300
|
+
opacity: 1;
|
|
32301
|
+
}
|
|
32302
|
+
to {
|
|
32303
|
+
transform: translateX(-40px);
|
|
32304
|
+
opacity: 0;
|
|
32305
|
+
}
|
|
32306
|
+
}
|
|
32307
|
+
.ant-float-btn-top .ant-float-btn-top-motion-enter {
|
|
32308
|
+
animation-name: antFadeIn;
|
|
32309
|
+
animation-duration: 0.2s;
|
|
32310
|
+
animation-timing-function: linear;
|
|
32311
|
+
animation-fill-mode: both;
|
|
32312
|
+
}
|
|
32313
|
+
.ant-float-btn-top .ant-float-btn-top-motion-leave {
|
|
32314
|
+
animation-name: antFadeOut;
|
|
32315
|
+
animation-duration: 0.2s;
|
|
32316
|
+
animation-timing-function: linear;
|
|
32317
|
+
animation-fill-mode: both;
|
|
32318
|
+
}
|
|
32102
32319
|
.ant-check-list {
|
|
32103
32320
|
position: fixed;
|
|
32104
32321
|
right: 32px;
|
|
@@ -33156,6 +33373,9 @@ fieldset {
|
|
|
33156
33373
|
.sf .ant-transfer .ant-btn + .ant-btn {
|
|
33157
33374
|
margin-left: 0;
|
|
33158
33375
|
}
|
|
33376
|
+
.sf .ant-mentions {
|
|
33377
|
+
display: inline-flex;
|
|
33378
|
+
}
|
|
33159
33379
|
.sf__no-error .ant-form-item {
|
|
33160
33380
|
margin-bottom: 8px;
|
|
33161
33381
|
}
|
|
@@ -35076,7 +35296,7 @@ code {
|
|
|
35076
35296
|
*/
|
|
35077
35297
|
.fixed-top {
|
|
35078
35298
|
position: fixed;
|
|
35079
|
-
z-index:
|
|
35299
|
+
z-index: 100;
|
|
35080
35300
|
top: 0;
|
|
35081
35301
|
right: 0;
|
|
35082
35302
|
left: 0;
|
|
@@ -35088,7 +35308,7 @@ code {
|
|
|
35088
35308
|
*/
|
|
35089
35309
|
.fixed-bottom {
|
|
35090
35310
|
position: fixed;
|
|
35091
|
-
z-index:
|
|
35311
|
+
z-index: 100;
|
|
35092
35312
|
right: 0;
|
|
35093
35313
|
bottom: 0;
|
|
35094
35314
|
left: 0;
|
|
@@ -36197,7 +36417,8 @@ body {
|
|
|
36197
36417
|
font-size: 12px;
|
|
36198
36418
|
color: var(--grey-7);
|
|
36199
36419
|
}
|
|
36200
|
-
.alain-default__content nz-input-group
|
|
36420
|
+
.alain-default__content nz-input-group,
|
|
36421
|
+
.alain-default__content nz-input-wrapper {
|
|
36201
36422
|
width: auto;
|
|
36202
36423
|
}
|
|
36203
36424
|
.alain-default__hide-aside .alain-default__content {
|
|
@@ -36229,7 +36450,7 @@ body {
|
|
|
36229
36450
|
}
|
|
36230
36451
|
}
|
|
36231
36452
|
.alain-default__header {
|
|
36232
|
-
z-index:
|
|
36453
|
+
z-index: 110;
|
|
36233
36454
|
display: flex;
|
|
36234
36455
|
align-items: center;
|
|
36235
36456
|
width: 100%;
|
|
@@ -36375,7 +36596,7 @@ body {
|
|
|
36375
36596
|
@media (max-width: 767px) {
|
|
36376
36597
|
.alain-default__search {
|
|
36377
36598
|
position: absolute;
|
|
36378
|
-
z-index:
|
|
36599
|
+
z-index: 120;
|
|
36379
36600
|
top: 0;
|
|
36380
36601
|
left: 0;
|
|
36381
36602
|
align-items: center;
|
|
@@ -36419,7 +36640,7 @@ body {
|
|
|
36419
36640
|
}
|
|
36420
36641
|
.alain-default__aside {
|
|
36421
36642
|
position: absolute;
|
|
36422
|
-
z-index:
|
|
36643
|
+
z-index: 105;
|
|
36423
36644
|
top: 0;
|
|
36424
36645
|
bottom: 0;
|
|
36425
36646
|
overflow: hidden;
|
|
@@ -36506,7 +36727,7 @@ body {
|
|
|
36506
36727
|
}
|
|
36507
36728
|
.alain-default__progress-bar {
|
|
36508
36729
|
position: fixed;
|
|
36509
|
-
z-index:
|
|
36730
|
+
z-index: 120;
|
|
36510
36731
|
overflow: hidden;
|
|
36511
36732
|
width: 100vw;
|
|
36512
36733
|
height: 4px;
|
|
@@ -36682,7 +36903,7 @@ body {
|
|
|
36682
36903
|
}
|
|
36683
36904
|
.sidebar-nav__floating {
|
|
36684
36905
|
position: absolute;
|
|
36685
|
-
z-index:
|
|
36906
|
+
z-index: 107;
|
|
36686
36907
|
display: none;
|
|
36687
36908
|
min-width: 160px;
|
|
36688
36909
|
border: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
@@ -36800,7 +37021,7 @@ body {
|
|
|
36800
37021
|
}
|
|
36801
37022
|
.alain-default__fixed .reuse-tab {
|
|
36802
37023
|
position: fixed;
|
|
36803
|
-
z-index:
|
|
37024
|
+
z-index: 101;
|
|
36804
37025
|
top: var(--alain-default-header-hg, 64px);
|
|
36805
37026
|
right: 24px;
|
|
36806
37027
|
left: 224px;
|
|
@@ -37473,7 +37694,7 @@ ellipsis {
|
|
|
37473
37694
|
}
|
|
37474
37695
|
.footer-toolbar {
|
|
37475
37696
|
position: fixed;
|
|
37476
|
-
z-index:
|
|
37697
|
+
z-index: 100;
|
|
37477
37698
|
right: 0;
|
|
37478
37699
|
bottom: 0;
|
|
37479
37700
|
display: flex;
|
|
@@ -37775,7 +37996,7 @@ ellipsis {
|
|
|
37775
37996
|
}
|
|
37776
37997
|
.quick-menu {
|
|
37777
37998
|
position: fixed;
|
|
37778
|
-
z-index:
|
|
37999
|
+
z-index: 102;
|
|
37779
38000
|
right: -1px;
|
|
37780
38001
|
left: auto;
|
|
37781
38002
|
display: block;
|