@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/dark.css
CHANGED
|
@@ -33,9 +33,6 @@ html {
|
|
|
33
33
|
-ms-overflow-style: scrollbar;
|
|
34
34
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
35
35
|
}
|
|
36
|
-
@-ms-viewport {
|
|
37
|
-
width: device-width;
|
|
38
|
-
}
|
|
39
36
|
body {
|
|
40
37
|
margin: 0;
|
|
41
38
|
color: rgba(255, 255, 255, 0.85);
|
|
@@ -295,10 +292,6 @@ template {
|
|
|
295
292
|
[hidden] {
|
|
296
293
|
display: none !important;
|
|
297
294
|
}
|
|
298
|
-
mark {
|
|
299
|
-
padding: 0.2em;
|
|
300
|
-
background-color: #2b2611;
|
|
301
|
-
}
|
|
302
295
|
::selection {
|
|
303
296
|
color: #fff;
|
|
304
297
|
background: #177ddc;
|
|
@@ -370,72 +363,6 @@ mark {
|
|
|
370
363
|
display: inline-block;
|
|
371
364
|
animation: loadingCircle 1s infinite linear;
|
|
372
365
|
}
|
|
373
|
-
.ant-fade-enter,
|
|
374
|
-
.ant-fade-appear {
|
|
375
|
-
animation-duration: 0.2s;
|
|
376
|
-
animation-fill-mode: both;
|
|
377
|
-
animation-play-state: paused;
|
|
378
|
-
}
|
|
379
|
-
.ant-fade-leave {
|
|
380
|
-
animation-duration: 0.2s;
|
|
381
|
-
animation-fill-mode: both;
|
|
382
|
-
animation-play-state: paused;
|
|
383
|
-
}
|
|
384
|
-
.ant-fade-enter.ant-fade-enter-active,
|
|
385
|
-
.ant-fade-appear.ant-fade-appear-active {
|
|
386
|
-
animation-name: antFadeIn;
|
|
387
|
-
animation-play-state: running;
|
|
388
|
-
}
|
|
389
|
-
.ant-fade-leave.ant-fade-leave-active {
|
|
390
|
-
animation-name: antFadeOut;
|
|
391
|
-
animation-play-state: running;
|
|
392
|
-
pointer-events: none;
|
|
393
|
-
}
|
|
394
|
-
.ant-fade-enter,
|
|
395
|
-
.ant-fade-appear {
|
|
396
|
-
animation-duration: 0.2s;
|
|
397
|
-
animation-fill-mode: both;
|
|
398
|
-
animation-play-state: paused;
|
|
399
|
-
}
|
|
400
|
-
.ant-fade-leave {
|
|
401
|
-
animation-duration: 0.2s;
|
|
402
|
-
animation-fill-mode: both;
|
|
403
|
-
animation-play-state: paused;
|
|
404
|
-
}
|
|
405
|
-
.ant-fade-enter.ant-fade-enter-active,
|
|
406
|
-
.ant-fade-appear.ant-fade-appear-active {
|
|
407
|
-
animation-name: antFadeIn;
|
|
408
|
-
animation-play-state: running;
|
|
409
|
-
}
|
|
410
|
-
.ant-fade-leave.ant-fade-leave-active {
|
|
411
|
-
animation-name: antFadeOut;
|
|
412
|
-
animation-play-state: running;
|
|
413
|
-
pointer-events: none;
|
|
414
|
-
}
|
|
415
|
-
.ant-fade-enter,
|
|
416
|
-
.ant-fade-appear {
|
|
417
|
-
opacity: 0;
|
|
418
|
-
animation-timing-function: linear;
|
|
419
|
-
}
|
|
420
|
-
.ant-fade-leave {
|
|
421
|
-
animation-timing-function: linear;
|
|
422
|
-
}
|
|
423
|
-
@keyframes antFadeIn {
|
|
424
|
-
0% {
|
|
425
|
-
opacity: 0;
|
|
426
|
-
}
|
|
427
|
-
100% {
|
|
428
|
-
opacity: 1;
|
|
429
|
-
}
|
|
430
|
-
}
|
|
431
|
-
@keyframes antFadeOut {
|
|
432
|
-
0% {
|
|
433
|
-
opacity: 1;
|
|
434
|
-
}
|
|
435
|
-
100% {
|
|
436
|
-
opacity: 0;
|
|
437
|
-
}
|
|
438
|
-
}
|
|
439
366
|
.ant-move-up-enter,
|
|
440
367
|
.ant-move-up-appear {
|
|
441
368
|
animation-duration: 0.2s;
|
|
@@ -2141,68 +2068,6 @@ nz-link {
|
|
|
2141
2068
|
margin-right: 3px;
|
|
2142
2069
|
margin-left: 0;
|
|
2143
2070
|
}
|
|
2144
|
-
.ant-back-top {
|
|
2145
|
-
box-sizing: border-box;
|
|
2146
|
-
margin: 0;
|
|
2147
|
-
padding: 0;
|
|
2148
|
-
color: rgba(255, 255, 255, 0.85);
|
|
2149
|
-
font-size: 14px;
|
|
2150
|
-
font-variant: tabular-nums;
|
|
2151
|
-
line-height: 1.5715;
|
|
2152
|
-
list-style: none;
|
|
2153
|
-
font-feature-settings: 'tnum';
|
|
2154
|
-
position: fixed;
|
|
2155
|
-
right: 100px;
|
|
2156
|
-
bottom: 50px;
|
|
2157
|
-
z-index: 10;
|
|
2158
|
-
width: 40px;
|
|
2159
|
-
height: 40px;
|
|
2160
|
-
cursor: pointer;
|
|
2161
|
-
}
|
|
2162
|
-
.ant-back-top:empty {
|
|
2163
|
-
display: none;
|
|
2164
|
-
}
|
|
2165
|
-
.ant-back-top-rtl {
|
|
2166
|
-
right: auto;
|
|
2167
|
-
left: 100px;
|
|
2168
|
-
direction: rtl;
|
|
2169
|
-
}
|
|
2170
|
-
.ant-back-top-content {
|
|
2171
|
-
width: 40px;
|
|
2172
|
-
height: 40px;
|
|
2173
|
-
overflow: hidden;
|
|
2174
|
-
color: #fff;
|
|
2175
|
-
text-align: center;
|
|
2176
|
-
background-color: rgba(255, 255, 255, 0.45);
|
|
2177
|
-
border-radius: 20px;
|
|
2178
|
-
transition: all 0.3s;
|
|
2179
|
-
}
|
|
2180
|
-
.ant-back-top-content:hover {
|
|
2181
|
-
background-color: rgba(255, 255, 255, 0.85);
|
|
2182
|
-
transition: all 0.3s;
|
|
2183
|
-
}
|
|
2184
|
-
.ant-back-top-icon {
|
|
2185
|
-
font-size: 24px;
|
|
2186
|
-
line-height: 40px;
|
|
2187
|
-
}
|
|
2188
|
-
@media screen and (max-width: 768px) {
|
|
2189
|
-
.ant-back-top {
|
|
2190
|
-
right: 60px;
|
|
2191
|
-
}
|
|
2192
|
-
.ant-back-top-rtl {
|
|
2193
|
-
right: auto;
|
|
2194
|
-
left: 60px;
|
|
2195
|
-
}
|
|
2196
|
-
}
|
|
2197
|
-
@media screen and (max-width: 480px) {
|
|
2198
|
-
.ant-back-top {
|
|
2199
|
-
right: 20px;
|
|
2200
|
-
}
|
|
2201
|
-
.ant-back-top-rtl {
|
|
2202
|
-
right: auto;
|
|
2203
|
-
left: 20px;
|
|
2204
|
-
}
|
|
2205
|
-
}
|
|
2206
2071
|
.ant-badge {
|
|
2207
2072
|
box-sizing: border-box;
|
|
2208
2073
|
margin: 0;
|
|
@@ -2502,16 +2367,7 @@ nz-link {
|
|
|
2502
2367
|
border: 4px solid;
|
|
2503
2368
|
transform: scaleY(0.75);
|
|
2504
2369
|
transform-origin: top;
|
|
2505
|
-
|
|
2506
|
-
.ant-ribbon-corner::after {
|
|
2507
|
-
position: absolute;
|
|
2508
|
-
top: -4px;
|
|
2509
|
-
left: -4px;
|
|
2510
|
-
width: inherit;
|
|
2511
|
-
height: inherit;
|
|
2512
|
-
color: rgba(0, 0, 0, 0.25);
|
|
2513
|
-
border: inherit;
|
|
2514
|
-
content: '';
|
|
2370
|
+
filter: brightness(75%);
|
|
2515
2371
|
}
|
|
2516
2372
|
.ant-ribbon-color-pink {
|
|
2517
2373
|
color: #cb2b83;
|
|
@@ -6266,48 +6122,48 @@ nz-comment-content {
|
|
|
6266
6122
|
color: rgba(255, 255, 255, 0.3);
|
|
6267
6123
|
}
|
|
6268
6124
|
.ant-picker.ant-picker-borderless {
|
|
6269
|
-
background-color: transparent
|
|
6270
|
-
border-color: transparent
|
|
6271
|
-
box-shadow: none
|
|
6125
|
+
background-color: transparent;
|
|
6126
|
+
border-color: transparent;
|
|
6127
|
+
box-shadow: none;
|
|
6272
6128
|
}
|
|
6273
6129
|
.ant-picker.ant-picker-filled {
|
|
6274
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
6275
|
-
border-color: transparent
|
|
6276
|
-
box-shadow: none
|
|
6130
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
6131
|
+
border-color: transparent;
|
|
6132
|
+
box-shadow: none;
|
|
6277
6133
|
}
|
|
6278
6134
|
.ant-picker.ant-picker-filled:hover {
|
|
6279
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
6280
|
-
border-color: transparent
|
|
6281
|
-
box-shadow: none
|
|
6135
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
6136
|
+
border-color: transparent;
|
|
6137
|
+
box-shadow: none;
|
|
6282
6138
|
}
|
|
6283
6139
|
.ant-picker.ant-picker-filled:focus,
|
|
6284
6140
|
.ant-picker.ant-picker-filled.ant-picker-focused {
|
|
6285
|
-
border-color: #177ddc
|
|
6286
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2)
|
|
6287
|
-
border-right-width: 1px
|
|
6288
|
-
outline: 0
|
|
6289
|
-
background-color: transparent
|
|
6290
|
-
box-shadow: none
|
|
6141
|
+
border-color: #177ddc;
|
|
6142
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
6143
|
+
border-right-width: 1px;
|
|
6144
|
+
outline: 0;
|
|
6145
|
+
background-color: transparent;
|
|
6146
|
+
box-shadow: none;
|
|
6291
6147
|
}
|
|
6292
6148
|
.ant-input-rtl .ant-picker.ant-picker-filled:focus,
|
|
6293
6149
|
.ant-input-rtl .ant-picker.ant-picker-filled.ant-picker-focused {
|
|
6294
|
-
border-right-width: 0
|
|
6150
|
+
border-right-width: 0;
|
|
6295
6151
|
border-left-width: 1px !important;
|
|
6296
6152
|
}
|
|
6297
6153
|
.ant-picker.ant-picker-filled.ant-picker-disabled,
|
|
6298
6154
|
.ant-picker.ant-picker-filled.ant-picker[disabled] {
|
|
6299
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
6300
|
-
border-color: #434343
|
|
6301
|
-
box-shadow: none
|
|
6302
|
-
cursor: not-allowed
|
|
6303
|
-
opacity: 1
|
|
6304
|
-
pointer-events: none
|
|
6305
|
-
color: rgba(255, 255, 255, 0.3)
|
|
6155
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
6156
|
+
border-color: #434343;
|
|
6157
|
+
box-shadow: none;
|
|
6158
|
+
cursor: not-allowed;
|
|
6159
|
+
opacity: 1;
|
|
6160
|
+
pointer-events: none;
|
|
6161
|
+
color: rgba(255, 255, 255, 0.3);
|
|
6306
6162
|
}
|
|
6307
6163
|
.ant-picker.ant-picker-filled.ant-picker-disabled:hover,
|
|
6308
6164
|
.ant-picker.ant-picker-filled.ant-picker[disabled]:hover {
|
|
6309
|
-
border-color: #434343
|
|
6310
|
-
border-right-width: 1px
|
|
6165
|
+
border-color: #434343;
|
|
6166
|
+
border-right-width: 1px;
|
|
6311
6167
|
}
|
|
6312
6168
|
.ant-picker.ant-picker-underlined,
|
|
6313
6169
|
.ant-picker.ant-picker-underlined:hover,
|
|
@@ -6315,10 +6171,13 @@ nz-comment-content {
|
|
|
6315
6171
|
.ant-picker.ant-picker-underlined.ant-picker-focused,
|
|
6316
6172
|
.ant-picker.ant-picker-underlined.ant-picker-disabled,
|
|
6317
6173
|
.ant-picker.ant-picker-underlined.ant-picker[disabled] {
|
|
6318
|
-
background-color: transparent
|
|
6319
|
-
border-width: 0 0 1px
|
|
6320
|
-
border-radius: 0
|
|
6321
|
-
box-shadow: none
|
|
6174
|
+
background-color: transparent;
|
|
6175
|
+
border-width: 0 0 1px;
|
|
6176
|
+
border-radius: 0;
|
|
6177
|
+
box-shadow: none;
|
|
6178
|
+
}
|
|
6179
|
+
.ant-picker.ant-picker-underlined:hover:not(.ant-picker-focused):not(:focus) {
|
|
6180
|
+
border-color: #434343;
|
|
6322
6181
|
}
|
|
6323
6182
|
.ant-picker-input {
|
|
6324
6183
|
position: relative;
|
|
@@ -6407,67 +6266,66 @@ nz-comment-content {
|
|
|
6407
6266
|
border-color: #434343;
|
|
6408
6267
|
border-right-width: 1px;
|
|
6409
6268
|
}
|
|
6410
|
-
.ant-picker-input > input
|
|
6411
|
-
.ant-picker-input > input
|
|
6412
|
-
.ant-picker-input > input
|
|
6413
|
-
.ant-picker-input > input-borderless.ant-picker-input > input-focused,
|
|
6414
|
-
.ant-picker-input > input-borderless.ant-picker-input > input-disabled,
|
|
6415
|
-
.ant-picker-input > input-borderless.ant-picker-input > input[disabled] {
|
|
6416
|
-
background-color: transparent
|
|
6417
|
-
border: none
|
|
6418
|
-
box-shadow: none
|
|
6269
|
+
.ant-picker-input > input.ant-picker-input > input-borderless,
|
|
6270
|
+
.ant-picker-input > input.ant-picker-input > input-borderless:hover,
|
|
6271
|
+
.ant-picker-input > input.ant-picker-input > input-borderless:focus,
|
|
6272
|
+
.ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input-focused,
|
|
6273
|
+
.ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input-disabled,
|
|
6274
|
+
.ant-picker-input > input.ant-picker-input > input-borderless.ant-picker-input > input[disabled] {
|
|
6275
|
+
background-color: transparent;
|
|
6276
|
+
border: none;
|
|
6277
|
+
box-shadow: none;
|
|
6419
6278
|
}
|
|
6420
|
-
.ant-picker-input > input-filled {
|
|
6421
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
6279
|
+
.ant-picker-input > input.ant-picker-input > input-filled {
|
|
6280
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
6422
6281
|
border-color: transparent;
|
|
6423
|
-
box-shadow: none
|
|
6282
|
+
box-shadow: none;
|
|
6424
6283
|
}
|
|
6425
|
-
.ant-picker-input > input
|
|
6426
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
6427
|
-
border-color: transparent !important;
|
|
6284
|
+
.ant-picker-input > input.ant-picker-input > input-filled:hover {
|
|
6285
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
6428
6286
|
}
|
|
6429
|
-
.ant-picker-input > input-filled:focus,
|
|
6430
|
-
.ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6287
|
+
.ant-picker-input > input.ant-picker-input > input-filled:focus,
|
|
6288
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6431
6289
|
border-color: #177ddc;
|
|
6432
6290
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
6433
6291
|
border-right-width: 1px;
|
|
6434
6292
|
outline: 0;
|
|
6435
|
-
background-color: transparent
|
|
6436
|
-
box-shadow: none
|
|
6293
|
+
background-color: transparent;
|
|
6294
|
+
box-shadow: none;
|
|
6437
6295
|
}
|
|
6438
|
-
.ant-input-rtl .ant-picker-input > input-filled:focus,
|
|
6439
|
-
.ant-input-rtl .ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6296
|
+
.ant-input-rtl .ant-picker-input > input.ant-picker-input > input-filled:focus,
|
|
6297
|
+
.ant-input-rtl .ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-focused {
|
|
6440
6298
|
border-right-width: 0;
|
|
6441
6299
|
border-left-width: 1px !important;
|
|
6442
6300
|
}
|
|
6443
|
-
.ant-picker-input > input-filled.ant-picker-input > input-disabled,
|
|
6444
|
-
.ant-picker-input > input-filled.ant-picker-input > input[disabled] {
|
|
6445
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
6446
|
-
border-color: #434343
|
|
6447
|
-
box-shadow: none
|
|
6448
|
-
cursor: not-allowed
|
|
6449
|
-
opacity: 1
|
|
6450
|
-
pointer-events: none
|
|
6451
|
-
color: rgba(255, 255, 255, 0.3)
|
|
6301
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-disabled,
|
|
6302
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input[disabled] {
|
|
6303
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
6304
|
+
border-color: #434343;
|
|
6305
|
+
box-shadow: none;
|
|
6306
|
+
cursor: not-allowed;
|
|
6307
|
+
opacity: 1;
|
|
6308
|
+
pointer-events: none;
|
|
6309
|
+
color: rgba(255, 255, 255, 0.3);
|
|
6452
6310
|
}
|
|
6453
|
-
.ant-picker-input > input-filled.ant-picker-input > input-disabled:hover,
|
|
6454
|
-
.ant-picker-input > input-filled.ant-picker-input > input[disabled]:hover {
|
|
6455
|
-
border-color: #434343
|
|
6456
|
-
border-right-width: 1px
|
|
6457
|
-
}
|
|
6458
|
-
.ant-picker-input > input-underlined.ant-picker-input > input,
|
|
6459
|
-
.ant-picker-input > input-underlined:hover,
|
|
6460
|
-
.ant-picker-input > input-underlined:focus,
|
|
6461
|
-
.ant-picker-input > input-underlined.ant-picker-input > input-focused,
|
|
6462
|
-
.ant-picker-input > input-underlined.ant-picker-input > input-disabled,
|
|
6463
|
-
.ant-picker-input > input-underlined.ant-picker-input > input[disabled] {
|
|
6464
|
-
background-color: transparent !important;
|
|
6465
|
-
border-width: 0 0 1px !important;
|
|
6466
|
-
border-radius: 0 !important;
|
|
6467
|
-
box-shadow: none !important;
|
|
6311
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input-disabled:hover,
|
|
6312
|
+
.ant-picker-input > input.ant-picker-input > input-filled.ant-picker-input > input[disabled]:hover {
|
|
6313
|
+
border-color: #434343;
|
|
6314
|
+
border-right-width: 1px;
|
|
6468
6315
|
}
|
|
6469
|
-
.ant-picker-input > input
|
|
6470
|
-
|
|
6316
|
+
.ant-picker-input > input.ant-picker-input > input-underlined,
|
|
6317
|
+
.ant-picker-input > input.ant-picker-input > input-underlined:hover,
|
|
6318
|
+
.ant-picker-input > input.ant-picker-input > input-underlined:focus,
|
|
6319
|
+
.ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input-focused,
|
|
6320
|
+
.ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input-disabled,
|
|
6321
|
+
.ant-picker-input > input.ant-picker-input > input-underlined.ant-picker-input > input[disabled] {
|
|
6322
|
+
background-color: transparent;
|
|
6323
|
+
border-width: 0 0 1px;
|
|
6324
|
+
border-radius: 0;
|
|
6325
|
+
box-shadow: none;
|
|
6326
|
+
}
|
|
6327
|
+
.ant-picker-input > input.ant-picker-input > input-underlined:hover:not(.ant-picker-input > input-focused):not(:focus) {
|
|
6328
|
+
border-color: #434343;
|
|
6471
6329
|
}
|
|
6472
6330
|
textarea.ant-picker-input > input {
|
|
6473
6331
|
max-width: 100%;
|
|
@@ -7847,10 +7705,7 @@ nz-descriptions {
|
|
|
7847
7705
|
}
|
|
7848
7706
|
.ant-drawer {
|
|
7849
7707
|
position: fixed;
|
|
7850
|
-
|
|
7851
|
-
right: 0;
|
|
7852
|
-
bottom: 0;
|
|
7853
|
-
left: 0;
|
|
7708
|
+
inset: 0;
|
|
7854
7709
|
z-index: 1000;
|
|
7855
7710
|
pointer-events: none;
|
|
7856
7711
|
}
|
|
@@ -7859,10 +7714,7 @@ nz-descriptions {
|
|
|
7859
7714
|
}
|
|
7860
7715
|
.ant-drawer-mask {
|
|
7861
7716
|
position: absolute;
|
|
7862
|
-
|
|
7863
|
-
right: 0;
|
|
7864
|
-
bottom: 0;
|
|
7865
|
-
left: 0;
|
|
7717
|
+
inset: 0;
|
|
7866
7718
|
z-index: 1000;
|
|
7867
7719
|
background: rgba(0, 0, 0, 0.45);
|
|
7868
7720
|
pointer-events: auto;
|
|
@@ -8099,6 +7951,18 @@ nz-descriptions {
|
|
|
8099
7951
|
.ant-drawer-panel-motion-bottom-leave-active {
|
|
8100
7952
|
transform: translateY(100%);
|
|
8101
7953
|
}
|
|
7954
|
+
.ant-drawer-mask-motion-enter {
|
|
7955
|
+
animation-name: antFadeIn;
|
|
7956
|
+
animation-duration: 0.3s;
|
|
7957
|
+
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
7958
|
+
animation-fill-mode: both;
|
|
7959
|
+
}
|
|
7960
|
+
.ant-drawer-mask-motion-leave {
|
|
7961
|
+
animation-name: antFadeOut;
|
|
7962
|
+
animation-duration: 0.3s;
|
|
7963
|
+
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
7964
|
+
animation-fill-mode: both;
|
|
7965
|
+
}
|
|
8102
7966
|
.ant-drawer-rtl {
|
|
8103
7967
|
direction: rtl;
|
|
8104
7968
|
}
|
|
@@ -14297,67 +14161,66 @@ nz-empty {
|
|
|
14297
14161
|
border-color: #434343;
|
|
14298
14162
|
border-right-width: 1px;
|
|
14299
14163
|
}
|
|
14300
|
-
.ant-input-affix-wrapper
|
|
14301
|
-
.ant-input-affix-wrapper
|
|
14302
|
-
.ant-input-affix-wrapper
|
|
14303
|
-
.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-focused,
|
|
14304
|
-
.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-disabled,
|
|
14305
|
-
.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper[disabled] {
|
|
14306
|
-
background-color: transparent
|
|
14307
|
-
border: none
|
|
14308
|
-
box-shadow: none
|
|
14164
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless,
|
|
14165
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless:hover,
|
|
14166
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless:focus,
|
|
14167
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-focused,
|
|
14168
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper-disabled,
|
|
14169
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-borderless.ant-input-affix-wrapper[disabled] {
|
|
14170
|
+
background-color: transparent;
|
|
14171
|
+
border: none;
|
|
14172
|
+
box-shadow: none;
|
|
14309
14173
|
}
|
|
14310
|
-
.ant-input-affix-wrapper-filled {
|
|
14311
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
14174
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled {
|
|
14175
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
14312
14176
|
border-color: transparent;
|
|
14313
|
-
box-shadow: none
|
|
14177
|
+
box-shadow: none;
|
|
14314
14178
|
}
|
|
14315
|
-
.ant-input-affix-wrapper
|
|
14316
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
14317
|
-
border-color: transparent !important;
|
|
14179
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled:hover {
|
|
14180
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
14318
14181
|
}
|
|
14319
|
-
.ant-input-affix-wrapper-filled:focus,
|
|
14320
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14182
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled:focus,
|
|
14183
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14321
14184
|
border-color: #177ddc;
|
|
14322
14185
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
14323
14186
|
border-right-width: 1px;
|
|
14324
14187
|
outline: 0;
|
|
14325
|
-
background-color: transparent
|
|
14326
|
-
box-shadow: none
|
|
14188
|
+
background-color: transparent;
|
|
14189
|
+
box-shadow: none;
|
|
14327
14190
|
}
|
|
14328
|
-
.ant-input-rtl .ant-input-affix-wrapper-filled:focus,
|
|
14329
|
-
.ant-input-rtl .ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14191
|
+
.ant-input-rtl .ant-input-affix-wrapper.ant-input-affix-wrapper-filled:focus,
|
|
14192
|
+
.ant-input-rtl .ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-focused {
|
|
14330
14193
|
border-right-width: 0;
|
|
14331
14194
|
border-left-width: 1px !important;
|
|
14332
14195
|
}
|
|
14333
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled,
|
|
14334
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled] {
|
|
14335
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
14336
|
-
border-color: #434343
|
|
14337
|
-
box-shadow: none
|
|
14338
|
-
cursor: not-allowed
|
|
14339
|
-
opacity: 1
|
|
14340
|
-
pointer-events: none
|
|
14341
|
-
color: rgba(255, 255, 255, 0.3)
|
|
14196
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled,
|
|
14197
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled] {
|
|
14198
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
14199
|
+
border-color: #434343;
|
|
14200
|
+
box-shadow: none;
|
|
14201
|
+
cursor: not-allowed;
|
|
14202
|
+
opacity: 1;
|
|
14203
|
+
pointer-events: none;
|
|
14204
|
+
color: rgba(255, 255, 255, 0.3);
|
|
14342
14205
|
}
|
|
14343
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled:hover,
|
|
14344
|
-
.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled]:hover {
|
|
14345
|
-
border-color: #434343
|
|
14346
|
-
border-right-width: 1px
|
|
14347
|
-
}
|
|
14348
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper,
|
|
14349
|
-
.ant-input-affix-wrapper-underlined:hover,
|
|
14350
|
-
.ant-input-affix-wrapper-underlined:focus,
|
|
14351
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-focused,
|
|
14352
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-disabled,
|
|
14353
|
-
.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper[disabled] {
|
|
14354
|
-
background-color: transparent !important;
|
|
14355
|
-
border-width: 0 0 1px !important;
|
|
14356
|
-
border-radius: 0 !important;
|
|
14357
|
-
box-shadow: none !important;
|
|
14206
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper-disabled:hover,
|
|
14207
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-filled.ant-input-affix-wrapper[disabled]:hover {
|
|
14208
|
+
border-color: #434343;
|
|
14209
|
+
border-right-width: 1px;
|
|
14358
14210
|
}
|
|
14359
|
-
.ant-input-affix-wrapper
|
|
14360
|
-
|
|
14211
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined,
|
|
14212
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:hover,
|
|
14213
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:focus,
|
|
14214
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-focused,
|
|
14215
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper-disabled,
|
|
14216
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined.ant-input-affix-wrapper[disabled] {
|
|
14217
|
+
background-color: transparent;
|
|
14218
|
+
border-width: 0 0 1px;
|
|
14219
|
+
border-radius: 0;
|
|
14220
|
+
box-shadow: none;
|
|
14221
|
+
}
|
|
14222
|
+
.ant-input-affix-wrapper.ant-input-affix-wrapper-underlined:hover:not(.ant-input-affix-wrapper-focused):not(:focus) {
|
|
14223
|
+
border-color: #434343;
|
|
14361
14224
|
}
|
|
14362
14225
|
textarea.ant-input-affix-wrapper {
|
|
14363
14226
|
max-width: 100%;
|
|
@@ -14634,67 +14497,66 @@ textarea.ant-input-affix-wrapper {
|
|
|
14634
14497
|
border-color: #434343;
|
|
14635
14498
|
border-right-width: 1px;
|
|
14636
14499
|
}
|
|
14637
|
-
.ant-input
|
|
14638
|
-
.ant-input
|
|
14639
|
-
.ant-input
|
|
14640
|
-
.ant-input-borderless.ant-input-focused,
|
|
14641
|
-
.ant-input-borderless.ant-input-disabled,
|
|
14642
|
-
.ant-input-borderless.ant-input[disabled] {
|
|
14643
|
-
background-color: transparent
|
|
14644
|
-
border: none
|
|
14645
|
-
box-shadow: none
|
|
14500
|
+
.ant-input.ant-input-borderless,
|
|
14501
|
+
.ant-input.ant-input-borderless:hover,
|
|
14502
|
+
.ant-input.ant-input-borderless:focus,
|
|
14503
|
+
.ant-input.ant-input-borderless.ant-input-focused,
|
|
14504
|
+
.ant-input.ant-input-borderless.ant-input-disabled,
|
|
14505
|
+
.ant-input.ant-input-borderless.ant-input[disabled] {
|
|
14506
|
+
background-color: transparent;
|
|
14507
|
+
border: none;
|
|
14508
|
+
box-shadow: none;
|
|
14646
14509
|
}
|
|
14647
|
-
.ant-input-filled {
|
|
14648
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
14510
|
+
.ant-input.ant-input-filled {
|
|
14511
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
14649
14512
|
border-color: transparent;
|
|
14650
|
-
box-shadow: none
|
|
14513
|
+
box-shadow: none;
|
|
14651
14514
|
}
|
|
14652
|
-
.ant-input
|
|
14653
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
14654
|
-
border-color: transparent !important;
|
|
14515
|
+
.ant-input.ant-input-filled:hover {
|
|
14516
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
14655
14517
|
}
|
|
14656
|
-
.ant-input-filled:focus,
|
|
14657
|
-
.ant-input-filled.ant-input-focused {
|
|
14518
|
+
.ant-input.ant-input-filled:focus,
|
|
14519
|
+
.ant-input.ant-input-filled.ant-input-focused {
|
|
14658
14520
|
border-color: #177ddc;
|
|
14659
14521
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
14660
14522
|
border-right-width: 1px;
|
|
14661
14523
|
outline: 0;
|
|
14662
|
-
background-color: transparent
|
|
14663
|
-
box-shadow: none
|
|
14524
|
+
background-color: transparent;
|
|
14525
|
+
box-shadow: none;
|
|
14664
14526
|
}
|
|
14665
|
-
.ant-input-rtl .ant-input-filled:focus,
|
|
14666
|
-
.ant-input-rtl .ant-input-filled.ant-input-focused {
|
|
14527
|
+
.ant-input-rtl .ant-input.ant-input-filled:focus,
|
|
14528
|
+
.ant-input-rtl .ant-input.ant-input-filled.ant-input-focused {
|
|
14667
14529
|
border-right-width: 0;
|
|
14668
14530
|
border-left-width: 1px !important;
|
|
14669
14531
|
}
|
|
14670
|
-
.ant-input-filled.ant-input-disabled,
|
|
14671
|
-
.ant-input-filled.ant-input[disabled] {
|
|
14672
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
14673
|
-
border-color: #434343
|
|
14674
|
-
box-shadow: none
|
|
14675
|
-
cursor: not-allowed
|
|
14676
|
-
opacity: 1
|
|
14677
|
-
pointer-events: none
|
|
14678
|
-
color: rgba(255, 255, 255, 0.3)
|
|
14532
|
+
.ant-input.ant-input-filled.ant-input-disabled,
|
|
14533
|
+
.ant-input.ant-input-filled.ant-input[disabled] {
|
|
14534
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
14535
|
+
border-color: #434343;
|
|
14536
|
+
box-shadow: none;
|
|
14537
|
+
cursor: not-allowed;
|
|
14538
|
+
opacity: 1;
|
|
14539
|
+
pointer-events: none;
|
|
14540
|
+
color: rgba(255, 255, 255, 0.3);
|
|
14679
14541
|
}
|
|
14680
|
-
.ant-input-filled.ant-input-disabled:hover,
|
|
14681
|
-
.ant-input-filled.ant-input[disabled]:hover {
|
|
14682
|
-
border-color: #434343
|
|
14683
|
-
border-right-width: 1px
|
|
14684
|
-
}
|
|
14685
|
-
.ant-input-underlined.ant-input,
|
|
14686
|
-
.ant-input-underlined:hover,
|
|
14687
|
-
.ant-input-underlined:focus,
|
|
14688
|
-
.ant-input-underlined.ant-input-focused,
|
|
14689
|
-
.ant-input-underlined.ant-input-disabled,
|
|
14690
|
-
.ant-input-underlined.ant-input[disabled] {
|
|
14691
|
-
background-color: transparent !important;
|
|
14692
|
-
border-width: 0 0 1px !important;
|
|
14693
|
-
border-radius: 0 !important;
|
|
14694
|
-
box-shadow: none !important;
|
|
14542
|
+
.ant-input.ant-input-filled.ant-input-disabled:hover,
|
|
14543
|
+
.ant-input.ant-input-filled.ant-input[disabled]:hover {
|
|
14544
|
+
border-color: #434343;
|
|
14545
|
+
border-right-width: 1px;
|
|
14695
14546
|
}
|
|
14696
|
-
.ant-input
|
|
14697
|
-
|
|
14547
|
+
.ant-input.ant-input-underlined,
|
|
14548
|
+
.ant-input.ant-input-underlined:hover,
|
|
14549
|
+
.ant-input.ant-input-underlined:focus,
|
|
14550
|
+
.ant-input.ant-input-underlined.ant-input-focused,
|
|
14551
|
+
.ant-input.ant-input-underlined.ant-input-disabled,
|
|
14552
|
+
.ant-input.ant-input-underlined.ant-input[disabled] {
|
|
14553
|
+
background-color: transparent;
|
|
14554
|
+
border-width: 0 0 1px;
|
|
14555
|
+
border-radius: 0;
|
|
14556
|
+
box-shadow: none;
|
|
14557
|
+
}
|
|
14558
|
+
.ant-input.ant-input-underlined:hover:not(.ant-input-focused):not(:focus) {
|
|
14559
|
+
border-color: #434343;
|
|
14698
14560
|
}
|
|
14699
14561
|
textarea.ant-input {
|
|
14700
14562
|
max-width: 100%;
|
|
@@ -15080,14 +14942,42 @@ textarea.ant-input {
|
|
|
15080
14942
|
text-align: start;
|
|
15081
14943
|
vertical-align: top;
|
|
15082
14944
|
}
|
|
15083
|
-
.ant-input-
|
|
14945
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input-compact-item .ant-input,
|
|
14946
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item):not(.ant-input-compact-last-item).ant-input-compact-item .ant-input-group-addon {
|
|
14947
|
+
border-radius: 0;
|
|
14948
|
+
}
|
|
14949
|
+
.ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-first-item .ant-input,
|
|
14950
|
+
.ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-first-item .ant-input-group-addon {
|
|
14951
|
+
border-start-end-radius: 0;
|
|
14952
|
+
border-end-end-radius: 0;
|
|
14953
|
+
}
|
|
14954
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-last-item .ant-input,
|
|
14955
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-last-item .ant-input-group-addon {
|
|
14956
|
+
border-start-start-radius: 0;
|
|
14957
|
+
border-end-start-radius: 0;
|
|
14958
|
+
}
|
|
14959
|
+
.ant-input-group-wrapper:not(.ant-input-compact-last-item).ant-input-compact-item .ant-input-affix-wrapper {
|
|
14960
|
+
border-start-end-radius: 0;
|
|
14961
|
+
border-end-end-radius: 0;
|
|
14962
|
+
}
|
|
14963
|
+
.ant-input-group-wrapper:not(.ant-input-compact-first-item).ant-input-compact-item .ant-input-affix-wrapper {
|
|
14964
|
+
border-start-start-radius: 0;
|
|
14965
|
+
border-end-start-radius: 0;
|
|
14966
|
+
}
|
|
14967
|
+
.ant-input-password-icon {
|
|
15084
14968
|
color: rgba(255, 255, 255, 0.45);
|
|
15085
14969
|
cursor: pointer;
|
|
15086
14970
|
transition: all 0.3s;
|
|
15087
14971
|
}
|
|
15088
|
-
.ant-input-password-icon
|
|
14972
|
+
.ant-input-password-icon:hover {
|
|
15089
14973
|
color: rgba(255, 255, 255, 0.85);
|
|
15090
14974
|
}
|
|
14975
|
+
.ant-input-disabled .ant-input-password-icon {
|
|
14976
|
+
cursor: not-allowed;
|
|
14977
|
+
}
|
|
14978
|
+
.ant-input-disabled .ant-input-password-icon:hover {
|
|
14979
|
+
color: rgba(255, 255, 255, 0.45);
|
|
14980
|
+
}
|
|
15091
14981
|
.ant-input[type='color'] {
|
|
15092
14982
|
height: 32px;
|
|
15093
14983
|
}
|
|
@@ -15798,67 +15688,66 @@ nz-form-item-feedback-icon.ant-input-suffix {
|
|
|
15798
15688
|
border-color: #434343;
|
|
15799
15689
|
border-right-width: 1px;
|
|
15800
15690
|
}
|
|
15801
|
-
.ant-input-number-affix-wrapper
|
|
15802
|
-
.ant-input-number-affix-wrapper
|
|
15803
|
-
.ant-input-number-affix-wrapper
|
|
15804
|
-
.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-focused,
|
|
15805
|
-
.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-disabled,
|
|
15806
|
-
.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper[disabled] {
|
|
15807
|
-
background-color: transparent
|
|
15808
|
-
border: none
|
|
15809
|
-
box-shadow: none
|
|
15691
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless,
|
|
15692
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless:hover,
|
|
15693
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless:focus,
|
|
15694
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-focused,
|
|
15695
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper-disabled,
|
|
15696
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-borderless.ant-input-number-affix-wrapper[disabled] {
|
|
15697
|
+
background-color: transparent;
|
|
15698
|
+
border: none;
|
|
15699
|
+
box-shadow: none;
|
|
15810
15700
|
}
|
|
15811
|
-
.ant-input-number-affix-wrapper-filled {
|
|
15812
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
15701
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled {
|
|
15702
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
15813
15703
|
border-color: transparent;
|
|
15814
|
-
box-shadow: none
|
|
15704
|
+
box-shadow: none;
|
|
15815
15705
|
}
|
|
15816
|
-
.ant-input-number-affix-wrapper
|
|
15817
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
15818
|
-
border-color: transparent !important;
|
|
15706
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:hover {
|
|
15707
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
15819
15708
|
}
|
|
15820
|
-
.ant-input-number-affix-wrapper-filled:focus,
|
|
15821
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15709
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:focus,
|
|
15710
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15822
15711
|
border-color: #177ddc;
|
|
15823
15712
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
15824
15713
|
border-right-width: 1px;
|
|
15825
15714
|
outline: 0;
|
|
15826
|
-
background-color: transparent
|
|
15827
|
-
box-shadow: none
|
|
15715
|
+
background-color: transparent;
|
|
15716
|
+
box-shadow: none;
|
|
15828
15717
|
}
|
|
15829
|
-
.ant-input-rtl .ant-input-number-affix-wrapper-filled:focus,
|
|
15830
|
-
.ant-input-rtl .ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15718
|
+
.ant-input-rtl .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled:focus,
|
|
15719
|
+
.ant-input-rtl .ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-focused {
|
|
15831
15720
|
border-right-width: 0;
|
|
15832
15721
|
border-left-width: 1px !important;
|
|
15833
15722
|
}
|
|
15834
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled,
|
|
15835
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled] {
|
|
15836
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
15837
|
-
border-color: #434343
|
|
15838
|
-
box-shadow: none
|
|
15839
|
-
cursor: not-allowed
|
|
15840
|
-
opacity: 1
|
|
15841
|
-
pointer-events: none
|
|
15842
|
-
color: rgba(255, 255, 255, 0.3)
|
|
15723
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled,
|
|
15724
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled] {
|
|
15725
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
15726
|
+
border-color: #434343;
|
|
15727
|
+
box-shadow: none;
|
|
15728
|
+
cursor: not-allowed;
|
|
15729
|
+
opacity: 1;
|
|
15730
|
+
pointer-events: none;
|
|
15731
|
+
color: rgba(255, 255, 255, 0.3);
|
|
15843
15732
|
}
|
|
15844
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled:hover,
|
|
15845
|
-
.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled]:hover {
|
|
15846
|
-
border-color: #434343
|
|
15847
|
-
border-right-width: 1px
|
|
15848
|
-
}
|
|
15849
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper,
|
|
15850
|
-
.ant-input-number-affix-wrapper-underlined:hover,
|
|
15851
|
-
.ant-input-number-affix-wrapper-underlined:focus,
|
|
15852
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-focused,
|
|
15853
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-disabled,
|
|
15854
|
-
.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper[disabled] {
|
|
15855
|
-
background-color: transparent !important;
|
|
15856
|
-
border-width: 0 0 1px !important;
|
|
15857
|
-
border-radius: 0 !important;
|
|
15858
|
-
box-shadow: none !important;
|
|
15733
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper-disabled:hover,
|
|
15734
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-filled.ant-input-number-affix-wrapper[disabled]:hover {
|
|
15735
|
+
border-color: #434343;
|
|
15736
|
+
border-right-width: 1px;
|
|
15859
15737
|
}
|
|
15860
|
-
.ant-input-number-affix-wrapper
|
|
15861
|
-
|
|
15738
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined,
|
|
15739
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:hover,
|
|
15740
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:focus,
|
|
15741
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-focused,
|
|
15742
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper-disabled,
|
|
15743
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined.ant-input-number-affix-wrapper[disabled] {
|
|
15744
|
+
background-color: transparent;
|
|
15745
|
+
border-width: 0 0 1px;
|
|
15746
|
+
border-radius: 0;
|
|
15747
|
+
box-shadow: none;
|
|
15748
|
+
}
|
|
15749
|
+
.ant-input-number-affix-wrapper.ant-input-number-affix-wrapper-underlined:hover:not(.ant-input-number-affix-wrapper-focused):not(:focus) {
|
|
15750
|
+
border-color: #434343;
|
|
15862
15751
|
}
|
|
15863
15752
|
textarea.ant-input-number-affix-wrapper {
|
|
15864
15753
|
max-width: 100%;
|
|
@@ -16097,67 +15986,66 @@ textarea.ant-input-number-affix-wrapper {
|
|
|
16097
15986
|
border-color: #434343;
|
|
16098
15987
|
border-right-width: 1px;
|
|
16099
15988
|
}
|
|
16100
|
-
.ant-input-number
|
|
16101
|
-
.ant-input-number
|
|
16102
|
-
.ant-input-number
|
|
16103
|
-
.ant-input-number-borderless.ant-input-number-focused,
|
|
16104
|
-
.ant-input-number-borderless.ant-input-number-disabled,
|
|
16105
|
-
.ant-input-number-borderless.ant-input-number[disabled] {
|
|
16106
|
-
background-color: transparent
|
|
16107
|
-
border: none
|
|
16108
|
-
box-shadow: none
|
|
15989
|
+
.ant-input-number.ant-input-number-borderless,
|
|
15990
|
+
.ant-input-number.ant-input-number-borderless:hover,
|
|
15991
|
+
.ant-input-number.ant-input-number-borderless:focus,
|
|
15992
|
+
.ant-input-number.ant-input-number-borderless.ant-input-number-focused,
|
|
15993
|
+
.ant-input-number.ant-input-number-borderless.ant-input-number-disabled,
|
|
15994
|
+
.ant-input-number.ant-input-number-borderless.ant-input-number[disabled] {
|
|
15995
|
+
background-color: transparent;
|
|
15996
|
+
border: none;
|
|
15997
|
+
box-shadow: none;
|
|
16109
15998
|
}
|
|
16110
|
-
.ant-input-number-filled {
|
|
16111
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
15999
|
+
.ant-input-number.ant-input-number-filled {
|
|
16000
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
16112
16001
|
border-color: transparent;
|
|
16113
|
-
box-shadow: none
|
|
16002
|
+
box-shadow: none;
|
|
16114
16003
|
}
|
|
16115
|
-
.ant-input-number
|
|
16116
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
16117
|
-
border-color: transparent !important;
|
|
16004
|
+
.ant-input-number.ant-input-number-filled:hover {
|
|
16005
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
16118
16006
|
}
|
|
16119
|
-
.ant-input-number-filled:focus,
|
|
16120
|
-
.ant-input-number-filled.ant-input-number-focused {
|
|
16007
|
+
.ant-input-number.ant-input-number-filled:focus,
|
|
16008
|
+
.ant-input-number.ant-input-number-filled.ant-input-number-focused {
|
|
16121
16009
|
border-color: #177ddc;
|
|
16122
16010
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
16123
16011
|
border-right-width: 1px;
|
|
16124
16012
|
outline: 0;
|
|
16125
|
-
background-color: transparent
|
|
16126
|
-
box-shadow: none
|
|
16013
|
+
background-color: transparent;
|
|
16014
|
+
box-shadow: none;
|
|
16127
16015
|
}
|
|
16128
|
-
.ant-input-rtl .ant-input-number-filled:focus,
|
|
16129
|
-
.ant-input-rtl .ant-input-number-filled.ant-input-number-focused {
|
|
16016
|
+
.ant-input-rtl .ant-input-number.ant-input-number-filled:focus,
|
|
16017
|
+
.ant-input-rtl .ant-input-number.ant-input-number-filled.ant-input-number-focused {
|
|
16130
16018
|
border-right-width: 0;
|
|
16131
16019
|
border-left-width: 1px !important;
|
|
16132
16020
|
}
|
|
16133
|
-
.ant-input-number-filled.ant-input-number-disabled,
|
|
16134
|
-
.ant-input-number-filled.ant-input-number[disabled] {
|
|
16135
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
16136
|
-
border-color: #434343
|
|
16137
|
-
box-shadow: none
|
|
16138
|
-
cursor: not-allowed
|
|
16139
|
-
opacity: 1
|
|
16140
|
-
pointer-events: none
|
|
16141
|
-
color: rgba(255, 255, 255, 0.3)
|
|
16021
|
+
.ant-input-number.ant-input-number-filled.ant-input-number-disabled,
|
|
16022
|
+
.ant-input-number.ant-input-number-filled.ant-input-number[disabled] {
|
|
16023
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
16024
|
+
border-color: #434343;
|
|
16025
|
+
box-shadow: none;
|
|
16026
|
+
cursor: not-allowed;
|
|
16027
|
+
opacity: 1;
|
|
16028
|
+
pointer-events: none;
|
|
16029
|
+
color: rgba(255, 255, 255, 0.3);
|
|
16142
16030
|
}
|
|
16143
|
-
.ant-input-number-filled.ant-input-number-disabled:hover,
|
|
16144
|
-
.ant-input-number-filled.ant-input-number[disabled]:hover {
|
|
16145
|
-
border-color: #434343
|
|
16146
|
-
border-right-width: 1px
|
|
16147
|
-
}
|
|
16148
|
-
.ant-input-number-underlined.ant-input-number,
|
|
16149
|
-
.ant-input-number-underlined:hover,
|
|
16150
|
-
.ant-input-number-underlined:focus,
|
|
16151
|
-
.ant-input-number-underlined.ant-input-number-focused,
|
|
16152
|
-
.ant-input-number-underlined.ant-input-number-disabled,
|
|
16153
|
-
.ant-input-number-underlined.ant-input-number[disabled] {
|
|
16154
|
-
background-color: transparent !important;
|
|
16155
|
-
border-width: 0 0 1px !important;
|
|
16156
|
-
border-radius: 0 !important;
|
|
16157
|
-
box-shadow: none !important;
|
|
16031
|
+
.ant-input-number.ant-input-number-filled.ant-input-number-disabled:hover,
|
|
16032
|
+
.ant-input-number.ant-input-number-filled.ant-input-number[disabled]:hover {
|
|
16033
|
+
border-color: #434343;
|
|
16034
|
+
border-right-width: 1px;
|
|
16158
16035
|
}
|
|
16159
|
-
.ant-input-number
|
|
16160
|
-
|
|
16036
|
+
.ant-input-number.ant-input-number-underlined,
|
|
16037
|
+
.ant-input-number.ant-input-number-underlined:hover,
|
|
16038
|
+
.ant-input-number.ant-input-number-underlined:focus,
|
|
16039
|
+
.ant-input-number.ant-input-number-underlined.ant-input-number-focused,
|
|
16040
|
+
.ant-input-number.ant-input-number-underlined.ant-input-number-disabled,
|
|
16041
|
+
.ant-input-number.ant-input-number-underlined.ant-input-number[disabled] {
|
|
16042
|
+
background-color: transparent;
|
|
16043
|
+
border-width: 0 0 1px;
|
|
16044
|
+
border-radius: 0;
|
|
16045
|
+
box-shadow: none;
|
|
16046
|
+
}
|
|
16047
|
+
.ant-input-number.ant-input-number-underlined:hover:not(.ant-input-number-focused):not(:focus) {
|
|
16048
|
+
border-color: #434343;
|
|
16161
16049
|
}
|
|
16162
16050
|
textarea.ant-input-number {
|
|
16163
16051
|
max-width: 100%;
|
|
@@ -16542,6 +16430,28 @@ textarea.ant-input-number {
|
|
|
16542
16430
|
text-align: start;
|
|
16543
16431
|
vertical-align: top;
|
|
16544
16432
|
}
|
|
16433
|
+
.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,
|
|
16434
|
+
.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 {
|
|
16435
|
+
border-radius: 0;
|
|
16436
|
+
}
|
|
16437
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-first-item .ant-input-number,
|
|
16438
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-first-item .ant-input-number-group-addon {
|
|
16439
|
+
border-start-end-radius: 0;
|
|
16440
|
+
border-end-end-radius: 0;
|
|
16441
|
+
}
|
|
16442
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-last-item .ant-input-number,
|
|
16443
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-last-item .ant-input-number-group-addon {
|
|
16444
|
+
border-start-start-radius: 0;
|
|
16445
|
+
border-end-start-radius: 0;
|
|
16446
|
+
}
|
|
16447
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-last-item).ant-input-number-compact-item .ant-input-number-affix-wrapper {
|
|
16448
|
+
border-start-end-radius: 0;
|
|
16449
|
+
border-end-end-radius: 0;
|
|
16450
|
+
}
|
|
16451
|
+
.ant-input-number-group-wrapper:not(.ant-input-number-compact-first-item).ant-input-number-compact-item .ant-input-number-affix-wrapper {
|
|
16452
|
+
border-start-start-radius: 0;
|
|
16453
|
+
border-end-start-radius: 0;
|
|
16454
|
+
}
|
|
16545
16455
|
.ant-input-number-handler {
|
|
16546
16456
|
position: relative;
|
|
16547
16457
|
display: block;
|
|
@@ -16620,10 +16530,6 @@ textarea.ant-input-number {
|
|
|
16620
16530
|
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
16621
16531
|
display: block;
|
|
16622
16532
|
}
|
|
16623
|
-
.ant-input-number:hover {
|
|
16624
|
-
border-color: #165996;
|
|
16625
|
-
border-right-width: 1px;
|
|
16626
|
-
}
|
|
16627
16533
|
.ant-input-number:hover + .ant-form-item-children-icon {
|
|
16628
16534
|
opacity: 0;
|
|
16629
16535
|
transition: opacity 0.24s linear 0.24s;
|
|
@@ -17243,17 +17149,6 @@ textarea.ant-input-number {
|
|
|
17243
17149
|
direction: ltr;
|
|
17244
17150
|
text-align: right;
|
|
17245
17151
|
}
|
|
17246
|
-
.ant-input-number-affix-wrapper > nz-input-number.ant-input-number {
|
|
17247
|
-
width: 100%;
|
|
17248
|
-
border: none;
|
|
17249
|
-
outline: none;
|
|
17250
|
-
}
|
|
17251
|
-
.ant-input-number-affix-wrapper > nz-input-number.ant-input-number.ant-input-number-focused {
|
|
17252
|
-
box-shadow: none !important;
|
|
17253
|
-
}
|
|
17254
|
-
.ant-input-number.ant-input-number-has-feedback .ant-input-number-handler-wrap {
|
|
17255
|
-
z-index: 2;
|
|
17256
|
-
}
|
|
17257
17152
|
.ant-layout {
|
|
17258
17153
|
display: flex;
|
|
17259
17154
|
flex: auto;
|
|
@@ -17387,6 +17282,52 @@ nz-footer {
|
|
|
17387
17282
|
nz-header {
|
|
17388
17283
|
display: block;
|
|
17389
17284
|
}
|
|
17285
|
+
.ant-form-validate_animation-enter {
|
|
17286
|
+
animation: enter 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
17287
|
+
}
|
|
17288
|
+
.ant-form-validate_animation-leave {
|
|
17289
|
+
animation: leave 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
17290
|
+
}
|
|
17291
|
+
@keyframes enter {
|
|
17292
|
+
from {
|
|
17293
|
+
transform: translateY(-5px);
|
|
17294
|
+
opacity: 0;
|
|
17295
|
+
}
|
|
17296
|
+
to {
|
|
17297
|
+
transform: translateY(0);
|
|
17298
|
+
opacity: 1;
|
|
17299
|
+
}
|
|
17300
|
+
}
|
|
17301
|
+
@keyframes enter {
|
|
17302
|
+
from {
|
|
17303
|
+
transform: translateY(-5px);
|
|
17304
|
+
opacity: 0;
|
|
17305
|
+
}
|
|
17306
|
+
to {
|
|
17307
|
+
transform: translateY(0);
|
|
17308
|
+
opacity: 1;
|
|
17309
|
+
}
|
|
17310
|
+
}
|
|
17311
|
+
@keyframes leave {
|
|
17312
|
+
from {
|
|
17313
|
+
transform: translateY(0);
|
|
17314
|
+
opacity: 1;
|
|
17315
|
+
}
|
|
17316
|
+
to {
|
|
17317
|
+
transform: translateY(-5px);
|
|
17318
|
+
opacity: 0;
|
|
17319
|
+
}
|
|
17320
|
+
}
|
|
17321
|
+
@keyframes leave {
|
|
17322
|
+
from {
|
|
17323
|
+
transform: translateY(0);
|
|
17324
|
+
opacity: 1;
|
|
17325
|
+
}
|
|
17326
|
+
to {
|
|
17327
|
+
transform: translateY(-5px);
|
|
17328
|
+
opacity: 0;
|
|
17329
|
+
}
|
|
17330
|
+
}
|
|
17390
17331
|
.ant-form-item .ant-input-number + .ant-form-text {
|
|
17391
17332
|
margin-left: 8px;
|
|
17392
17333
|
}
|
|
@@ -17709,7 +17650,7 @@ nz-header {
|
|
|
17709
17650
|
font-size: 14px;
|
|
17710
17651
|
vertical-align: top;
|
|
17711
17652
|
}
|
|
17712
|
-
.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
|
|
17653
|
+
.ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional):not( .ant-form-item-required-mark-hidden)::before {
|
|
17713
17654
|
display: inline-block;
|
|
17714
17655
|
margin-right: 4px;
|
|
17715
17656
|
color: #a61d24;
|
|
@@ -17718,7 +17659,7 @@ nz-header {
|
|
|
17718
17659
|
line-height: 1;
|
|
17719
17660
|
content: '*';
|
|
17720
17661
|
}
|
|
17721
|
-
.ant-form-hide-required-mark .ant-form-item-label > label.ant-form-item-required:not(.ant-form-item-required-mark-optional)::before {
|
|
17662
|
+
.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 {
|
|
17722
17663
|
display: none;
|
|
17723
17664
|
}
|
|
17724
17665
|
.ant-form-item-label > label .ant-form-item-optional {
|
|
@@ -19365,67 +19306,66 @@ nz-list-item-extra {
|
|
|
19365
19306
|
border-color: #434343;
|
|
19366
19307
|
border-right-width: 1px;
|
|
19367
19308
|
}
|
|
19368
|
-
.ant-mentions
|
|
19369
|
-
.ant-mentions
|
|
19370
|
-
.ant-mentions
|
|
19371
|
-
.ant-mentions-borderless.ant-mentions-focused,
|
|
19372
|
-
.ant-mentions-borderless.ant-mentions-disabled,
|
|
19373
|
-
.ant-mentions-borderless.ant-mentions[disabled] {
|
|
19374
|
-
background-color: transparent
|
|
19375
|
-
border: none
|
|
19376
|
-
box-shadow: none
|
|
19309
|
+
.ant-mentions.ant-mentions-borderless,
|
|
19310
|
+
.ant-mentions.ant-mentions-borderless:hover,
|
|
19311
|
+
.ant-mentions.ant-mentions-borderless:focus,
|
|
19312
|
+
.ant-mentions.ant-mentions-borderless.ant-mentions-focused,
|
|
19313
|
+
.ant-mentions.ant-mentions-borderless.ant-mentions-disabled,
|
|
19314
|
+
.ant-mentions.ant-mentions-borderless.ant-mentions[disabled] {
|
|
19315
|
+
background-color: transparent;
|
|
19316
|
+
border: none;
|
|
19317
|
+
box-shadow: none;
|
|
19377
19318
|
}
|
|
19378
|
-
.ant-mentions-filled {
|
|
19379
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
19319
|
+
.ant-mentions.ant-mentions-filled {
|
|
19320
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
19380
19321
|
border-color: transparent;
|
|
19381
|
-
box-shadow: none
|
|
19322
|
+
box-shadow: none;
|
|
19382
19323
|
}
|
|
19383
|
-
.ant-mentions
|
|
19384
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
19385
|
-
border-color: transparent !important;
|
|
19324
|
+
.ant-mentions.ant-mentions-filled:hover {
|
|
19325
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
19386
19326
|
}
|
|
19387
|
-
.ant-mentions-filled:focus,
|
|
19388
|
-
.ant-mentions-filled.ant-mentions-focused {
|
|
19327
|
+
.ant-mentions.ant-mentions-filled:focus,
|
|
19328
|
+
.ant-mentions.ant-mentions-filled.ant-mentions-focused {
|
|
19389
19329
|
border-color: #177ddc;
|
|
19390
19330
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
19391
19331
|
border-right-width: 1px;
|
|
19392
19332
|
outline: 0;
|
|
19393
|
-
background-color: transparent
|
|
19394
|
-
box-shadow: none
|
|
19333
|
+
background-color: transparent;
|
|
19334
|
+
box-shadow: none;
|
|
19395
19335
|
}
|
|
19396
|
-
.ant-input-rtl .ant-mentions-filled:focus,
|
|
19397
|
-
.ant-input-rtl .ant-mentions-filled.ant-mentions-focused {
|
|
19336
|
+
.ant-input-rtl .ant-mentions.ant-mentions-filled:focus,
|
|
19337
|
+
.ant-input-rtl .ant-mentions.ant-mentions-filled.ant-mentions-focused {
|
|
19398
19338
|
border-right-width: 0;
|
|
19399
19339
|
border-left-width: 1px !important;
|
|
19400
19340
|
}
|
|
19401
|
-
.ant-mentions-filled.ant-mentions-disabled,
|
|
19402
|
-
.ant-mentions-filled.ant-mentions[disabled] {
|
|
19403
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
19404
|
-
border-color: #434343
|
|
19405
|
-
box-shadow: none
|
|
19406
|
-
cursor: not-allowed
|
|
19407
|
-
opacity: 1
|
|
19408
|
-
pointer-events: none
|
|
19409
|
-
color: rgba(255, 255, 255, 0.3)
|
|
19341
|
+
.ant-mentions.ant-mentions-filled.ant-mentions-disabled,
|
|
19342
|
+
.ant-mentions.ant-mentions-filled.ant-mentions[disabled] {
|
|
19343
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
19344
|
+
border-color: #434343;
|
|
19345
|
+
box-shadow: none;
|
|
19346
|
+
cursor: not-allowed;
|
|
19347
|
+
opacity: 1;
|
|
19348
|
+
pointer-events: none;
|
|
19349
|
+
color: rgba(255, 255, 255, 0.3);
|
|
19410
19350
|
}
|
|
19411
|
-
.ant-mentions-filled.ant-mentions-disabled:hover,
|
|
19412
|
-
.ant-mentions-filled.ant-mentions[disabled]:hover {
|
|
19413
|
-
border-color: #434343
|
|
19414
|
-
border-right-width: 1px
|
|
19415
|
-
}
|
|
19416
|
-
.ant-mentions-underlined.ant-mentions,
|
|
19417
|
-
.ant-mentions-underlined:hover,
|
|
19418
|
-
.ant-mentions-underlined:focus,
|
|
19419
|
-
.ant-mentions-underlined.ant-mentions-focused,
|
|
19420
|
-
.ant-mentions-underlined.ant-mentions-disabled,
|
|
19421
|
-
.ant-mentions-underlined.ant-mentions[disabled] {
|
|
19422
|
-
background-color: transparent !important;
|
|
19423
|
-
border-width: 0 0 1px !important;
|
|
19424
|
-
border-radius: 0 !important;
|
|
19425
|
-
box-shadow: none !important;
|
|
19351
|
+
.ant-mentions.ant-mentions-filled.ant-mentions-disabled:hover,
|
|
19352
|
+
.ant-mentions.ant-mentions-filled.ant-mentions[disabled]:hover {
|
|
19353
|
+
border-color: #434343;
|
|
19354
|
+
border-right-width: 1px;
|
|
19426
19355
|
}
|
|
19427
|
-
.ant-mentions
|
|
19428
|
-
|
|
19356
|
+
.ant-mentions.ant-mentions-underlined,
|
|
19357
|
+
.ant-mentions.ant-mentions-underlined:hover,
|
|
19358
|
+
.ant-mentions.ant-mentions-underlined:focus,
|
|
19359
|
+
.ant-mentions.ant-mentions-underlined.ant-mentions-focused,
|
|
19360
|
+
.ant-mentions.ant-mentions-underlined.ant-mentions-disabled,
|
|
19361
|
+
.ant-mentions.ant-mentions-underlined.ant-mentions[disabled] {
|
|
19362
|
+
background-color: transparent;
|
|
19363
|
+
border-width: 0 0 1px;
|
|
19364
|
+
border-radius: 0;
|
|
19365
|
+
box-shadow: none;
|
|
19366
|
+
}
|
|
19367
|
+
.ant-mentions.ant-mentions-underlined:hover:not(.ant-mentions-focused):not(:focus) {
|
|
19368
|
+
border-color: #434343;
|
|
19429
19369
|
}
|
|
19430
19370
|
textarea.ant-mentions {
|
|
19431
19371
|
max-width: 100%;
|
|
@@ -20838,6 +20778,16 @@ nz-page-header-footer {
|
|
|
20838
20778
|
line-height: 1.5715;
|
|
20839
20779
|
list-style: none;
|
|
20840
20780
|
font-feature-settings: 'tnum';
|
|
20781
|
+
display: flex;
|
|
20782
|
+
}
|
|
20783
|
+
.ant-pagination-start {
|
|
20784
|
+
justify-content: start;
|
|
20785
|
+
}
|
|
20786
|
+
.ant-pagination-center {
|
|
20787
|
+
justify-content: center;
|
|
20788
|
+
}
|
|
20789
|
+
.ant-pagination-end {
|
|
20790
|
+
justify-content: end;
|
|
20841
20791
|
}
|
|
20842
20792
|
.ant-pagination ul,
|
|
20843
20793
|
.ant-pagination ol {
|
|
@@ -21159,67 +21109,66 @@ nz-page-header-footer {
|
|
|
21159
21109
|
border-color: #434343;
|
|
21160
21110
|
border-right-width: 1px;
|
|
21161
21111
|
}
|
|
21162
|
-
.ant-pagination-options-quick-jumper input
|
|
21163
|
-
.ant-pagination-options-quick-jumper input
|
|
21164
|
-
.ant-pagination-options-quick-jumper input
|
|
21165
|
-
.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-focused,
|
|
21166
|
-
.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-disabled,
|
|
21167
|
-
.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input[disabled] {
|
|
21168
|
-
background-color: transparent
|
|
21169
|
-
border: none
|
|
21170
|
-
box-shadow: none
|
|
21112
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless,
|
|
21113
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless:hover,
|
|
21114
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless:focus,
|
|
21115
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-focused,
|
|
21116
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input-disabled,
|
|
21117
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-borderless.ant-pagination-options-quick-jumper input[disabled] {
|
|
21118
|
+
background-color: transparent;
|
|
21119
|
+
border: none;
|
|
21120
|
+
box-shadow: none;
|
|
21171
21121
|
}
|
|
21172
|
-
.ant-pagination-options-quick-jumper input-filled {
|
|
21173
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
21122
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled {
|
|
21123
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
21174
21124
|
border-color: transparent;
|
|
21175
|
-
box-shadow: none
|
|
21125
|
+
box-shadow: none;
|
|
21176
21126
|
}
|
|
21177
|
-
.ant-pagination-options-quick-jumper input
|
|
21178
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
21179
|
-
border-color: transparent !important;
|
|
21127
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:hover {
|
|
21128
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
21180
21129
|
}
|
|
21181
|
-
.ant-pagination-options-quick-jumper input-filled:focus,
|
|
21182
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
21130
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:focus,
|
|
21131
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
21183
21132
|
border-color: #177ddc;
|
|
21184
21133
|
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
21185
21134
|
border-right-width: 1px;
|
|
21186
21135
|
outline: 0;
|
|
21187
|
-
background-color: transparent
|
|
21188
|
-
box-shadow: none
|
|
21136
|
+
background-color: transparent;
|
|
21137
|
+
box-shadow: none;
|
|
21189
21138
|
}
|
|
21190
|
-
.ant-input-rtl .ant-pagination-options-quick-jumper input-filled:focus,
|
|
21191
|
-
.ant-input-rtl .ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
21139
|
+
.ant-input-rtl .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled:focus,
|
|
21140
|
+
.ant-input-rtl .ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-focused {
|
|
21192
21141
|
border-right-width: 0;
|
|
21193
21142
|
border-left-width: 1px !important;
|
|
21194
21143
|
}
|
|
21195
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled,
|
|
21196
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled] {
|
|
21197
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
21198
|
-
border-color: #434343
|
|
21199
|
-
box-shadow: none
|
|
21200
|
-
cursor: not-allowed
|
|
21201
|
-
opacity: 1
|
|
21202
|
-
pointer-events: none
|
|
21203
|
-
color: rgba(255, 255, 255, 0.3)
|
|
21144
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled,
|
|
21145
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled] {
|
|
21146
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
21147
|
+
border-color: #434343;
|
|
21148
|
+
box-shadow: none;
|
|
21149
|
+
cursor: not-allowed;
|
|
21150
|
+
opacity: 1;
|
|
21151
|
+
pointer-events: none;
|
|
21152
|
+
color: rgba(255, 255, 255, 0.3);
|
|
21204
21153
|
}
|
|
21205
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled:hover,
|
|
21206
|
-
.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled]:hover {
|
|
21207
|
-
border-color: #434343
|
|
21208
|
-
border-right-width: 1px
|
|
21209
|
-
}
|
|
21210
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input,
|
|
21211
|
-
.ant-pagination-options-quick-jumper input-underlined:hover,
|
|
21212
|
-
.ant-pagination-options-quick-jumper input-underlined:focus,
|
|
21213
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-focused,
|
|
21214
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-disabled,
|
|
21215
|
-
.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input[disabled] {
|
|
21216
|
-
background-color: transparent !important;
|
|
21217
|
-
border-width: 0 0 1px !important;
|
|
21218
|
-
border-radius: 0 !important;
|
|
21219
|
-
box-shadow: none !important;
|
|
21154
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input-disabled:hover,
|
|
21155
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-filled.ant-pagination-options-quick-jumper input[disabled]:hover {
|
|
21156
|
+
border-color: #434343;
|
|
21157
|
+
border-right-width: 1px;
|
|
21220
21158
|
}
|
|
21221
|
-
.ant-pagination-options-quick-jumper input
|
|
21222
|
-
|
|
21159
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined,
|
|
21160
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:hover,
|
|
21161
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:focus,
|
|
21162
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-focused,
|
|
21163
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input-disabled,
|
|
21164
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined.ant-pagination-options-quick-jumper input[disabled] {
|
|
21165
|
+
background-color: transparent;
|
|
21166
|
+
border-width: 0 0 1px;
|
|
21167
|
+
border-radius: 0;
|
|
21168
|
+
box-shadow: none;
|
|
21169
|
+
}
|
|
21170
|
+
.ant-pagination-options-quick-jumper input.ant-pagination-options-quick-jumper input-underlined:hover:not(.ant-pagination-options-quick-jumper input-focused):not(:focus) {
|
|
21171
|
+
border-color: #434343;
|
|
21223
21172
|
}
|
|
21224
21173
|
textarea.ant-pagination-options-quick-jumper input {
|
|
21225
21174
|
max-width: 100%;
|
|
@@ -22574,7 +22523,7 @@ span.ant-radio + * {
|
|
|
22574
22523
|
}
|
|
22575
22524
|
.ant-select-single.ant-select-sm {
|
|
22576
22525
|
height: 24px;
|
|
22577
|
-
font-size:
|
|
22526
|
+
font-size: 14px;
|
|
22578
22527
|
}
|
|
22579
22528
|
.ant-select-single.ant-select-sm .ant-select-selector {
|
|
22580
22529
|
display: flex;
|
|
@@ -22616,7 +22565,7 @@ span.ant-radio + * {
|
|
|
22616
22565
|
.ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-item,
|
|
22617
22566
|
.ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-search,
|
|
22618
22567
|
.ant-select-single.ant-select-sm.ant-select-show-arrow .ant-select-selection-placeholder {
|
|
22619
|
-
padding-inline-end:
|
|
22568
|
+
padding-inline-end: 18px;
|
|
22620
22569
|
}
|
|
22621
22570
|
.ant-select-single.ant-select-sm.ant-select-open .ant-select-selection-item {
|
|
22622
22571
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -23381,16 +23330,6 @@ span.ant-radio + * {
|
|
|
23381
23330
|
.ant-select-show-search.ant-select:not(.ant-select-customize-input) .ant-select-selector input {
|
|
23382
23331
|
cursor: auto;
|
|
23383
23332
|
}
|
|
23384
|
-
.ant-select-focused:not(.ant-select-disabled) .ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
23385
|
-
border-color: #177ddc;
|
|
23386
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
23387
|
-
border-right-width: 1px;
|
|
23388
|
-
outline: 0;
|
|
23389
|
-
}
|
|
23390
|
-
.ant-input-rtl .ant-select-focused:not(.ant-select-disabled) .ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
23391
|
-
border-right-width: 0;
|
|
23392
|
-
border-left-width: 1px !important;
|
|
23393
|
-
}
|
|
23394
23333
|
.ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
23395
23334
|
color: rgba(255, 255, 255, 0.3);
|
|
23396
23335
|
background: rgba(255, 255, 255, 0.08);
|
|
@@ -23423,6 +23362,16 @@ span.ant-radio + * {
|
|
|
23423
23362
|
border-right-width: 0;
|
|
23424
23363
|
border-left-width: 1px !important;
|
|
23425
23364
|
}
|
|
23365
|
+
.ant-select:not(.ant-select-disabled).ant-select-focused .ant-select-selector {
|
|
23366
|
+
border-color: #177ddc;
|
|
23367
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
23368
|
+
border-right-width: 1px;
|
|
23369
|
+
outline: 0;
|
|
23370
|
+
}
|
|
23371
|
+
.ant-input-rtl .ant-select:not(.ant-select-disabled).ant-select-focused .ant-select-selector {
|
|
23372
|
+
border-right-width: 0;
|
|
23373
|
+
border-left-width: 1px !important;
|
|
23374
|
+
}
|
|
23426
23375
|
.ant-select-selection-item {
|
|
23427
23376
|
flex: 1;
|
|
23428
23377
|
overflow: hidden;
|
|
@@ -23653,60 +23602,68 @@ span.ant-radio + * {
|
|
|
23653
23602
|
.ant-select-lg {
|
|
23654
23603
|
font-size: 16px;
|
|
23655
23604
|
}
|
|
23656
|
-
.ant-select-borderless .ant-select-selector
|
|
23657
|
-
|
|
23658
|
-
|
|
23659
|
-
|
|
23605
|
+
.ant-select.ant-select-borderless .ant-select-selector,
|
|
23606
|
+
.ant-select.ant-select-borderless:hover .ant-select-selector,
|
|
23607
|
+
.ant-select.ant-select-borderless:focus .ant-select-selector,
|
|
23608
|
+
.ant-select.ant-select-borderless.ant-select-focused .ant-select-selector,
|
|
23609
|
+
.ant-select.ant-select-borderless.ant-select-disabled .ant-select-selector,
|
|
23610
|
+
.ant-select.ant-select-borderless.ant-select[disabled] .ant-select-selector {
|
|
23611
|
+
background-color: transparent;
|
|
23612
|
+
border-color: transparent;
|
|
23613
|
+
box-shadow: none;
|
|
23660
23614
|
}
|
|
23661
|
-
.ant-select-filled .ant-select-selector {
|
|
23662
|
-
background-color: rgba(255, 255, 255, 0.04)
|
|
23663
|
-
border-color: transparent
|
|
23664
|
-
box-shadow: none
|
|
23615
|
+
.ant-select.ant-select-filled .ant-select-selector {
|
|
23616
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
23617
|
+
border-color: transparent;
|
|
23618
|
+
box-shadow: none;
|
|
23665
23619
|
}
|
|
23666
|
-
.ant-select-filled:hover .ant-select-selector {
|
|
23667
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
23668
|
-
border-color: transparent
|
|
23669
|
-
box-shadow: none
|
|
23620
|
+
.ant-select.ant-select-filled:hover .ant-select-selector {
|
|
23621
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
23622
|
+
border-color: transparent;
|
|
23623
|
+
box-shadow: none;
|
|
23670
23624
|
}
|
|
23671
|
-
.ant-select-filled:focus .ant-select-selector,
|
|
23672
|
-
.ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23673
|
-
border-color: #177ddc
|
|
23674
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2)
|
|
23675
|
-
border-right-width: 1px
|
|
23676
|
-
outline: 0
|
|
23677
|
-
background-color: transparent
|
|
23678
|
-
box-shadow: none
|
|
23625
|
+
.ant-select.ant-select-filled:focus .ant-select-selector,
|
|
23626
|
+
.ant-select.ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23627
|
+
border-color: #177ddc;
|
|
23628
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
23629
|
+
border-right-width: 1px;
|
|
23630
|
+
outline: 0;
|
|
23631
|
+
background-color: transparent;
|
|
23632
|
+
box-shadow: none;
|
|
23679
23633
|
}
|
|
23680
|
-
.ant-input-rtl .ant-select-filled:focus .ant-select-selector,
|
|
23681
|
-
.ant-input-rtl .ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23682
|
-
border-right-width: 0
|
|
23634
|
+
.ant-input-rtl .ant-select.ant-select-filled:focus .ant-select-selector,
|
|
23635
|
+
.ant-input-rtl .ant-select.ant-select-filled.ant-select-focused .ant-select-selector {
|
|
23636
|
+
border-right-width: 0;
|
|
23683
23637
|
border-left-width: 1px !important;
|
|
23684
23638
|
}
|
|
23685
|
-
.ant-select-filled.ant-select-disabled .ant-select-selector,
|
|
23686
|
-
.ant-select-filled.ant-select[disabled] .ant-select-selector {
|
|
23687
|
-
background-color: rgba(255, 255, 255, 0.08)
|
|
23688
|
-
border-color: #434343
|
|
23689
|
-
box-shadow: none
|
|
23690
|
-
cursor: not-allowed
|
|
23691
|
-
opacity: 1
|
|
23692
|
-
pointer-events: none
|
|
23693
|
-
color: rgba(255, 255, 255, 0.3)
|
|
23639
|
+
.ant-select.ant-select-filled.ant-select-disabled .ant-select-selector,
|
|
23640
|
+
.ant-select.ant-select-filled.ant-select[disabled] .ant-select-selector {
|
|
23641
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
23642
|
+
border-color: #434343;
|
|
23643
|
+
box-shadow: none;
|
|
23644
|
+
cursor: not-allowed;
|
|
23645
|
+
opacity: 1;
|
|
23646
|
+
pointer-events: none;
|
|
23647
|
+
color: rgba(255, 255, 255, 0.3);
|
|
23694
23648
|
}
|
|
23695
|
-
.ant-select-filled.ant-select-disabled .ant-select-selector:hover,
|
|
23696
|
-
.ant-select-filled.ant-select[disabled] .ant-select-selector:hover {
|
|
23697
|
-
border-color: #434343
|
|
23698
|
-
border-right-width: 1px
|
|
23699
|
-
}
|
|
23700
|
-
.ant-select-underlined .ant-select-selector,
|
|
23701
|
-
.ant-select-underlined:hover .ant-select-selector,
|
|
23702
|
-
.ant-select-underlined:focus .ant-select-selector,
|
|
23703
|
-
.ant-select-underlined.ant-select-focused .ant-select-selector,
|
|
23704
|
-
.ant-select-underlined.ant-select-disabled .ant-select-selector,
|
|
23705
|
-
.ant-select-underlined.ant-select[disabled] .ant-select-selector {
|
|
23706
|
-
background-color: transparent
|
|
23707
|
-
border-width: 0 0 1px
|
|
23708
|
-
border-radius: 0
|
|
23709
|
-
box-shadow: none
|
|
23649
|
+
.ant-select.ant-select-filled.ant-select-disabled .ant-select-selector:hover,
|
|
23650
|
+
.ant-select.ant-select-filled.ant-select[disabled] .ant-select-selector:hover {
|
|
23651
|
+
border-color: #434343;
|
|
23652
|
+
border-right-width: 1px;
|
|
23653
|
+
}
|
|
23654
|
+
.ant-select.ant-select-underlined .ant-select-selector,
|
|
23655
|
+
.ant-select.ant-select-underlined:hover .ant-select-selector,
|
|
23656
|
+
.ant-select.ant-select-underlined:focus .ant-select-selector,
|
|
23657
|
+
.ant-select.ant-select-underlined.ant-select-focused .ant-select-selector,
|
|
23658
|
+
.ant-select.ant-select-underlined.ant-select-disabled .ant-select-selector,
|
|
23659
|
+
.ant-select.ant-select-underlined.ant-select[disabled] .ant-select-selector {
|
|
23660
|
+
background-color: transparent;
|
|
23661
|
+
border-width: 0 0 1px;
|
|
23662
|
+
border-radius: 0;
|
|
23663
|
+
box-shadow: none;
|
|
23664
|
+
}
|
|
23665
|
+
.ant-select.ant-select-underlined:hover:not(.ant-select-focused):not(:focus) .ant-select-selector {
|
|
23666
|
+
border-color: #434343;
|
|
23710
23667
|
}
|
|
23711
23668
|
.ant-select.ant-select-in-form-item {
|
|
23712
23669
|
width: 100%;
|
|
@@ -30749,9 +30706,6 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
30749
30706
|
.font-highlight {
|
|
30750
30707
|
color: #a61d24;
|
|
30751
30708
|
}
|
|
30752
|
-
.ant-tree-child-tree {
|
|
30753
|
-
overflow: hidden;
|
|
30754
|
-
}
|
|
30755
30709
|
nz-tree {
|
|
30756
30710
|
display: block;
|
|
30757
30711
|
}
|
|
@@ -31772,6 +31726,18 @@ nz-space-item {
|
|
|
31772
31726
|
overflow: hidden;
|
|
31773
31727
|
outline: none;
|
|
31774
31728
|
}
|
|
31729
|
+
.ant-image-preview-fade-motion-enter {
|
|
31730
|
+
animation-name: antFadeIn;
|
|
31731
|
+
animation-duration: 0.2s;
|
|
31732
|
+
animation-timing-function: linear;
|
|
31733
|
+
animation-fill-mode: both;
|
|
31734
|
+
}
|
|
31735
|
+
.ant-image-preview-fade-motion-leave {
|
|
31736
|
+
animation-name: antFadeOut;
|
|
31737
|
+
animation-duration: 0.2s;
|
|
31738
|
+
animation-timing-function: linear;
|
|
31739
|
+
animation-fill-mode: both;
|
|
31740
|
+
}
|
|
31775
31741
|
.cdk-overlay-backdrop.ant-image-preview-mask {
|
|
31776
31742
|
opacity: 1;
|
|
31777
31743
|
}
|
|
@@ -31907,26 +31873,16 @@ nz-space-item {
|
|
|
31907
31873
|
.ant-qrcode-expired {
|
|
31908
31874
|
color: rgba(0, 0, 0, 0.85);
|
|
31909
31875
|
}
|
|
31910
|
-
.ant-
|
|
31911
|
-
position: relative;
|
|
31912
|
-
display: block;
|
|
31913
|
-
}
|
|
31914
|
-
.ant-color-picker {
|
|
31915
|
-
position: absolute;
|
|
31916
|
-
z-index: 1;
|
|
31876
|
+
.ant-color-picker-inner {
|
|
31917
31877
|
display: block;
|
|
31918
|
-
width: max-content;
|
|
31919
|
-
min-width: 250px;
|
|
31920
|
-
visibility: visible;
|
|
31921
31878
|
}
|
|
31922
|
-
.ant-color-picker-
|
|
31923
|
-
display: none;
|
|
31924
|
-
}
|
|
31925
|
-
.ant-color-picker-panel {
|
|
31879
|
+
.ant-color-picker-inner-content {
|
|
31926
31880
|
display: flex;
|
|
31927
31881
|
flex-direction: column;
|
|
31928
|
-
width:
|
|
31929
|
-
|
|
31882
|
+
width: 234px;
|
|
31883
|
+
}
|
|
31884
|
+
.ant-color-picker-panel {
|
|
31885
|
+
user-select: none;
|
|
31930
31886
|
}
|
|
31931
31887
|
.ant-color-picker-panel-disabled {
|
|
31932
31888
|
cursor: not-allowed;
|
|
@@ -31937,8 +31893,10 @@ nz-space-item {
|
|
|
31937
31893
|
}
|
|
31938
31894
|
.ant-color-picker-palette {
|
|
31939
31895
|
position: relative;
|
|
31896
|
+
display: block;
|
|
31940
31897
|
}
|
|
31941
31898
|
.ant-color-picker-select {
|
|
31899
|
+
display: block;
|
|
31942
31900
|
margin-bottom: 12px;
|
|
31943
31901
|
}
|
|
31944
31902
|
.ant-color-picker-select .ant-color-picker-palette {
|
|
@@ -31963,6 +31921,7 @@ nz-space-item {
|
|
|
31963
31921
|
z-index: 1;
|
|
31964
31922
|
}
|
|
31965
31923
|
.ant-color-picker-handler {
|
|
31924
|
+
display: block;
|
|
31966
31925
|
box-sizing: border-box;
|
|
31967
31926
|
width: 16px;
|
|
31968
31927
|
height: 16px;
|
|
@@ -31974,7 +31933,7 @@ nz-space-item {
|
|
|
31974
31933
|
height: 12px;
|
|
31975
31934
|
}
|
|
31976
31935
|
.ant-color-picker-slider {
|
|
31977
|
-
|
|
31936
|
+
display: block;
|
|
31978
31937
|
border-radius: 2px;
|
|
31979
31938
|
}
|
|
31980
31939
|
.ant-color-picker-slider .ant-color-picker-palette {
|
|
@@ -32022,10 +31981,10 @@ nz-space-item {
|
|
|
32022
31981
|
}
|
|
32023
31982
|
.ant-color-picker-color-block {
|
|
32024
31983
|
position: relative;
|
|
32025
|
-
|
|
32026
|
-
|
|
31984
|
+
display: block;
|
|
31985
|
+
width: 24px;
|
|
31986
|
+
height: 24px;
|
|
32027
31987
|
overflow: hidden;
|
|
32028
|
-
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);
|
|
32029
31988
|
background-size: 50% 50%;
|
|
32030
31989
|
border-radius: 2px;
|
|
32031
31990
|
}
|
|
@@ -32085,6 +32044,7 @@ nz-space-item {
|
|
|
32085
32044
|
}
|
|
32086
32045
|
.ant-color-picker-input-container {
|
|
32087
32046
|
display: flex;
|
|
32047
|
+
margin-bottom: 12px;
|
|
32088
32048
|
}
|
|
32089
32049
|
.ant-color-picker-input-container .ant-select {
|
|
32090
32050
|
font-size: 12px;
|
|
@@ -32156,6 +32116,47 @@ nz-space-item {
|
|
|
32156
32116
|
width: 16px;
|
|
32157
32117
|
height: 16px;
|
|
32158
32118
|
}
|
|
32119
|
+
.ant-color-picker-presets-wrapper {
|
|
32120
|
+
max-height: 200px;
|
|
32121
|
+
overflow-y: auto;
|
|
32122
|
+
}
|
|
32123
|
+
.ant-color-picker-presets-wrapper .ant-collapse {
|
|
32124
|
+
display: flex;
|
|
32125
|
+
flex-direction: column;
|
|
32126
|
+
gap: 4px;
|
|
32127
|
+
}
|
|
32128
|
+
.ant-color-picker-presets-wrapper .ant-collapse .ant-collapse-header {
|
|
32129
|
+
padding: 0 !important;
|
|
32130
|
+
font-size: 12px;
|
|
32131
|
+
}
|
|
32132
|
+
.ant-color-picker-presets-items {
|
|
32133
|
+
display: flex;
|
|
32134
|
+
flex-wrap: wrap;
|
|
32135
|
+
gap: 8px;
|
|
32136
|
+
padding: 8px 0;
|
|
32137
|
+
}
|
|
32138
|
+
.ant-color-picker-presets-color {
|
|
32139
|
+
position: relative;
|
|
32140
|
+
}
|
|
32141
|
+
.ant-color-picker-presets-color-checked::after {
|
|
32142
|
+
position: absolute;
|
|
32143
|
+
top: 50%;
|
|
32144
|
+
display: table;
|
|
32145
|
+
box-sizing: border-box;
|
|
32146
|
+
width: calc(120px / 13);
|
|
32147
|
+
height: calc(192px / 13);
|
|
32148
|
+
border: 2px solid #fff;
|
|
32149
|
+
border-top: 0;
|
|
32150
|
+
transform: translate(-50%, -60%) rotate(45deg);
|
|
32151
|
+
content: '';
|
|
32152
|
+
pointer-events: none;
|
|
32153
|
+
border-inline-start: 0;
|
|
32154
|
+
inset-inline-start: 46.5%;
|
|
32155
|
+
}
|
|
32156
|
+
.ant-color-picker-presets-color-bright.ant-color-picker-presets-color-checked::after,
|
|
32157
|
+
.ant-color-picker-presets-color-checked.ant-color-picker-presets-color-bright::after {
|
|
32158
|
+
border-color: rgba(0, 0, 0, 0.88);
|
|
32159
|
+
}
|
|
32159
32160
|
.ant-hash-code {
|
|
32160
32161
|
display: flex;
|
|
32161
32162
|
flex-direction: column;
|
|
@@ -32282,21 +32283,17 @@ nz-space-item {
|
|
|
32282
32283
|
}
|
|
32283
32284
|
.ant-float-btn {
|
|
32284
32285
|
position: fixed;
|
|
32286
|
+
bottom: 48px;
|
|
32285
32287
|
z-index: 99;
|
|
32286
32288
|
display: block;
|
|
32287
32289
|
align-items: center;
|
|
32288
32290
|
justify-content: center;
|
|
32289
32291
|
width: 40px;
|
|
32290
32292
|
height: 40px;
|
|
32291
|
-
overflow: hidden;
|
|
32292
32293
|
border: none;
|
|
32293
32294
|
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.48), 0 6px 16px 0 rgba(0, 0, 0, 0.32), 0 9px 28px 8px rgba(0, 0, 0, 0.2);
|
|
32294
32295
|
cursor: pointer;
|
|
32295
32296
|
inset-inline-end: 24px;
|
|
32296
|
-
inset-block-end: 48px;
|
|
32297
|
-
}
|
|
32298
|
-
.ant-float-btn-hidden {
|
|
32299
|
-
display: none;
|
|
32300
32297
|
}
|
|
32301
32298
|
.ant-float-btn-pure {
|
|
32302
32299
|
position: relative;
|
|
@@ -32305,6 +32302,16 @@ nz-space-item {
|
|
|
32305
32302
|
.ant-float-btn:empty {
|
|
32306
32303
|
display: none;
|
|
32307
32304
|
}
|
|
32305
|
+
.ant-float-btn .ant-badge {
|
|
32306
|
+
width: 100%;
|
|
32307
|
+
height: 100%;
|
|
32308
|
+
}
|
|
32309
|
+
.ant-float-btn .ant-badge .ant-badge-count {
|
|
32310
|
+
top: -6px;
|
|
32311
|
+
transform: translate(0, 0);
|
|
32312
|
+
transform-origin: center;
|
|
32313
|
+
inset-inline-end: -6px;
|
|
32314
|
+
}
|
|
32308
32315
|
.ant-float-btn-body {
|
|
32309
32316
|
display: flex;
|
|
32310
32317
|
align-items: center;
|
|
@@ -32319,7 +32326,7 @@ nz-space-item {
|
|
|
32319
32326
|
align-items: center;
|
|
32320
32327
|
justify-content: center;
|
|
32321
32328
|
min-height: 40px;
|
|
32322
|
-
padding:
|
|
32329
|
+
padding: 4px / 2 4px;
|
|
32323
32330
|
overflow: hidden;
|
|
32324
32331
|
text-align: center;
|
|
32325
32332
|
}
|
|
@@ -32346,6 +32353,11 @@ nz-space-item {
|
|
|
32346
32353
|
height: 40px;
|
|
32347
32354
|
border-radius: 50%;
|
|
32348
32355
|
}
|
|
32356
|
+
.ant-float-btn-circle .ant-badge .ant-badge-dot {
|
|
32357
|
+
top: 5.6px;
|
|
32358
|
+
inset-inline-end: 5.6px;
|
|
32359
|
+
}
|
|
32360
|
+
.ant-float-btn-circle .ant-float-btn-inner,
|
|
32349
32361
|
.ant-float-btn-circle .ant-float-btn-body {
|
|
32350
32362
|
border-radius: 50%;
|
|
32351
32363
|
}
|
|
@@ -32354,6 +32366,10 @@ nz-space-item {
|
|
|
32354
32366
|
min-height: 40px;
|
|
32355
32367
|
border-radius: 2px;
|
|
32356
32368
|
}
|
|
32369
|
+
.ant-float-btn-square .ant-badge .ant-badge-dot {
|
|
32370
|
+
top: 1px;
|
|
32371
|
+
inset-inline-end: 1px;
|
|
32372
|
+
}
|
|
32357
32373
|
.ant-float-btn-square .ant-float-btn-body {
|
|
32358
32374
|
height: auto;
|
|
32359
32375
|
border-radius: 2px;
|
|
@@ -32499,6 +32515,10 @@ nz-space-item {
|
|
|
32499
32515
|
.ant-float-btn-group-square .ant-float-btn-square:not(:last-child) {
|
|
32500
32516
|
border-bottom: 1px solid #434343;
|
|
32501
32517
|
}
|
|
32518
|
+
.ant-float-btn-group-square .ant-float-btn-square .ant-badge .ant-badge-count {
|
|
32519
|
+
top: -10px;
|
|
32520
|
+
inset-inline-end: -10px;
|
|
32521
|
+
}
|
|
32502
32522
|
.ant-float-btn-group-square .ant-float-btn-group-wrap {
|
|
32503
32523
|
border-radius: 2px;
|
|
32504
32524
|
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.48), 0 6px 16px 0 rgba(0, 0, 0, 0.32), 0 9px 28px 8px rgba(0, 0, 0, 0.2);
|
|
@@ -32555,6 +32575,203 @@ nz-space-item {
|
|
|
32555
32575
|
width: 32px;
|
|
32556
32576
|
height: 32px;
|
|
32557
32577
|
}
|
|
32578
|
+
/* stylelint-disable less/no-duplicate-variables */
|
|
32579
|
+
.ant-float-btn-enter-top {
|
|
32580
|
+
animation: enter-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32581
|
+
}
|
|
32582
|
+
.ant-float-btn-leave-top {
|
|
32583
|
+
animation: leave-top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32584
|
+
}
|
|
32585
|
+
.ant-float-btn-enter-bottom {
|
|
32586
|
+
animation: enter-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32587
|
+
}
|
|
32588
|
+
.ant-float-btn-leave-bottom {
|
|
32589
|
+
animation: leave-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32590
|
+
}
|
|
32591
|
+
.ant-float-btn-enter-left {
|
|
32592
|
+
animation: enter-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32593
|
+
}
|
|
32594
|
+
.ant-float-btn-leave-left {
|
|
32595
|
+
animation: leave-left 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32596
|
+
}
|
|
32597
|
+
.ant-float-btn-enter-right {
|
|
32598
|
+
animation: enter-right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32599
|
+
}
|
|
32600
|
+
.ant-float-btn-leave-right {
|
|
32601
|
+
animation: leave-right 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
32602
|
+
}
|
|
32603
|
+
@keyframes enter-top {
|
|
32604
|
+
from {
|
|
32605
|
+
transform: translateY(40px);
|
|
32606
|
+
opacity: 0;
|
|
32607
|
+
}
|
|
32608
|
+
to {
|
|
32609
|
+
transform: translateY(0);
|
|
32610
|
+
opacity: 1;
|
|
32611
|
+
}
|
|
32612
|
+
}
|
|
32613
|
+
@keyframes enter-top {
|
|
32614
|
+
from {
|
|
32615
|
+
transform: translateY(40px);
|
|
32616
|
+
opacity: 0;
|
|
32617
|
+
}
|
|
32618
|
+
to {
|
|
32619
|
+
transform: translateY(0);
|
|
32620
|
+
opacity: 1;
|
|
32621
|
+
}
|
|
32622
|
+
}
|
|
32623
|
+
@keyframes leave-top {
|
|
32624
|
+
from {
|
|
32625
|
+
transform: translateY(0);
|
|
32626
|
+
opacity: 1;
|
|
32627
|
+
}
|
|
32628
|
+
to {
|
|
32629
|
+
transform: translateY(40px);
|
|
32630
|
+
opacity: 0;
|
|
32631
|
+
}
|
|
32632
|
+
}
|
|
32633
|
+
@keyframes leave-top {
|
|
32634
|
+
from {
|
|
32635
|
+
transform: translateY(0);
|
|
32636
|
+
opacity: 1;
|
|
32637
|
+
}
|
|
32638
|
+
to {
|
|
32639
|
+
transform: translateY(40px);
|
|
32640
|
+
opacity: 0;
|
|
32641
|
+
}
|
|
32642
|
+
}
|
|
32643
|
+
@keyframes enter-bottom {
|
|
32644
|
+
from {
|
|
32645
|
+
transform: translateY(-40px);
|
|
32646
|
+
opacity: 0;
|
|
32647
|
+
}
|
|
32648
|
+
to {
|
|
32649
|
+
transform: translateY(0);
|
|
32650
|
+
opacity: 1;
|
|
32651
|
+
}
|
|
32652
|
+
}
|
|
32653
|
+
@keyframes enter-bottom {
|
|
32654
|
+
from {
|
|
32655
|
+
transform: translateY(-40px);
|
|
32656
|
+
opacity: 0;
|
|
32657
|
+
}
|
|
32658
|
+
to {
|
|
32659
|
+
transform: translateY(0);
|
|
32660
|
+
opacity: 1;
|
|
32661
|
+
}
|
|
32662
|
+
}
|
|
32663
|
+
@keyframes leave-bottom {
|
|
32664
|
+
from {
|
|
32665
|
+
transform: translateY(0);
|
|
32666
|
+
opacity: 1;
|
|
32667
|
+
}
|
|
32668
|
+
to {
|
|
32669
|
+
transform: translateY(-40px);
|
|
32670
|
+
opacity: 0;
|
|
32671
|
+
}
|
|
32672
|
+
}
|
|
32673
|
+
@keyframes leave-bottom {
|
|
32674
|
+
from {
|
|
32675
|
+
transform: translateY(0);
|
|
32676
|
+
opacity: 1;
|
|
32677
|
+
}
|
|
32678
|
+
to {
|
|
32679
|
+
transform: translateY(-40px);
|
|
32680
|
+
opacity: 0;
|
|
32681
|
+
}
|
|
32682
|
+
}
|
|
32683
|
+
@keyframes enter-left {
|
|
32684
|
+
from {
|
|
32685
|
+
transform: translateX(40px);
|
|
32686
|
+
opacity: 0;
|
|
32687
|
+
}
|
|
32688
|
+
to {
|
|
32689
|
+
transform: translateX(0);
|
|
32690
|
+
opacity: 1;
|
|
32691
|
+
}
|
|
32692
|
+
}
|
|
32693
|
+
@keyframes enter-left {
|
|
32694
|
+
from {
|
|
32695
|
+
transform: translateX(40px);
|
|
32696
|
+
opacity: 0;
|
|
32697
|
+
}
|
|
32698
|
+
to {
|
|
32699
|
+
transform: translateX(0);
|
|
32700
|
+
opacity: 1;
|
|
32701
|
+
}
|
|
32702
|
+
}
|
|
32703
|
+
@keyframes leave-left {
|
|
32704
|
+
from {
|
|
32705
|
+
transform: translateX(0);
|
|
32706
|
+
opacity: 1;
|
|
32707
|
+
}
|
|
32708
|
+
to {
|
|
32709
|
+
transform: translateX(40px);
|
|
32710
|
+
opacity: 0;
|
|
32711
|
+
}
|
|
32712
|
+
}
|
|
32713
|
+
@keyframes leave-left {
|
|
32714
|
+
from {
|
|
32715
|
+
transform: translateX(0);
|
|
32716
|
+
opacity: 1;
|
|
32717
|
+
}
|
|
32718
|
+
to {
|
|
32719
|
+
transform: translateX(40px);
|
|
32720
|
+
opacity: 0;
|
|
32721
|
+
}
|
|
32722
|
+
}
|
|
32723
|
+
@keyframes enter-right {
|
|
32724
|
+
from {
|
|
32725
|
+
transform: translateX(-40px);
|
|
32726
|
+
opacity: 0;
|
|
32727
|
+
}
|
|
32728
|
+
to {
|
|
32729
|
+
transform: translateX(0);
|
|
32730
|
+
opacity: 1;
|
|
32731
|
+
}
|
|
32732
|
+
}
|
|
32733
|
+
@keyframes enter-right {
|
|
32734
|
+
from {
|
|
32735
|
+
transform: translateX(-40px);
|
|
32736
|
+
opacity: 0;
|
|
32737
|
+
}
|
|
32738
|
+
to {
|
|
32739
|
+
transform: translateX(0);
|
|
32740
|
+
opacity: 1;
|
|
32741
|
+
}
|
|
32742
|
+
}
|
|
32743
|
+
@keyframes leave-right {
|
|
32744
|
+
from {
|
|
32745
|
+
transform: translateX(0);
|
|
32746
|
+
opacity: 1;
|
|
32747
|
+
}
|
|
32748
|
+
to {
|
|
32749
|
+
transform: translateX(-40px);
|
|
32750
|
+
opacity: 0;
|
|
32751
|
+
}
|
|
32752
|
+
}
|
|
32753
|
+
@keyframes leave-right {
|
|
32754
|
+
from {
|
|
32755
|
+
transform: translateX(0);
|
|
32756
|
+
opacity: 1;
|
|
32757
|
+
}
|
|
32758
|
+
to {
|
|
32759
|
+
transform: translateX(-40px);
|
|
32760
|
+
opacity: 0;
|
|
32761
|
+
}
|
|
32762
|
+
}
|
|
32763
|
+
.ant-float-btn-top .ant-float-btn-top-motion-enter {
|
|
32764
|
+
animation-name: antFadeIn;
|
|
32765
|
+
animation-duration: 0.2s;
|
|
32766
|
+
animation-timing-function: linear;
|
|
32767
|
+
animation-fill-mode: both;
|
|
32768
|
+
}
|
|
32769
|
+
.ant-float-btn-top .ant-float-btn-top-motion-leave {
|
|
32770
|
+
animation-name: antFadeOut;
|
|
32771
|
+
animation-duration: 0.2s;
|
|
32772
|
+
animation-timing-function: linear;
|
|
32773
|
+
animation-fill-mode: both;
|
|
32774
|
+
}
|
|
32558
32775
|
.ant-check-list {
|
|
32559
32776
|
position: fixed;
|
|
32560
32777
|
right: 32px;
|
|
@@ -33612,6 +33829,9 @@ fieldset {
|
|
|
33612
33829
|
.sf .ant-transfer .ant-btn + .ant-btn {
|
|
33613
33830
|
margin-left: 0;
|
|
33614
33831
|
}
|
|
33832
|
+
.sf .ant-mentions {
|
|
33833
|
+
display: inline-flex;
|
|
33834
|
+
}
|
|
33615
33835
|
.sf__no-error .ant-form-item {
|
|
33616
33836
|
margin-bottom: 8px;
|
|
33617
33837
|
}
|
|
@@ -35532,7 +35752,7 @@ code {
|
|
|
35532
35752
|
*/
|
|
35533
35753
|
.fixed-top {
|
|
35534
35754
|
position: fixed;
|
|
35535
|
-
z-index:
|
|
35755
|
+
z-index: 100;
|
|
35536
35756
|
top: 0;
|
|
35537
35757
|
right: 0;
|
|
35538
35758
|
left: 0;
|
|
@@ -35544,7 +35764,7 @@ code {
|
|
|
35544
35764
|
*/
|
|
35545
35765
|
.fixed-bottom {
|
|
35546
35766
|
position: fixed;
|
|
35547
|
-
z-index:
|
|
35767
|
+
z-index: 100;
|
|
35548
35768
|
right: 0;
|
|
35549
35769
|
bottom: 0;
|
|
35550
35770
|
left: 0;
|
|
@@ -36653,7 +36873,8 @@ body {
|
|
|
36653
36873
|
font-size: 12px;
|
|
36654
36874
|
color: #8c8c8c;
|
|
36655
36875
|
}
|
|
36656
|
-
.alain-default__content nz-input-group
|
|
36876
|
+
.alain-default__content nz-input-group,
|
|
36877
|
+
.alain-default__content nz-input-wrapper {
|
|
36657
36878
|
width: auto;
|
|
36658
36879
|
}
|
|
36659
36880
|
.alain-default__hide-aside .alain-default__content {
|
|
@@ -36685,7 +36906,7 @@ body {
|
|
|
36685
36906
|
}
|
|
36686
36907
|
}
|
|
36687
36908
|
.alain-default__header {
|
|
36688
|
-
z-index:
|
|
36909
|
+
z-index: 110;
|
|
36689
36910
|
display: flex;
|
|
36690
36911
|
align-items: center;
|
|
36691
36912
|
width: 100%;
|
|
@@ -36831,7 +37052,7 @@ body {
|
|
|
36831
37052
|
@media (max-width: 767px) {
|
|
36832
37053
|
.alain-default__search {
|
|
36833
37054
|
position: absolute;
|
|
36834
|
-
z-index:
|
|
37055
|
+
z-index: 120;
|
|
36835
37056
|
top: 0;
|
|
36836
37057
|
left: 0;
|
|
36837
37058
|
align-items: center;
|
|
@@ -36875,7 +37096,7 @@ body {
|
|
|
36875
37096
|
}
|
|
36876
37097
|
.alain-default__aside {
|
|
36877
37098
|
position: absolute;
|
|
36878
|
-
z-index:
|
|
37099
|
+
z-index: 105;
|
|
36879
37100
|
top: 0;
|
|
36880
37101
|
bottom: 0;
|
|
36881
37102
|
overflow: hidden;
|
|
@@ -36962,7 +37183,7 @@ body {
|
|
|
36962
37183
|
}
|
|
36963
37184
|
.alain-default__progress-bar {
|
|
36964
37185
|
position: fixed;
|
|
36965
|
-
z-index:
|
|
37186
|
+
z-index: 120;
|
|
36966
37187
|
overflow: hidden;
|
|
36967
37188
|
width: 100vw;
|
|
36968
37189
|
height: 4px;
|
|
@@ -37138,7 +37359,7 @@ body {
|
|
|
37138
37359
|
}
|
|
37139
37360
|
.sidebar-nav__floating {
|
|
37140
37361
|
position: absolute;
|
|
37141
|
-
z-index:
|
|
37362
|
+
z-index: 107;
|
|
37142
37363
|
display: none;
|
|
37143
37364
|
min-width: 160px;
|
|
37144
37365
|
border: 1px solid #303030;
|
|
@@ -37256,7 +37477,7 @@ body {
|
|
|
37256
37477
|
}
|
|
37257
37478
|
.alain-default__fixed .reuse-tab {
|
|
37258
37479
|
position: fixed;
|
|
37259
|
-
z-index:
|
|
37480
|
+
z-index: 101;
|
|
37260
37481
|
top: var(--alain-default-header-hg, 64px);
|
|
37261
37482
|
right: 24px;
|
|
37262
37483
|
left: 224px;
|
|
@@ -37929,7 +38150,7 @@ ellipsis {
|
|
|
37929
38150
|
}
|
|
37930
38151
|
.footer-toolbar {
|
|
37931
38152
|
position: fixed;
|
|
37932
|
-
z-index:
|
|
38153
|
+
z-index: 100;
|
|
37933
38154
|
right: 0;
|
|
37934
38155
|
bottom: 0;
|
|
37935
38156
|
display: flex;
|
|
@@ -38231,7 +38452,7 @@ ellipsis {
|
|
|
38231
38452
|
}
|
|
38232
38453
|
.quick-menu {
|
|
38233
38454
|
position: fixed;
|
|
38234
|
-
z-index:
|
|
38455
|
+
z-index: 102;
|
|
38235
38456
|
right: -1px;
|
|
38236
38457
|
left: auto;
|
|
38237
38458
|
display: block;
|