@delon/theme 12.4.2 → 13.1.0
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 +1278 -750
- package/compact.min.css +1 -1
- package/dark.css +1325 -797
- package/dark.min.css +1 -1
- package/default.css +1286 -758
- package/default.min.css +1 -1
- package/{esm2015/layout-blank/layout-blank.js → esm2020/layout-blank/layout-blank.mjs} +0 -0
- package/{esm2015/layout-blank/public_api.js → esm2020/layout-blank/public_api.mjs} +0 -0
- package/{esm2015/layout-default/layout-default.js → esm2020/layout-default/layout-default.mjs} +0 -0
- package/esm2020/layout-default/layout-header-item-trigger.directive.mjs +16 -0
- package/esm2020/layout-default/layout-header-item.component.mjs +33 -0
- package/esm2020/layout-default/layout-header.component.mjs +123 -0
- package/esm2020/layout-default/layout-nav.component.mjs +307 -0
- package/esm2020/layout-default/layout.component.mjs +132 -0
- package/esm2020/layout-default/layout.module.mjs +69 -0
- package/{esm2015/layout-default/public_api.js → esm2020/layout-default/public_api.mjs} +0 -0
- package/{esm2015/layout-default/types.js → esm2020/layout-default/types.mjs} +0 -0
- package/esm2020/public_api.mjs +25 -0
- package/{esm2015/setting-drawer/public_api.js → esm2020/setting-drawer/public_api.mjs} +0 -0
- package/esm2020/setting-drawer/setting-drawer-item.component.mjs +35 -0
- package/esm2020/setting-drawer/setting-drawer.component.mjs +192 -0
- package/{esm2015/setting-drawer/setting-drawer.js → esm2020/setting-drawer/setting-drawer.mjs} +0 -0
- package/esm2020/setting-drawer/setting-drawer.module.mjs +68 -0
- package/{esm2015/setting-drawer/setting-drawer.types.js → esm2020/setting-drawer/setting-drawer.types.mjs} +0 -0
- package/{esm2015/src/config.js → esm2020/src/config.mjs} +0 -0
- package/{esm2015/src/locale/index.js → esm2020/src/locale/index.mjs} +0 -0
- package/{esm2015/src/locale/languages/el-GR.js → esm2020/src/locale/languages/el-GR.mjs} +0 -0
- package/{esm2015/src/locale/languages/en-US.js → esm2020/src/locale/languages/en-US.mjs} +0 -0
- package/{esm2015/src/locale/languages/es-ES.js → esm2020/src/locale/languages/es-ES.mjs} +0 -0
- package/{esm2015/src/locale/languages/fr-FR.js → esm2020/src/locale/languages/fr-FR.mjs} +0 -0
- package/{esm2015/src/locale/languages/hr-HR.js → esm2020/src/locale/languages/hr-HR.mjs} +0 -0
- package/{esm2015/src/locale/languages/it-IT.js → esm2020/src/locale/languages/it-IT.mjs} +0 -0
- package/{esm2015/src/locale/languages/ja-JP.js → esm2020/src/locale/languages/ja-JP.mjs} +0 -0
- package/{esm2015/src/locale/languages/ko-KR.js → esm2020/src/locale/languages/ko-KR.mjs} +0 -0
- package/{esm2015/src/locale/languages/pl-PL.js → esm2020/src/locale/languages/pl-PL.mjs} +0 -0
- package/{esm2015/src/locale/languages/sl-SI.js → esm2020/src/locale/languages/sl-SI.mjs} +0 -0
- package/{esm2015/src/locale/languages/tr-TR.js → esm2020/src/locale/languages/tr-TR.mjs} +0 -0
- package/{esm2015/src/locale/languages/zh-CN.js → esm2020/src/locale/languages/zh-CN.mjs} +0 -0
- package/{esm2015/src/locale/languages/zh-TW.js → esm2020/src/locale/languages/zh-TW.mjs} +0 -0
- package/esm2020/src/locale/locale.module.mjs +17 -0
- package/esm2020/src/locale/locale.service.mjs +45 -0
- package/{esm2015/src/locale/locale.tokens.js → esm2020/src/locale/locale.tokens.mjs} +0 -0
- package/{esm2015/src/locale/locale.types.js → esm2020/src/locale/locale.types.mjs} +0 -0
- package/{esm2015/src/locale/public_api.js → esm2020/src/locale/public_api.mjs} +0 -0
- package/esm2020/src/pipes/date/date.pipe.mjs +24 -0
- package/esm2020/src/pipes/keys/keys.pipe.mjs +21 -0
- package/esm2020/src/pipes/safe/html.pipe.mjs +18 -0
- package/esm2020/src/pipes/safe/url.pipe.mjs +18 -0
- package/esm2020/src/pipes/yn/yn.pipe.mjs +38 -0
- package/esm2020/src/router/optional-preloader.mjs +22 -0
- package/esm2020/src/services/drawer/drawer.helper.mjs +91 -0
- package/esm2020/src/services/http/http.client.mjs +154 -0
- package/esm2020/src/services/http/http.decorator.mjs +215 -0
- package/esm2020/src/services/i18n/i18n.mjs +97 -0
- package/esm2020/src/services/i18n/i18n.pipe.mjs +21 -0
- package/{esm2015/src/services/menu/interface.js → esm2020/src/services/menu/interface.mjs} +0 -0
- package/esm2020/src/services/menu/menu.service.mjs +252 -0
- package/esm2020/src/services/modal/modal.helper.mjs +106 -0
- package/{esm2015/src/services/preloader/preloader.js → esm2020/src/services/preloader/preloader.mjs} +0 -0
- package/esm2020/src/services/responsive/responsive.mjs +46 -0
- package/esm2020/src/services/rtl/rtl.service.mjs +101 -0
- package/esm2020/src/services/settings/settings.service.mjs +100 -0
- package/{esm2015/src/services/settings/types.js → esm2020/src/services/settings/types.mjs} +0 -0
- package/esm2020/src/services/title/title.service.mjs +124 -0
- package/esm2020/src/theme.module.mjs +76 -0
- package/{esm2015/src/version.js → esm2020/src/version.mjs} +1 -1
- package/{esm2015/theme-btn/public_api.js → esm2020/theme-btn/public_api.mjs} +0 -0
- package/esm2020/theme-btn/theme-btn.component.mjs +106 -0
- package/esm2020/theme-btn/theme-btn.mjs +5 -0
- package/esm2020/theme-btn/theme-btn.module.mjs +32 -0
- package/esm2020/theme.mjs +5 -0
- package/fesm2015/{layout-blank.js → layout-blank.mjs} +1 -1
- package/fesm2015/layout-blank.mjs.map +1 -0
- package/fesm2015/layout-default.mjs +654 -0
- package/fesm2015/layout-default.mjs.map +1 -0
- package/fesm2015/setting-drawer.mjs +487 -0
- package/fesm2015/setting-drawer.mjs.map +1 -0
- package/fesm2015/theme-btn.mjs +144 -0
- package/fesm2015/theme-btn.mjs.map +1 -0
- package/fesm2015/{theme.js → theme.mjs} +226 -188
- package/fesm2015/theme.mjs.map +1 -0
- package/fesm2020/layout-blank.mjs +7 -0
- package/fesm2020/layout-blank.mjs.map +1 -0
- package/fesm2020/layout-default.mjs +654 -0
- package/fesm2020/layout-default.mjs.map +1 -0
- package/fesm2020/setting-drawer.mjs +482 -0
- package/fesm2020/setting-drawer.mjs.map +1 -0
- package/fesm2020/theme-btn.mjs +141 -0
- package/fesm2020/theme-btn.mjs.map +1 -0
- package/fesm2020/theme.mjs +2575 -0
- package/fesm2020/theme.mjs.map +1 -0
- package/layout-blank/layout-blank.d.ts +1 -0
- package/layout-blank/package.json +5 -6
- package/layout-default/layout-default.d.ts +1 -0
- package/layout-default/layout-header-item-trigger.directive.d.ts +3 -0
- package/layout-default/layout-header-item.component.d.ts +3 -0
- package/layout-default/layout-header.component.d.ts +8 -5
- package/layout-default/layout-nav.component.d.ts +4 -1
- package/layout-default/layout.component.d.ts +6 -3
- package/layout-default/layout.module.d.ts +17 -0
- package/layout-default/package.json +5 -6
- package/layout-default/style/_aside.less +7 -10
- package/layout-default/style/_fixed.less +2 -0
- package/layout-default/style/_header.less +21 -0
- package/layout-default/style/_layout.less +7 -0
- package/layout-default/style/_progress-bar.less +6 -0
- package/layout-default/style/fix/_full-content.less +4 -0
- package/layout-default/style/widgets/_app-icons.less +3 -0
- package/layout-default/style/widgets/_user.less +5 -0
- package/package.json +55 -11
- package/public_api.d.ts +1 -0
- package/setting-drawer/package.json +5 -6
- package/setting-drawer/setting-drawer-item.component.d.ts +3 -0
- package/setting-drawer/setting-drawer.component.d.ts +3 -0
- package/setting-drawer/setting-drawer.d.ts +1 -0
- package/setting-drawer/setting-drawer.module.d.ts +18 -0
- package/setting-drawer/style/index.less +9 -0
- package/setting-drawer/style/rtl.less +1 -0
- package/src/locale/locale.module.d.ts +4 -0
- package/src/locale/locale.service.d.ts +3 -0
- package/src/pipes/date/date.pipe.d.ts +3 -0
- package/src/pipes/keys/keys.pipe.d.ts +3 -0
- package/src/pipes/safe/html.pipe.d.ts +3 -0
- package/src/pipes/safe/url.pipe.d.ts +3 -0
- package/src/pipes/yn/style/index.less +3 -0
- package/src/pipes/yn/yn.pipe.d.ts +3 -0
- package/src/services/drawer/drawer.helper.d.ts +3 -0
- package/src/services/http/http.client.d.ts +3 -0
- package/src/services/http/http.decorator.d.ts +3 -0
- package/src/services/i18n/i18n.d.ts +5 -0
- package/src/services/i18n/i18n.pipe.d.ts +3 -0
- package/src/services/menu/menu.service.d.ts +5 -0
- package/src/services/modal/modal.helper.d.ts +3 -0
- package/src/services/responsive/responsive.d.ts +3 -0
- package/src/services/rtl/rtl.service.d.ts +3 -0
- package/src/services/settings/settings.service.d.ts +9 -0
- package/src/services/title/title.service.d.ts +3 -0
- package/src/theme.module.d.ts +15 -0
- package/system/_preloader.less +10 -0
- package/system/_type.less +5 -0
- package/system/antd/_modal.less +5 -0
- package/system/antd/_table.less +7 -0
- package/system/index.less +3 -3
- package/system/mixins/_freak.less +2 -2
- package/system/mixins/_text-truncate.less +2 -0
- package/system/ng/_form.less +1 -0
- package/system/theme-default.less +3 -1
- package/system/utils/_display.less +9 -0
- package/system/utils/_other.less +2 -0
- package/system/utils/_scrollbar.less +3 -0
- package/system/widgets/_abs.less +3 -0
- package/system/widgets/_half-float.less +2 -0
- package/system/widgets/_masonry-grid.less +2 -0
- package/theme-btn/package.json +6 -7
- package/theme-btn/style/index.less +1 -0
- package/theme-btn/theme-btn.component.d.ts +3 -0
- package/theme-btn/{layout-theme-btn.d.ts → theme-btn.d.ts} +1 -0
- package/theme-btn/theme-btn.module.d.ts +8 -0
- package/theme-compact.less +1 -1
- package/theme-dark.less +1 -1
- package/theme-default.less +1 -1
- package/theme.d.ts +1 -1
- package/bundles/layout-blank.umd.js +0 -19
- package/bundles/layout-blank.umd.js.map +0 -1
- package/bundles/layout-default.umd.js +0 -876
- package/bundles/layout-default.umd.js.map +0 -1
- package/bundles/layout-theme-btn.umd.js +0 -141
- package/bundles/layout-theme-btn.umd.js.map +0 -1
- package/bundles/setting-drawer.umd.js +0 -789
- package/bundles/setting-drawer.umd.js.map +0 -1
- package/bundles/theme.umd.js +0 -3075
- package/bundles/theme.umd.js.map +0 -1
- package/esm2015/layout-default/layout-header-item-trigger.directive.js +0 -12
- package/esm2015/layout-default/layout-header-item.component.js +0 -23
- package/esm2015/layout-default/layout-header.component.js +0 -94
- package/esm2015/layout-default/layout-nav.component.js +0 -306
- package/esm2015/layout-default/layout.component.js +0 -102
- package/esm2015/layout-default/layout.module.js +0 -40
- package/esm2015/public_api.js +0 -24
- package/esm2015/setting-drawer/setting-drawer-item.component.js +0 -30
- package/esm2015/setting-drawer/setting-drawer.component.js +0 -185
- package/esm2015/setting-drawer/setting-drawer.module.js +0 -39
- package/esm2015/src/locale/locale.module.js +0 -14
- package/esm2015/src/locale/locale.service.js +0 -42
- package/esm2015/src/pipes/date/date.pipe.js +0 -23
- package/esm2015/src/pipes/keys/keys.pipe.js +0 -17
- package/esm2015/src/pipes/safe/html.pipe.js +0 -17
- package/esm2015/src/pipes/safe/url.pipe.js +0 -17
- package/esm2015/src/pipes/yn/yn.pipe.js +0 -37
- package/esm2015/src/router/optional-preloader.js +0 -23
- package/esm2015/src/services/drawer/drawer.helper.js +0 -90
- package/esm2015/src/services/http/http.client.js +0 -138
- package/esm2015/src/services/http/http.decorator.js +0 -207
- package/esm2015/src/services/i18n/i18n.js +0 -96
- package/esm2015/src/services/i18n/i18n.pipe.js +0 -17
- package/esm2015/src/services/menu/menu.service.js +0 -252
- package/esm2015/src/services/modal/modal.helper.js +0 -105
- package/esm2015/src/services/responsive/responsive.js +0 -48
- package/esm2015/src/services/rtl/rtl.service.js +0 -110
- package/esm2015/src/services/settings/settings.service.js +0 -82
- package/esm2015/src/services/title/title.service.js +0 -125
- package/esm2015/src/theme.module.js +0 -67
- package/esm2015/theme-btn/layout-theme-btn.js +0 -5
- package/esm2015/theme-btn/theme-btn.component.js +0 -103
- package/esm2015/theme-btn/theme-btn.module.js +0 -22
- package/esm2015/theme.js +0 -6
- package/fesm2015/layout-blank.js.map +0 -1
- package/fesm2015/layout-default.js +0 -561
- package/fesm2015/layout-default.js.map +0 -1
- package/fesm2015/layout-theme-btn.js +0 -129
- package/fesm2015/layout-theme-btn.js.map +0 -1
- package/fesm2015/setting-drawer.js +0 -448
- package/fesm2015/setting-drawer.js.map +0 -1
- package/fesm2015/theme.js.map +0 -1
- package/layout-blank/layout-blank.metadata.json +0 -1
- package/layout-default/layout-default.metadata.json +0 -1
- package/setting-drawer/setting-drawer.metadata.json +0 -1
- package/theme-btn/layout-theme-btn.metadata.json +0 -1
- package/theme.metadata.json +0 -1
package/dark.css
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[class*= ant-] input::-ms-reveal {
|
|
11
11
|
display: none;
|
|
12
12
|
}
|
|
13
|
-
/* stylelint-disable at-rule-no-
|
|
13
|
+
/* stylelint-disable property-no-vendor-prefix, at-rule-no-vendor-prefix */
|
|
14
14
|
html,
|
|
15
15
|
body {
|
|
16
16
|
width: 100%;
|
|
@@ -1851,9 +1851,6 @@ nz-affix {
|
|
|
1851
1851
|
.ant-alert.ant-alert-rtl {
|
|
1852
1852
|
direction: rtl;
|
|
1853
1853
|
}
|
|
1854
|
-
.ant-alert-rtl.ant-alert.ant-alert-no-icon {
|
|
1855
|
-
padding: 8px 15px;
|
|
1856
|
-
}
|
|
1857
1854
|
.ant-alert-rtl .ant-alert-icon {
|
|
1858
1855
|
margin-right: auto;
|
|
1859
1856
|
margin-left: 8px;
|
|
@@ -1866,6 +1863,10 @@ nz-affix {
|
|
|
1866
1863
|
margin-right: 8px;
|
|
1867
1864
|
margin-left: auto;
|
|
1868
1865
|
}
|
|
1866
|
+
.ant-alert-rtl.ant-alert-with-description {
|
|
1867
|
+
padding-right: 24px;
|
|
1868
|
+
padding-left: 15px;
|
|
1869
|
+
}
|
|
1869
1870
|
.ant-alert-rtl.ant-alert-with-description .ant-alert-icon {
|
|
1870
1871
|
margin-right: auto;
|
|
1871
1872
|
margin-left: 15px;
|
|
@@ -1922,7 +1923,7 @@ nz-alert {
|
|
|
1922
1923
|
.ant-anchor-ink-ball.visible {
|
|
1923
1924
|
display: inline-block;
|
|
1924
1925
|
}
|
|
1925
|
-
.ant-anchor
|
|
1926
|
+
.ant-anchor-fixed .ant-anchor-ink .ant-anchor-ink-ball {
|
|
1926
1927
|
display: none;
|
|
1927
1928
|
}
|
|
1928
1929
|
.ant-anchor-link {
|
|
@@ -2183,6 +2184,9 @@ nz-link {
|
|
|
2183
2184
|
border-radius: 100%;
|
|
2184
2185
|
box-shadow: 0 0 0 1px #141414;
|
|
2185
2186
|
}
|
|
2187
|
+
.ant-badge-dot.ant-scroll-number {
|
|
2188
|
+
transition: background 1.5s;
|
|
2189
|
+
}
|
|
2186
2190
|
.ant-badge-count,
|
|
2187
2191
|
.ant-badge-dot,
|
|
2188
2192
|
.ant-badge .ant-scroll-number-custom-component {
|
|
@@ -2300,7 +2304,8 @@ nz-link {
|
|
|
2300
2304
|
.ant-badge-not-a-wrapper:not(.ant-badge-status) {
|
|
2301
2305
|
vertical-align: middle;
|
|
2302
2306
|
}
|
|
2303
|
-
.ant-badge-not-a-wrapper .ant-scroll-number-custom-component
|
|
2307
|
+
.ant-badge-not-a-wrapper .ant-scroll-number-custom-component,
|
|
2308
|
+
.ant-badge-not-a-wrapper .ant-badge-count {
|
|
2304
2309
|
transform: none;
|
|
2305
2310
|
}
|
|
2306
2311
|
.ant-badge-not-a-wrapper .ant-scroll-number-custom-component,
|
|
@@ -2310,9 +2315,6 @@ nz-link {
|
|
|
2310
2315
|
display: block;
|
|
2311
2316
|
transform-origin: 50% 50%;
|
|
2312
2317
|
}
|
|
2313
|
-
.ant-badge-not-a-wrapper .ant-badge-count {
|
|
2314
|
-
transform: none;
|
|
2315
|
-
}
|
|
2316
2318
|
@keyframes antStatusProcessing {
|
|
2317
2319
|
0% {
|
|
2318
2320
|
transform: scale(0.8);
|
|
@@ -2325,20 +2327,25 @@ nz-link {
|
|
|
2325
2327
|
}
|
|
2326
2328
|
.ant-scroll-number {
|
|
2327
2329
|
overflow: hidden;
|
|
2330
|
+
direction: ltr;
|
|
2328
2331
|
}
|
|
2329
2332
|
.ant-scroll-number-only {
|
|
2330
2333
|
position: relative;
|
|
2331
2334
|
display: inline-block;
|
|
2332
2335
|
height: 20px;
|
|
2333
2336
|
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
2337
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2334
2338
|
-webkit-transform-style: preserve-3d;
|
|
2335
2339
|
-webkit-backface-visibility: hidden;
|
|
2340
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
2336
2341
|
}
|
|
2337
2342
|
.ant-scroll-number-only > p.ant-scroll-number-only-unit {
|
|
2338
2343
|
height: 20px;
|
|
2339
2344
|
margin: 0;
|
|
2345
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2340
2346
|
-webkit-transform-style: preserve-3d;
|
|
2341
2347
|
-webkit-backface-visibility: hidden;
|
|
2348
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
2342
2349
|
}
|
|
2343
2350
|
.ant-scroll-number-symbol {
|
|
2344
2351
|
vertical-align: top;
|
|
@@ -2505,16 +2512,16 @@ nz-link {
|
|
|
2505
2512
|
.ant-badge-rtl {
|
|
2506
2513
|
direction: rtl;
|
|
2507
2514
|
}
|
|
2508
|
-
.ant-badge-rtl .ant-badge-count,
|
|
2509
|
-
.ant-badge-rtl .ant-badge-dot,
|
|
2510
|
-
.ant-badge-rtl .ant-badge .ant-scroll-number-custom-component {
|
|
2515
|
+
.ant-badge-rtl .ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-count,
|
|
2516
|
+
.ant-badge-rtl .ant-badge:not(.ant-badge-not-a-wrapper) .ant-badge-dot,
|
|
2517
|
+
.ant-badge-rtl .ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component {
|
|
2511
2518
|
right: auto;
|
|
2512
2519
|
left: 0;
|
|
2513
2520
|
direction: ltr;
|
|
2514
2521
|
transform: translate(-50%, -50%);
|
|
2515
2522
|
transform-origin: 0% 0%;
|
|
2516
2523
|
}
|
|
2517
|
-
.ant-badge-rtl.ant-badge .ant-scroll-number-custom-component {
|
|
2524
|
+
.ant-badge-rtl.ant-badge:not(.ant-badge-not-a-wrapper) .ant-scroll-number-custom-component {
|
|
2518
2525
|
right: auto;
|
|
2519
2526
|
left: 0;
|
|
2520
2527
|
transform: translate(-50%, -50%);
|
|
@@ -2524,16 +2531,6 @@ nz-link {
|
|
|
2524
2531
|
margin-right: 8px;
|
|
2525
2532
|
margin-left: 0;
|
|
2526
2533
|
}
|
|
2527
|
-
.ant-badge-rtl .ant-badge-zoom-appear,
|
|
2528
|
-
.ant-badge-rtl .ant-badge-zoom-enter {
|
|
2529
|
-
animation-name: antZoomBadgeInRtl;
|
|
2530
|
-
}
|
|
2531
|
-
.ant-badge-rtl .ant-badge-zoom-leave {
|
|
2532
|
-
animation-name: antZoomBadgeOutRtl;
|
|
2533
|
-
}
|
|
2534
|
-
.ant-badge-not-a-wrapper .ant-badge-count {
|
|
2535
|
-
transform: none;
|
|
2536
|
-
}
|
|
2537
2534
|
.ant-ribbon-rtl {
|
|
2538
2535
|
direction: rtl;
|
|
2539
2536
|
}
|
|
@@ -2565,24 +2562,6 @@ nz-link {
|
|
|
2565
2562
|
.ant-ribbon-rtl.ant-ribbon-placement-start .ant-ribbon-corner::after {
|
|
2566
2563
|
border-color: currentColor transparent transparent currentColor;
|
|
2567
2564
|
}
|
|
2568
|
-
@keyframes antZoomBadgeInRtl {
|
|
2569
|
-
0% {
|
|
2570
|
-
transform: scale(0) translate(-50%, -50%);
|
|
2571
|
-
opacity: 0;
|
|
2572
|
-
}
|
|
2573
|
-
100% {
|
|
2574
|
-
transform: scale(1) translate(-50%, -50%);
|
|
2575
|
-
}
|
|
2576
|
-
}
|
|
2577
|
-
@keyframes antZoomBadgeOutRtl {
|
|
2578
|
-
0% {
|
|
2579
|
-
transform: scale(1) translate(-50%, -50%);
|
|
2580
|
-
}
|
|
2581
|
-
100% {
|
|
2582
|
-
transform: scale(0) translate(-50%, -50%);
|
|
2583
|
-
opacity: 0;
|
|
2584
|
-
}
|
|
2585
|
-
}
|
|
2586
2565
|
.ant-badge .ant-scroll-number:only-child {
|
|
2587
2566
|
position: relative;
|
|
2588
2567
|
top: auto;
|
|
@@ -2724,8 +2703,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2724
2703
|
font-size: 14px;
|
|
2725
2704
|
border-radius: 2px;
|
|
2726
2705
|
color: rgba(255, 255, 255, 0.85);
|
|
2727
|
-
background: transparent;
|
|
2728
2706
|
border-color: #434343;
|
|
2707
|
+
background: transparent;
|
|
2729
2708
|
}
|
|
2730
2709
|
.ant-btn > .anticon {
|
|
2731
2710
|
line-height: 1;
|
|
@@ -2775,8 +2754,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2775
2754
|
.ant-btn:hover,
|
|
2776
2755
|
.ant-btn:focus {
|
|
2777
2756
|
color: #165996;
|
|
2778
|
-
background: transparent;
|
|
2779
2757
|
border-color: #165996;
|
|
2758
|
+
background: transparent;
|
|
2780
2759
|
}
|
|
2781
2760
|
.ant-btn:hover > a:only-child,
|
|
2782
2761
|
.ant-btn:focus > a:only-child {
|
|
@@ -2794,8 +2773,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2794
2773
|
}
|
|
2795
2774
|
.ant-btn:active {
|
|
2796
2775
|
color: #388ed3;
|
|
2797
|
-
background: transparent;
|
|
2798
2776
|
border-color: #388ed3;
|
|
2777
|
+
background: transparent;
|
|
2799
2778
|
}
|
|
2800
2779
|
.ant-btn:active > a:only-child {
|
|
2801
2780
|
color: currentColor;
|
|
@@ -2814,8 +2793,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2814
2793
|
.ant-btn[disabled]:focus,
|
|
2815
2794
|
.ant-btn[disabled]:active {
|
|
2816
2795
|
color: rgba(255, 255, 255, 0.3);
|
|
2817
|
-
background: rgba(255, 255, 255, 0.08);
|
|
2818
2796
|
border-color: #434343;
|
|
2797
|
+
background: rgba(255, 255, 255, 0.08);
|
|
2819
2798
|
text-shadow: none;
|
|
2820
2799
|
box-shadow: none;
|
|
2821
2800
|
}
|
|
@@ -2848,8 +2827,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2848
2827
|
}
|
|
2849
2828
|
.ant-btn-primary {
|
|
2850
2829
|
color: #fff;
|
|
2851
|
-
background: #177ddc;
|
|
2852
2830
|
border-color: #177ddc;
|
|
2831
|
+
background: #177ddc;
|
|
2853
2832
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
|
|
2854
2833
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
2855
2834
|
}
|
|
@@ -2868,8 +2847,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2868
2847
|
.ant-btn-primary:hover,
|
|
2869
2848
|
.ant-btn-primary:focus {
|
|
2870
2849
|
color: #fff;
|
|
2871
|
-
background: #095cb5;
|
|
2872
2850
|
border-color: #095cb5;
|
|
2851
|
+
background: #095cb5;
|
|
2873
2852
|
}
|
|
2874
2853
|
.ant-btn-primary:hover > a:only-child,
|
|
2875
2854
|
.ant-btn-primary:focus > a:only-child {
|
|
@@ -2887,8 +2866,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2887
2866
|
}
|
|
2888
2867
|
.ant-btn-primary:active {
|
|
2889
2868
|
color: #fff;
|
|
2890
|
-
background: #3c9be8;
|
|
2891
2869
|
border-color: #3c9be8;
|
|
2870
|
+
background: #3c9be8;
|
|
2892
2871
|
}
|
|
2893
2872
|
.ant-btn-primary:active > a:only-child {
|
|
2894
2873
|
color: currentColor;
|
|
@@ -2907,8 +2886,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2907
2886
|
.ant-btn-primary[disabled]:focus,
|
|
2908
2887
|
.ant-btn-primary[disabled]:active {
|
|
2909
2888
|
color: rgba(255, 255, 255, 0.3);
|
|
2910
|
-
background: rgba(255, 255, 255, 0.08);
|
|
2911
2889
|
border-color: #434343;
|
|
2890
|
+
background: rgba(255, 255, 255, 0.08);
|
|
2912
2891
|
text-shadow: none;
|
|
2913
2892
|
box-shadow: none;
|
|
2914
2893
|
}
|
|
@@ -2953,8 +2932,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2953
2932
|
}
|
|
2954
2933
|
.ant-btn-ghost {
|
|
2955
2934
|
color: rgba(255, 255, 255, 0.85);
|
|
2956
|
-
background: transparent;
|
|
2957
2935
|
border-color: #434343;
|
|
2936
|
+
background: transparent;
|
|
2958
2937
|
}
|
|
2959
2938
|
.ant-btn-ghost > a:only-child {
|
|
2960
2939
|
color: currentColor;
|
|
@@ -2971,8 +2950,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2971
2950
|
.ant-btn-ghost:hover,
|
|
2972
2951
|
.ant-btn-ghost:focus {
|
|
2973
2952
|
color: #165996;
|
|
2974
|
-
background: transparent;
|
|
2975
2953
|
border-color: #165996;
|
|
2954
|
+
background: transparent;
|
|
2976
2955
|
}
|
|
2977
2956
|
.ant-btn-ghost:hover > a:only-child,
|
|
2978
2957
|
.ant-btn-ghost:focus > a:only-child {
|
|
@@ -2990,8 +2969,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
2990
2969
|
}
|
|
2991
2970
|
.ant-btn-ghost:active {
|
|
2992
2971
|
color: #388ed3;
|
|
2993
|
-
background: transparent;
|
|
2994
2972
|
border-color: #388ed3;
|
|
2973
|
+
background: transparent;
|
|
2995
2974
|
}
|
|
2996
2975
|
.ant-btn-ghost:active > a:only-child {
|
|
2997
2976
|
color: currentColor;
|
|
@@ -3010,8 +2989,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3010
2989
|
.ant-btn-ghost[disabled]:focus,
|
|
3011
2990
|
.ant-btn-ghost[disabled]:active {
|
|
3012
2991
|
color: rgba(255, 255, 255, 0.3);
|
|
3013
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3014
2992
|
border-color: #434343;
|
|
2993
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3015
2994
|
text-shadow: none;
|
|
3016
2995
|
box-shadow: none;
|
|
3017
2996
|
}
|
|
@@ -3035,8 +3014,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3035
3014
|
}
|
|
3036
3015
|
.ant-btn-dashed {
|
|
3037
3016
|
color: rgba(255, 255, 255, 0.85);
|
|
3038
|
-
background: transparent;
|
|
3039
3017
|
border-color: #434343;
|
|
3018
|
+
background: transparent;
|
|
3040
3019
|
border-style: dashed;
|
|
3041
3020
|
}
|
|
3042
3021
|
.ant-btn-dashed > a:only-child {
|
|
@@ -3054,8 +3033,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3054
3033
|
.ant-btn-dashed:hover,
|
|
3055
3034
|
.ant-btn-dashed:focus {
|
|
3056
3035
|
color: #165996;
|
|
3057
|
-
background: transparent;
|
|
3058
3036
|
border-color: #165996;
|
|
3037
|
+
background: transparent;
|
|
3059
3038
|
}
|
|
3060
3039
|
.ant-btn-dashed:hover > a:only-child,
|
|
3061
3040
|
.ant-btn-dashed:focus > a:only-child {
|
|
@@ -3073,8 +3052,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3073
3052
|
}
|
|
3074
3053
|
.ant-btn-dashed:active {
|
|
3075
3054
|
color: #388ed3;
|
|
3076
|
-
background: transparent;
|
|
3077
3055
|
border-color: #388ed3;
|
|
3056
|
+
background: transparent;
|
|
3078
3057
|
}
|
|
3079
3058
|
.ant-btn-dashed:active > a:only-child {
|
|
3080
3059
|
color: currentColor;
|
|
@@ -3093,8 +3072,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3093
3072
|
.ant-btn-dashed[disabled]:focus,
|
|
3094
3073
|
.ant-btn-dashed[disabled]:active {
|
|
3095
3074
|
color: rgba(255, 255, 255, 0.3);
|
|
3096
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3097
3075
|
border-color: #434343;
|
|
3076
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3098
3077
|
text-shadow: none;
|
|
3099
3078
|
box-shadow: none;
|
|
3100
3079
|
}
|
|
@@ -3118,8 +3097,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3118
3097
|
}
|
|
3119
3098
|
.ant-btn-danger {
|
|
3120
3099
|
color: #fff;
|
|
3121
|
-
background: #a61d24;
|
|
3122
3100
|
border-color: #a61d24;
|
|
3101
|
+
background: #a61d24;
|
|
3123
3102
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
|
|
3124
3103
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
3125
3104
|
}
|
|
@@ -3138,8 +3117,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3138
3117
|
.ant-btn-danger:hover,
|
|
3139
3118
|
.ant-btn-danger:focus {
|
|
3140
3119
|
color: #fff;
|
|
3141
|
-
background: #800f19;
|
|
3142
3120
|
border-color: #800f19;
|
|
3121
|
+
background: #800f19;
|
|
3143
3122
|
}
|
|
3144
3123
|
.ant-btn-danger:hover > a:only-child,
|
|
3145
3124
|
.ant-btn-danger:focus > a:only-child {
|
|
@@ -3157,8 +3136,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3157
3136
|
}
|
|
3158
3137
|
.ant-btn-danger:active {
|
|
3159
3138
|
color: #fff;
|
|
3160
|
-
background: #b33b3d;
|
|
3161
3139
|
border-color: #b33b3d;
|
|
3140
|
+
background: #b33b3d;
|
|
3162
3141
|
}
|
|
3163
3142
|
.ant-btn-danger:active > a:only-child {
|
|
3164
3143
|
color: currentColor;
|
|
@@ -3177,8 +3156,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3177
3156
|
.ant-btn-danger[disabled]:focus,
|
|
3178
3157
|
.ant-btn-danger[disabled]:active {
|
|
3179
3158
|
color: rgba(255, 255, 255, 0.3);
|
|
3180
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3181
3159
|
border-color: #434343;
|
|
3160
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3182
3161
|
text-shadow: none;
|
|
3183
3162
|
box-shadow: none;
|
|
3184
3163
|
}
|
|
@@ -3202,8 +3181,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3202
3181
|
}
|
|
3203
3182
|
.ant-btn-link {
|
|
3204
3183
|
color: #177ddc;
|
|
3205
|
-
background: transparent;
|
|
3206
3184
|
border-color: transparent;
|
|
3185
|
+
background: transparent;
|
|
3207
3186
|
box-shadow: none;
|
|
3208
3187
|
}
|
|
3209
3188
|
.ant-btn-link > a:only-child {
|
|
@@ -3221,8 +3200,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3221
3200
|
.ant-btn-link:hover,
|
|
3222
3201
|
.ant-btn-link:focus {
|
|
3223
3202
|
color: #165996;
|
|
3224
|
-
background: transparent;
|
|
3225
3203
|
border-color: #165996;
|
|
3204
|
+
background: transparent;
|
|
3226
3205
|
}
|
|
3227
3206
|
.ant-btn-link:hover > a:only-child,
|
|
3228
3207
|
.ant-btn-link:focus > a:only-child {
|
|
@@ -3240,8 +3219,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3240
3219
|
}
|
|
3241
3220
|
.ant-btn-link:active {
|
|
3242
3221
|
color: #388ed3;
|
|
3243
|
-
background: transparent;
|
|
3244
3222
|
border-color: #388ed3;
|
|
3223
|
+
background: transparent;
|
|
3245
3224
|
}
|
|
3246
3225
|
.ant-btn-link:active > a:only-child {
|
|
3247
3226
|
color: currentColor;
|
|
@@ -3260,8 +3239,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3260
3239
|
.ant-btn-link[disabled]:focus,
|
|
3261
3240
|
.ant-btn-link[disabled]:active {
|
|
3262
3241
|
color: rgba(255, 255, 255, 0.3);
|
|
3263
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3264
3242
|
border-color: #434343;
|
|
3243
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3265
3244
|
text-shadow: none;
|
|
3266
3245
|
box-shadow: none;
|
|
3267
3246
|
}
|
|
@@ -3296,8 +3275,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3296
3275
|
.ant-btn-link[disabled]:focus,
|
|
3297
3276
|
.ant-btn-link[disabled]:active {
|
|
3298
3277
|
color: rgba(255, 255, 255, 0.3);
|
|
3299
|
-
background: transparent;
|
|
3300
3278
|
border-color: transparent;
|
|
3279
|
+
background: transparent;
|
|
3301
3280
|
text-shadow: none;
|
|
3302
3281
|
box-shadow: none;
|
|
3303
3282
|
}
|
|
@@ -3321,8 +3300,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3321
3300
|
}
|
|
3322
3301
|
.ant-btn-text {
|
|
3323
3302
|
color: rgba(255, 255, 255, 0.85);
|
|
3324
|
-
background: transparent;
|
|
3325
3303
|
border-color: transparent;
|
|
3304
|
+
background: transparent;
|
|
3326
3305
|
box-shadow: none;
|
|
3327
3306
|
}
|
|
3328
3307
|
.ant-btn-text > a:only-child {
|
|
@@ -3340,8 +3319,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3340
3319
|
.ant-btn-text:hover,
|
|
3341
3320
|
.ant-btn-text:focus {
|
|
3342
3321
|
color: #165996;
|
|
3343
|
-
background: transparent;
|
|
3344
3322
|
border-color: #165996;
|
|
3323
|
+
background: transparent;
|
|
3345
3324
|
}
|
|
3346
3325
|
.ant-btn-text:hover > a:only-child,
|
|
3347
3326
|
.ant-btn-text:focus > a:only-child {
|
|
@@ -3359,8 +3338,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3359
3338
|
}
|
|
3360
3339
|
.ant-btn-text:active {
|
|
3361
3340
|
color: #388ed3;
|
|
3362
|
-
background: transparent;
|
|
3363
3341
|
border-color: #388ed3;
|
|
3342
|
+
background: transparent;
|
|
3364
3343
|
}
|
|
3365
3344
|
.ant-btn-text:active > a:only-child {
|
|
3366
3345
|
color: currentColor;
|
|
@@ -3379,8 +3358,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3379
3358
|
.ant-btn-text[disabled]:focus,
|
|
3380
3359
|
.ant-btn-text[disabled]:active {
|
|
3381
3360
|
color: rgba(255, 255, 255, 0.3);
|
|
3382
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3383
3361
|
border-color: #434343;
|
|
3362
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3384
3363
|
text-shadow: none;
|
|
3385
3364
|
box-shadow: none;
|
|
3386
3365
|
}
|
|
@@ -3418,8 +3397,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3418
3397
|
.ant-btn-text[disabled]:focus,
|
|
3419
3398
|
.ant-btn-text[disabled]:active {
|
|
3420
3399
|
color: rgba(255, 255, 255, 0.3);
|
|
3421
|
-
background: transparent;
|
|
3422
3400
|
border-color: transparent;
|
|
3401
|
+
background: transparent;
|
|
3423
3402
|
text-shadow: none;
|
|
3424
3403
|
box-shadow: none;
|
|
3425
3404
|
}
|
|
@@ -3443,8 +3422,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3443
3422
|
}
|
|
3444
3423
|
.ant-btn-dangerous {
|
|
3445
3424
|
color: #a61d24;
|
|
3446
|
-
background: transparent;
|
|
3447
3425
|
border-color: #a61d24;
|
|
3426
|
+
background: transparent;
|
|
3448
3427
|
}
|
|
3449
3428
|
.ant-btn-dangerous > a:only-child {
|
|
3450
3429
|
color: currentColor;
|
|
@@ -3461,8 +3440,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3461
3440
|
.ant-btn-dangerous:hover,
|
|
3462
3441
|
.ant-btn-dangerous:focus {
|
|
3463
3442
|
color: #800f19;
|
|
3464
|
-
background: transparent;
|
|
3465
3443
|
border-color: #800f19;
|
|
3444
|
+
background: transparent;
|
|
3466
3445
|
}
|
|
3467
3446
|
.ant-btn-dangerous:hover > a:only-child,
|
|
3468
3447
|
.ant-btn-dangerous:focus > a:only-child {
|
|
@@ -3480,8 +3459,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3480
3459
|
}
|
|
3481
3460
|
.ant-btn-dangerous:active {
|
|
3482
3461
|
color: #b33b3d;
|
|
3483
|
-
background: transparent;
|
|
3484
3462
|
border-color: #b33b3d;
|
|
3463
|
+
background: transparent;
|
|
3485
3464
|
}
|
|
3486
3465
|
.ant-btn-dangerous:active > a:only-child {
|
|
3487
3466
|
color: currentColor;
|
|
@@ -3500,8 +3479,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3500
3479
|
.ant-btn-dangerous[disabled]:focus,
|
|
3501
3480
|
.ant-btn-dangerous[disabled]:active {
|
|
3502
3481
|
color: rgba(255, 255, 255, 0.3);
|
|
3503
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3504
3482
|
border-color: #434343;
|
|
3483
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3505
3484
|
text-shadow: none;
|
|
3506
3485
|
box-shadow: none;
|
|
3507
3486
|
}
|
|
@@ -3525,8 +3504,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3525
3504
|
}
|
|
3526
3505
|
.ant-btn-dangerous.ant-btn-primary {
|
|
3527
3506
|
color: #fff;
|
|
3528
|
-
background: #a61d24;
|
|
3529
3507
|
border-color: #a61d24;
|
|
3508
|
+
background: #a61d24;
|
|
3530
3509
|
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
|
|
3531
3510
|
box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
|
|
3532
3511
|
}
|
|
@@ -3545,8 +3524,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3545
3524
|
.ant-btn-dangerous.ant-btn-primary:hover,
|
|
3546
3525
|
.ant-btn-dangerous.ant-btn-primary:focus {
|
|
3547
3526
|
color: #fff;
|
|
3548
|
-
background: #800f19;
|
|
3549
3527
|
border-color: #800f19;
|
|
3528
|
+
background: #800f19;
|
|
3550
3529
|
}
|
|
3551
3530
|
.ant-btn-dangerous.ant-btn-primary:hover > a:only-child,
|
|
3552
3531
|
.ant-btn-dangerous.ant-btn-primary:focus > a:only-child {
|
|
@@ -3564,8 +3543,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3564
3543
|
}
|
|
3565
3544
|
.ant-btn-dangerous.ant-btn-primary:active {
|
|
3566
3545
|
color: #fff;
|
|
3567
|
-
background: #b33b3d;
|
|
3568
3546
|
border-color: #b33b3d;
|
|
3547
|
+
background: #b33b3d;
|
|
3569
3548
|
}
|
|
3570
3549
|
.ant-btn-dangerous.ant-btn-primary:active > a:only-child {
|
|
3571
3550
|
color: currentColor;
|
|
@@ -3584,8 +3563,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3584
3563
|
.ant-btn-dangerous.ant-btn-primary[disabled]:focus,
|
|
3585
3564
|
.ant-btn-dangerous.ant-btn-primary[disabled]:active {
|
|
3586
3565
|
color: rgba(255, 255, 255, 0.3);
|
|
3587
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3588
3566
|
border-color: #434343;
|
|
3567
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3589
3568
|
text-shadow: none;
|
|
3590
3569
|
box-shadow: none;
|
|
3591
3570
|
}
|
|
@@ -3609,8 +3588,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3609
3588
|
}
|
|
3610
3589
|
.ant-btn-dangerous.ant-btn-link {
|
|
3611
3590
|
color: #a61d24;
|
|
3612
|
-
background: transparent;
|
|
3613
3591
|
border-color: transparent;
|
|
3592
|
+
background: transparent;
|
|
3614
3593
|
box-shadow: none;
|
|
3615
3594
|
}
|
|
3616
3595
|
.ant-btn-dangerous.ant-btn-link > a:only-child {
|
|
@@ -3628,8 +3607,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3628
3607
|
.ant-btn-dangerous.ant-btn-link:hover,
|
|
3629
3608
|
.ant-btn-dangerous.ant-btn-link:focus {
|
|
3630
3609
|
color: #165996;
|
|
3631
|
-
background: transparent;
|
|
3632
3610
|
border-color: #165996;
|
|
3611
|
+
background: transparent;
|
|
3633
3612
|
}
|
|
3634
3613
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
3635
3614
|
.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
|
|
@@ -3647,8 +3626,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3647
3626
|
}
|
|
3648
3627
|
.ant-btn-dangerous.ant-btn-link:active {
|
|
3649
3628
|
color: #388ed3;
|
|
3650
|
-
background: transparent;
|
|
3651
3629
|
border-color: #388ed3;
|
|
3630
|
+
background: transparent;
|
|
3652
3631
|
}
|
|
3653
3632
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
3654
3633
|
color: currentColor;
|
|
@@ -3667,8 +3646,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3667
3646
|
.ant-btn-dangerous.ant-btn-link[disabled]:focus,
|
|
3668
3647
|
.ant-btn-dangerous.ant-btn-link[disabled]:active {
|
|
3669
3648
|
color: rgba(255, 255, 255, 0.3);
|
|
3670
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3671
3649
|
border-color: #434343;
|
|
3650
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3672
3651
|
text-shadow: none;
|
|
3673
3652
|
box-shadow: none;
|
|
3674
3653
|
}
|
|
@@ -3693,8 +3672,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3693
3672
|
.ant-btn-dangerous.ant-btn-link:hover,
|
|
3694
3673
|
.ant-btn-dangerous.ant-btn-link:focus {
|
|
3695
3674
|
color: #800f19;
|
|
3696
|
-
background: transparent;
|
|
3697
3675
|
border-color: transparent;
|
|
3676
|
+
background: transparent;
|
|
3698
3677
|
}
|
|
3699
3678
|
.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
3700
3679
|
.ant-btn-dangerous.ant-btn-link:focus > a:only-child {
|
|
@@ -3712,8 +3691,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3712
3691
|
}
|
|
3713
3692
|
.ant-btn-dangerous.ant-btn-link:active {
|
|
3714
3693
|
color: #b33b3d;
|
|
3715
|
-
background: transparent;
|
|
3716
3694
|
border-color: transparent;
|
|
3695
|
+
background: transparent;
|
|
3717
3696
|
}
|
|
3718
3697
|
.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
3719
3698
|
color: currentColor;
|
|
@@ -3732,8 +3711,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3732
3711
|
.ant-btn-dangerous.ant-btn-link[disabled]:focus,
|
|
3733
3712
|
.ant-btn-dangerous.ant-btn-link[disabled]:active {
|
|
3734
3713
|
color: rgba(255, 255, 255, 0.3);
|
|
3735
|
-
background: transparent;
|
|
3736
3714
|
border-color: transparent;
|
|
3715
|
+
background: transparent;
|
|
3737
3716
|
text-shadow: none;
|
|
3738
3717
|
box-shadow: none;
|
|
3739
3718
|
}
|
|
@@ -3757,8 +3736,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3757
3736
|
}
|
|
3758
3737
|
.ant-btn-dangerous.ant-btn-text {
|
|
3759
3738
|
color: #a61d24;
|
|
3760
|
-
background: transparent;
|
|
3761
3739
|
border-color: transparent;
|
|
3740
|
+
background: transparent;
|
|
3762
3741
|
box-shadow: none;
|
|
3763
3742
|
}
|
|
3764
3743
|
.ant-btn-dangerous.ant-btn-text > a:only-child {
|
|
@@ -3776,8 +3755,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3776
3755
|
.ant-btn-dangerous.ant-btn-text:hover,
|
|
3777
3756
|
.ant-btn-dangerous.ant-btn-text:focus {
|
|
3778
3757
|
color: #165996;
|
|
3779
|
-
background: transparent;
|
|
3780
3758
|
border-color: #165996;
|
|
3759
|
+
background: transparent;
|
|
3781
3760
|
}
|
|
3782
3761
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
|
|
3783
3762
|
.ant-btn-dangerous.ant-btn-text:focus > a:only-child {
|
|
@@ -3795,8 +3774,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3795
3774
|
}
|
|
3796
3775
|
.ant-btn-dangerous.ant-btn-text:active {
|
|
3797
3776
|
color: #388ed3;
|
|
3798
|
-
background: transparent;
|
|
3799
3777
|
border-color: #388ed3;
|
|
3778
|
+
background: transparent;
|
|
3800
3779
|
}
|
|
3801
3780
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
|
|
3802
3781
|
color: currentColor;
|
|
@@ -3815,8 +3794,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3815
3794
|
.ant-btn-dangerous.ant-btn-text[disabled]:focus,
|
|
3816
3795
|
.ant-btn-dangerous.ant-btn-text[disabled]:active {
|
|
3817
3796
|
color: rgba(255, 255, 255, 0.3);
|
|
3818
|
-
background: rgba(255, 255, 255, 0.08);
|
|
3819
3797
|
border-color: #434343;
|
|
3798
|
+
background: rgba(255, 255, 255, 0.08);
|
|
3820
3799
|
text-shadow: none;
|
|
3821
3800
|
box-shadow: none;
|
|
3822
3801
|
}
|
|
@@ -3841,8 +3820,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3841
3820
|
.ant-btn-dangerous.ant-btn-text:hover,
|
|
3842
3821
|
.ant-btn-dangerous.ant-btn-text:focus {
|
|
3843
3822
|
color: #800f19;
|
|
3844
|
-
background: rgba(255, 255, 255, 0.03);
|
|
3845
3823
|
border-color: transparent;
|
|
3824
|
+
background: rgba(255, 255, 255, 0.03);
|
|
3846
3825
|
}
|
|
3847
3826
|
.ant-btn-dangerous.ant-btn-text:hover > a:only-child,
|
|
3848
3827
|
.ant-btn-dangerous.ant-btn-text:focus > a:only-child {
|
|
@@ -3860,8 +3839,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3860
3839
|
}
|
|
3861
3840
|
.ant-btn-dangerous.ant-btn-text:active {
|
|
3862
3841
|
color: #b33b3d;
|
|
3863
|
-
background: rgba(255, 255, 255, 0.04);
|
|
3864
3842
|
border-color: transparent;
|
|
3843
|
+
background: rgba(255, 255, 255, 0.04);
|
|
3865
3844
|
}
|
|
3866
3845
|
.ant-btn-dangerous.ant-btn-text:active > a:only-child {
|
|
3867
3846
|
color: currentColor;
|
|
@@ -3880,8 +3859,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3880
3859
|
.ant-btn-dangerous.ant-btn-text[disabled]:focus,
|
|
3881
3860
|
.ant-btn-dangerous.ant-btn-text[disabled]:active {
|
|
3882
3861
|
color: rgba(255, 255, 255, 0.3);
|
|
3883
|
-
background: transparent;
|
|
3884
3862
|
border-color: transparent;
|
|
3863
|
+
background: transparent;
|
|
3885
3864
|
text-shadow: none;
|
|
3886
3865
|
box-shadow: none;
|
|
3887
3866
|
}
|
|
@@ -3909,7 +3888,7 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3909
3888
|
padding: 2.4px 0;
|
|
3910
3889
|
font-size: 16px;
|
|
3911
3890
|
border-radius: 2px;
|
|
3912
|
-
vertical-align: -
|
|
3891
|
+
vertical-align: -3px;
|
|
3913
3892
|
}
|
|
3914
3893
|
.ant-btn-icon-only > * {
|
|
3915
3894
|
font-size: 16px;
|
|
@@ -3934,6 +3913,16 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3934
3913
|
.ant-btn-icon-only.ant-btn-sm > * {
|
|
3935
3914
|
font-size: 14px;
|
|
3936
3915
|
}
|
|
3916
|
+
.ant-btn-icon-only > .anticon {
|
|
3917
|
+
display: flex;
|
|
3918
|
+
justify-content: center;
|
|
3919
|
+
}
|
|
3920
|
+
a.ant-btn-icon-only {
|
|
3921
|
+
vertical-align: -1px;
|
|
3922
|
+
}
|
|
3923
|
+
a.ant-btn-icon-only > .anticon {
|
|
3924
|
+
display: inline;
|
|
3925
|
+
}
|
|
3937
3926
|
.ant-btn-round {
|
|
3938
3927
|
height: 32px;
|
|
3939
3928
|
padding: 4px 16px;
|
|
@@ -3994,15 +3983,13 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
3994
3983
|
}
|
|
3995
3984
|
.ant-btn.ant-btn-loading {
|
|
3996
3985
|
position: relative;
|
|
3997
|
-
|
|
3998
|
-
.ant-btn.ant-btn-loading:not([disabled]) {
|
|
3999
|
-
pointer-events: none;
|
|
3986
|
+
cursor: default;
|
|
4000
3987
|
}
|
|
4001
3988
|
.ant-btn.ant-btn-loading::before {
|
|
4002
3989
|
display: block;
|
|
4003
3990
|
}
|
|
4004
3991
|
.ant-btn > .ant-btn-loading-icon {
|
|
4005
|
-
transition:
|
|
3992
|
+
transition: width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
4006
3993
|
}
|
|
4007
3994
|
.ant-btn > .ant-btn-loading-icon .anticon {
|
|
4008
3995
|
padding-right: 8px;
|
|
@@ -4156,31 +4143,19 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4156
4143
|
}
|
|
4157
4144
|
.ant-btn-group-rtl.ant-btn-group > .ant-btn:first-child:not(:last-child),
|
|
4158
4145
|
.ant-btn-group-rtl.ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
|
|
4159
|
-
border-
|
|
4160
|
-
border-top-right-radius: 2px;
|
|
4161
|
-
border-bottom-right-radius: 2px;
|
|
4162
|
-
border-bottom-left-radius: 0;
|
|
4146
|
+
border-radius: 0 2px 2px 0;
|
|
4163
4147
|
}
|
|
4164
4148
|
.ant-btn-group-rtl.ant-btn-group > .ant-btn:last-child:not(:first-child),
|
|
4165
4149
|
.ant-btn-group-rtl.ant-btn-group > span:last-child:not(:first-child) > .ant-btn {
|
|
4166
|
-
border-
|
|
4167
|
-
border-top-right-radius: 0;
|
|
4168
|
-
border-bottom-right-radius: 0;
|
|
4169
|
-
border-bottom-left-radius: 2px;
|
|
4150
|
+
border-radius: 2px 0 0 2px;
|
|
4170
4151
|
}
|
|
4171
4152
|
.ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:first-child:not(:last-child),
|
|
4172
4153
|
.ant-btn-group-rtl.ant-btn-group-sm > span:first-child:not(:last-child) > .ant-btn {
|
|
4173
|
-
border-
|
|
4174
|
-
border-top-right-radius: 2px;
|
|
4175
|
-
border-bottom-right-radius: 2px;
|
|
4176
|
-
border-bottom-left-radius: 0;
|
|
4154
|
+
border-radius: 0 2px 2px 0;
|
|
4177
4155
|
}
|
|
4178
4156
|
.ant-btn-group-rtl.ant-btn-group-sm > .ant-btn:last-child:not(:first-child),
|
|
4179
4157
|
.ant-btn-group-rtl.ant-btn-group-sm > span:last-child:not(:first-child) > .ant-btn {
|
|
4180
|
-
border-
|
|
4181
|
-
border-top-right-radius: 0;
|
|
4182
|
-
border-bottom-right-radius: 0;
|
|
4183
|
-
border-bottom-left-radius: 2px;
|
|
4158
|
+
border-radius: 2px 0 0 2px;
|
|
4184
4159
|
}
|
|
4185
4160
|
.ant-btn:focus > span,
|
|
4186
4161
|
.ant-btn:active > span {
|
|
@@ -4190,14 +4165,32 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4190
4165
|
.ant-btn > span + .anticon {
|
|
4191
4166
|
margin-left: 8px;
|
|
4192
4167
|
}
|
|
4193
|
-
.ant-btn-background-ghost {
|
|
4168
|
+
.ant-btn.ant-btn-background-ghost {
|
|
4194
4169
|
color: rgba(255, 255, 255, 0.85);
|
|
4195
|
-
background: transparent !important;
|
|
4196
4170
|
border-color: rgba(255, 255, 255, 0.25);
|
|
4197
4171
|
}
|
|
4172
|
+
.ant-btn.ant-btn-background-ghost,
|
|
4173
|
+
.ant-btn.ant-btn-background-ghost:hover,
|
|
4174
|
+
.ant-btn.ant-btn-background-ghost:active,
|
|
4175
|
+
.ant-btn.ant-btn-background-ghost:focus {
|
|
4176
|
+
background: transparent;
|
|
4177
|
+
}
|
|
4178
|
+
.ant-btn.ant-btn-background-ghost:hover,
|
|
4179
|
+
.ant-btn.ant-btn-background-ghost:focus {
|
|
4180
|
+
color: #3c9be8;
|
|
4181
|
+
border-color: #3c9be8;
|
|
4182
|
+
}
|
|
4183
|
+
.ant-btn.ant-btn-background-ghost:active {
|
|
4184
|
+
color: #095cb5;
|
|
4185
|
+
border-color: #095cb5;
|
|
4186
|
+
}
|
|
4187
|
+
.ant-btn.ant-btn-background-ghost[disabled] {
|
|
4188
|
+
color: rgba(255, 255, 255, 0.3);
|
|
4189
|
+
background: transparent;
|
|
4190
|
+
border-color: #434343;
|
|
4191
|
+
}
|
|
4198
4192
|
.ant-btn-background-ghost.ant-btn-primary {
|
|
4199
4193
|
color: #177ddc;
|
|
4200
|
-
background: transparent;
|
|
4201
4194
|
border-color: #177ddc;
|
|
4202
4195
|
text-shadow: none;
|
|
4203
4196
|
}
|
|
@@ -4216,7 +4209,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4216
4209
|
.ant-btn-background-ghost.ant-btn-primary:hover,
|
|
4217
4210
|
.ant-btn-background-ghost.ant-btn-primary:focus {
|
|
4218
4211
|
color: #095cb5;
|
|
4219
|
-
background: transparent;
|
|
4220
4212
|
border-color: #095cb5;
|
|
4221
4213
|
}
|
|
4222
4214
|
.ant-btn-background-ghost.ant-btn-primary:hover > a:only-child,
|
|
@@ -4235,7 +4227,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4235
4227
|
}
|
|
4236
4228
|
.ant-btn-background-ghost.ant-btn-primary:active {
|
|
4237
4229
|
color: #3c9be8;
|
|
4238
|
-
background: transparent;
|
|
4239
4230
|
border-color: #3c9be8;
|
|
4240
4231
|
}
|
|
4241
4232
|
.ant-btn-background-ghost.ant-btn-primary:active > a:only-child {
|
|
@@ -4255,8 +4246,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4255
4246
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:focus,
|
|
4256
4247
|
.ant-btn-background-ghost.ant-btn-primary[disabled]:active {
|
|
4257
4248
|
color: rgba(255, 255, 255, 0.3);
|
|
4258
|
-
background: rgba(255, 255, 255, 0.08);
|
|
4259
4249
|
border-color: #434343;
|
|
4250
|
+
background: rgba(255, 255, 255, 0.08);
|
|
4260
4251
|
text-shadow: none;
|
|
4261
4252
|
box-shadow: none;
|
|
4262
4253
|
}
|
|
@@ -4280,7 +4271,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4280
4271
|
}
|
|
4281
4272
|
.ant-btn-background-ghost.ant-btn-danger {
|
|
4282
4273
|
color: #a61d24;
|
|
4283
|
-
background: transparent;
|
|
4284
4274
|
border-color: #a61d24;
|
|
4285
4275
|
text-shadow: none;
|
|
4286
4276
|
}
|
|
@@ -4299,7 +4289,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4299
4289
|
.ant-btn-background-ghost.ant-btn-danger:hover,
|
|
4300
4290
|
.ant-btn-background-ghost.ant-btn-danger:focus {
|
|
4301
4291
|
color: #800f19;
|
|
4302
|
-
background: transparent;
|
|
4303
4292
|
border-color: #800f19;
|
|
4304
4293
|
}
|
|
4305
4294
|
.ant-btn-background-ghost.ant-btn-danger:hover > a:only-child,
|
|
@@ -4318,7 +4307,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4318
4307
|
}
|
|
4319
4308
|
.ant-btn-background-ghost.ant-btn-danger:active {
|
|
4320
4309
|
color: #b33b3d;
|
|
4321
|
-
background: transparent;
|
|
4322
4310
|
border-color: #b33b3d;
|
|
4323
4311
|
}
|
|
4324
4312
|
.ant-btn-background-ghost.ant-btn-danger:active > a:only-child {
|
|
@@ -4338,8 +4326,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4338
4326
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:focus,
|
|
4339
4327
|
.ant-btn-background-ghost.ant-btn-danger[disabled]:active {
|
|
4340
4328
|
color: rgba(255, 255, 255, 0.3);
|
|
4341
|
-
background: rgba(255, 255, 255, 0.08);
|
|
4342
4329
|
border-color: #434343;
|
|
4330
|
+
background: rgba(255, 255, 255, 0.08);
|
|
4343
4331
|
text-shadow: none;
|
|
4344
4332
|
box-shadow: none;
|
|
4345
4333
|
}
|
|
@@ -4363,7 +4351,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4363
4351
|
}
|
|
4364
4352
|
.ant-btn-background-ghost.ant-btn-dangerous {
|
|
4365
4353
|
color: #a61d24;
|
|
4366
|
-
background: transparent;
|
|
4367
4354
|
border-color: #a61d24;
|
|
4368
4355
|
text-shadow: none;
|
|
4369
4356
|
}
|
|
@@ -4382,7 +4369,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4382
4369
|
.ant-btn-background-ghost.ant-btn-dangerous:hover,
|
|
4383
4370
|
.ant-btn-background-ghost.ant-btn-dangerous:focus {
|
|
4384
4371
|
color: #800f19;
|
|
4385
|
-
background: transparent;
|
|
4386
4372
|
border-color: #800f19;
|
|
4387
4373
|
}
|
|
4388
4374
|
.ant-btn-background-ghost.ant-btn-dangerous:hover > a:only-child,
|
|
@@ -4401,7 +4387,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4401
4387
|
}
|
|
4402
4388
|
.ant-btn-background-ghost.ant-btn-dangerous:active {
|
|
4403
4389
|
color: #b33b3d;
|
|
4404
|
-
background: transparent;
|
|
4405
4390
|
border-color: #b33b3d;
|
|
4406
4391
|
}
|
|
4407
4392
|
.ant-btn-background-ghost.ant-btn-dangerous:active > a:only-child {
|
|
@@ -4421,8 +4406,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4421
4406
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:focus,
|
|
4422
4407
|
.ant-btn-background-ghost.ant-btn-dangerous[disabled]:active {
|
|
4423
4408
|
color: rgba(255, 255, 255, 0.3);
|
|
4424
|
-
background: rgba(255, 255, 255, 0.08);
|
|
4425
4409
|
border-color: #434343;
|
|
4410
|
+
background: rgba(255, 255, 255, 0.08);
|
|
4426
4411
|
text-shadow: none;
|
|
4427
4412
|
box-shadow: none;
|
|
4428
4413
|
}
|
|
@@ -4446,7 +4431,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4446
4431
|
}
|
|
4447
4432
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link {
|
|
4448
4433
|
color: #a61d24;
|
|
4449
|
-
background: transparent;
|
|
4450
4434
|
border-color: transparent;
|
|
4451
4435
|
text-shadow: none;
|
|
4452
4436
|
}
|
|
@@ -4465,7 +4449,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4465
4449
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover,
|
|
4466
4450
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:focus {
|
|
4467
4451
|
color: #800f19;
|
|
4468
|
-
background: transparent;
|
|
4469
4452
|
border-color: transparent;
|
|
4470
4453
|
}
|
|
4471
4454
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:hover > a:only-child,
|
|
@@ -4484,7 +4467,6 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4484
4467
|
}
|
|
4485
4468
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active {
|
|
4486
4469
|
color: #b33b3d;
|
|
4487
|
-
background: transparent;
|
|
4488
4470
|
border-color: transparent;
|
|
4489
4471
|
}
|
|
4490
4472
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link:active > a:only-child {
|
|
@@ -4504,8 +4486,8 @@ nz-breadcrumb-item:last-child .ant-breadcrumb-separator {
|
|
|
4504
4486
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:focus,
|
|
4505
4487
|
.ant-btn-background-ghost.ant-btn-dangerous.ant-btn-link[disabled]:active {
|
|
4506
4488
|
color: rgba(255, 255, 255, 0.3);
|
|
4507
|
-
background: rgba(255, 255, 255, 0.08);
|
|
4508
4489
|
border-color: #434343;
|
|
4490
|
+
background: rgba(255, 255, 255, 0.08);
|
|
4509
4491
|
text-shadow: none;
|
|
4510
4492
|
box-shadow: none;
|
|
4511
4493
|
}
|
|
@@ -4672,14 +4654,14 @@ a.ant-btn-sm {
|
|
|
4672
4654
|
margin-top: 0;
|
|
4673
4655
|
margin-bottom: 0;
|
|
4674
4656
|
}
|
|
4675
|
-
.ant-card-head .ant-tabs {
|
|
4657
|
+
.ant-card-head .ant-tabs-top {
|
|
4676
4658
|
clear: both;
|
|
4677
4659
|
margin-bottom: -17px;
|
|
4678
4660
|
color: rgba(255, 255, 255, 0.85);
|
|
4679
4661
|
font-weight: normal;
|
|
4680
4662
|
font-size: 14px;
|
|
4681
4663
|
}
|
|
4682
|
-
.ant-card-head .ant-tabs-bar {
|
|
4664
|
+
.ant-card-head .ant-tabs-top-bar {
|
|
4683
4665
|
border-bottom: 1px solid #303030;
|
|
4684
4666
|
}
|
|
4685
4667
|
.ant-card-extra {
|
|
@@ -5007,7 +4989,6 @@ nz-card-loading {
|
|
|
5007
4989
|
position: relative;
|
|
5008
4990
|
display: block;
|
|
5009
4991
|
box-sizing: border-box;
|
|
5010
|
-
-ms-touch-action: pan-y;
|
|
5011
4992
|
touch-action: pan-y;
|
|
5012
4993
|
-webkit-touch-callout: none;
|
|
5013
4994
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -5349,7 +5330,7 @@ nz-carousel {
|
|
|
5349
5330
|
.ant-checkbox-inner::after {
|
|
5350
5331
|
position: absolute;
|
|
5351
5332
|
top: 50%;
|
|
5352
|
-
left:
|
|
5333
|
+
left: 21.5%;
|
|
5353
5334
|
display: table;
|
|
5354
5335
|
width: 5.71428571px;
|
|
5355
5336
|
height: 9.14285714px;
|
|
@@ -5526,48 +5507,15 @@ nz-carousel {
|
|
|
5526
5507
|
}
|
|
5527
5508
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
|
|
5528
5509
|
position: relative;
|
|
5510
|
+
display: flex;
|
|
5511
|
+
flex-wrap: nowrap;
|
|
5512
|
+
align-items: flex-start;
|
|
5529
5513
|
padding: 12px 16px;
|
|
5530
5514
|
color: rgba(255, 255, 255, 0.85);
|
|
5531
5515
|
line-height: 1.5715;
|
|
5532
5516
|
cursor: pointer;
|
|
5533
5517
|
transition: all 0.3s, visibility 0s;
|
|
5534
5518
|
}
|
|
5535
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::before {
|
|
5536
|
-
display: table;
|
|
5537
|
-
content: '';
|
|
5538
|
-
}
|
|
5539
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::after {
|
|
5540
|
-
display: table;
|
|
5541
|
-
clear: both;
|
|
5542
|
-
content: '';
|
|
5543
|
-
}
|
|
5544
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::before {
|
|
5545
|
-
display: table;
|
|
5546
|
-
content: '';
|
|
5547
|
-
}
|
|
5548
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::after {
|
|
5549
|
-
display: table;
|
|
5550
|
-
clear: both;
|
|
5551
|
-
content: '';
|
|
5552
|
-
}
|
|
5553
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::before {
|
|
5554
|
-
display: table;
|
|
5555
|
-
content: '';
|
|
5556
|
-
}
|
|
5557
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::after {
|
|
5558
|
-
display: table;
|
|
5559
|
-
clear: both;
|
|
5560
|
-
content: '';
|
|
5561
|
-
}
|
|
5562
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::before {
|
|
5563
|
-
display: table;
|
|
5564
|
-
content: '';
|
|
5565
|
-
}
|
|
5566
|
-
.ant-collapse > .ant-collapse-item > .ant-collapse-header::after {
|
|
5567
|
-
display: table;
|
|
5568
|
-
clear: both;
|
|
5569
|
-
content: '';
|
|
5570
|
-
}
|
|
5571
5519
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
|
|
5572
5520
|
display: inline-block;
|
|
5573
5521
|
margin-right: 12px;
|
|
@@ -5578,7 +5526,7 @@ nz-carousel {
|
|
|
5578
5526
|
transition: transform 0.24s;
|
|
5579
5527
|
}
|
|
5580
5528
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
|
|
5581
|
-
|
|
5529
|
+
margin-left: auto;
|
|
5582
5530
|
}
|
|
5583
5531
|
.ant-collapse > .ant-collapse-item > .ant-collapse-header:focus {
|
|
5584
5532
|
outline: none;
|
|
@@ -5593,6 +5541,7 @@ nz-carousel {
|
|
|
5593
5541
|
padding-left: 12px;
|
|
5594
5542
|
}
|
|
5595
5543
|
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
|
|
5544
|
+
position: relative;
|
|
5596
5545
|
padding: 12px 16px;
|
|
5597
5546
|
padding-right: 40px;
|
|
5598
5547
|
}
|
|
@@ -5663,11 +5612,16 @@ nz-carousel {
|
|
|
5663
5612
|
padding: 12px 16px;
|
|
5664
5613
|
padding-right: 40px;
|
|
5665
5614
|
}
|
|
5615
|
+
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
|
|
5616
|
+
margin-right: 0;
|
|
5617
|
+
margin-left: 12px;
|
|
5618
|
+
}
|
|
5666
5619
|
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
|
|
5667
5620
|
transform: rotate(180deg);
|
|
5668
5621
|
}
|
|
5669
5622
|
.ant-collapse-rtl.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
|
|
5670
|
-
|
|
5623
|
+
margin-right: auto;
|
|
5624
|
+
margin-left: 0;
|
|
5671
5625
|
}
|
|
5672
5626
|
.ant-collapse-rtl.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
|
|
5673
5627
|
padding-right: 12px;
|
|
@@ -5821,9 +5775,9 @@ nz-comment-content {
|
|
|
5821
5775
|
}
|
|
5822
5776
|
.ant-picker-focused {
|
|
5823
5777
|
border-color: #177ddc;
|
|
5778
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
5824
5779
|
border-right-width: 1px !important;
|
|
5825
5780
|
outline: 0;
|
|
5826
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
5827
5781
|
}
|
|
5828
5782
|
.ant-input-rtl .ant-picker-focused {
|
|
5829
5783
|
border-right-width: 0;
|
|
@@ -5862,6 +5816,8 @@ nz-comment-content {
|
|
|
5862
5816
|
border: 1px solid #434343;
|
|
5863
5817
|
border-radius: 2px;
|
|
5864
5818
|
transition: all 0.3s;
|
|
5819
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
5820
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
5865
5821
|
flex: auto;
|
|
5866
5822
|
min-width: 1px;
|
|
5867
5823
|
height: auto;
|
|
@@ -5874,6 +5830,7 @@ nz-comment-content {
|
|
|
5874
5830
|
}
|
|
5875
5831
|
.ant-picker-input > input::placeholder {
|
|
5876
5832
|
color: rgba(255, 255, 255, 0.3);
|
|
5833
|
+
user-select: none;
|
|
5877
5834
|
}
|
|
5878
5835
|
.ant-picker-input > input:placeholder-shown {
|
|
5879
5836
|
text-overflow: ellipsis;
|
|
@@ -5883,6 +5840,7 @@ nz-comment-content {
|
|
|
5883
5840
|
}
|
|
5884
5841
|
.ant-picker-input > input::placeholder {
|
|
5885
5842
|
color: rgba(255, 255, 255, 0.3);
|
|
5843
|
+
user-select: none;
|
|
5886
5844
|
}
|
|
5887
5845
|
.ant-picker-input > input:placeholder-shown {
|
|
5888
5846
|
text-overflow: ellipsis;
|
|
@@ -5898,9 +5856,9 @@ nz-comment-content {
|
|
|
5898
5856
|
.ant-picker-input > input:focus,
|
|
5899
5857
|
.ant-picker-input > input-focused {
|
|
5900
5858
|
border-color: #177ddc;
|
|
5859
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
5901
5860
|
border-right-width: 1px !important;
|
|
5902
5861
|
outline: 0;
|
|
5903
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
5904
5862
|
}
|
|
5905
5863
|
.ant-input-rtl .ant-picker-input > input:focus,
|
|
5906
5864
|
.ant-input-rtl .ant-picker-input > input-focused {
|
|
@@ -5909,6 +5867,8 @@ nz-comment-content {
|
|
|
5909
5867
|
}
|
|
5910
5868
|
.ant-picker-input > input-disabled {
|
|
5911
5869
|
background-color: rgba(255, 255, 255, 0.08);
|
|
5870
|
+
border-color: #434343;
|
|
5871
|
+
box-shadow: none;
|
|
5912
5872
|
cursor: not-allowed;
|
|
5913
5873
|
opacity: 1;
|
|
5914
5874
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -5920,6 +5880,8 @@ nz-comment-content {
|
|
|
5920
5880
|
}
|
|
5921
5881
|
.ant-picker-input > input[disabled] {
|
|
5922
5882
|
background-color: rgba(255, 255, 255, 0.08);
|
|
5883
|
+
border-color: #434343;
|
|
5884
|
+
box-shadow: none;
|
|
5923
5885
|
cursor: not-allowed;
|
|
5924
5886
|
opacity: 1;
|
|
5925
5887
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -6173,6 +6135,10 @@ textarea.ant-picker-input > input {
|
|
|
6173
6135
|
border-width: 0 0 1px 0;
|
|
6174
6136
|
border-radius: 0;
|
|
6175
6137
|
}
|
|
6138
|
+
.ant-picker-panel-container .ant-picker-panel .ant-picker-content,
|
|
6139
|
+
.ant-picker-panel-container .ant-picker-panel table {
|
|
6140
|
+
text-align: center;
|
|
6141
|
+
}
|
|
6176
6142
|
.ant-picker-panel-container .ant-picker-panel-focused {
|
|
6177
6143
|
border-color: #303030;
|
|
6178
6144
|
}
|
|
@@ -6306,9 +6272,6 @@ textarea.ant-picker-input > input {
|
|
|
6306
6272
|
.ant-picker-cell-in-view {
|
|
6307
6273
|
color: rgba(255, 255, 255, 0.85);
|
|
6308
6274
|
}
|
|
6309
|
-
.ant-picker-cell-disabled {
|
|
6310
|
-
cursor: not-allowed;
|
|
6311
|
-
}
|
|
6312
6275
|
.ant-picker-cell::before {
|
|
6313
6276
|
position: absolute;
|
|
6314
6277
|
top: 50%;
|
|
@@ -6317,6 +6280,7 @@ textarea.ant-picker-input > input {
|
|
|
6317
6280
|
z-index: 1;
|
|
6318
6281
|
height: 24px;
|
|
6319
6282
|
transform: translateY(-50%);
|
|
6283
|
+
transition: all 0.3s;
|
|
6320
6284
|
content: '';
|
|
6321
6285
|
}
|
|
6322
6286
|
.ant-picker-cell .ant-picker-cell-inner {
|
|
@@ -6380,6 +6344,7 @@ textarea.ant-picker-input > input {
|
|
|
6380
6344
|
border-top: 1px dashed #0e4980;
|
|
6381
6345
|
border-bottom: 1px dashed #0e4980;
|
|
6382
6346
|
transform: translateY(-50%);
|
|
6347
|
+
transition: all 0.3s;
|
|
6383
6348
|
content: '';
|
|
6384
6349
|
}
|
|
6385
6350
|
.ant-picker-cell-range-hover-start::after,
|
|
@@ -6410,6 +6375,7 @@ textarea.ant-picker-input > input {
|
|
|
6410
6375
|
bottom: 0;
|
|
6411
6376
|
z-index: -1;
|
|
6412
6377
|
background: #06213a;
|
|
6378
|
+
transition: all 0.3s;
|
|
6413
6379
|
content: '';
|
|
6414
6380
|
}
|
|
6415
6381
|
.ant-picker-date-panel .ant-picker-cell-in-view.ant-picker-cell-in-range.ant-picker-cell-range-hover-start .ant-picker-cell-inner::after {
|
|
@@ -6447,10 +6413,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|
|
6447
6413
|
border-bottom-right-radius: 2px;
|
|
6448
6414
|
}
|
|
6449
6415
|
.ant-picker-cell-disabled {
|
|
6416
|
+
color: rgba(255, 255, 255, 0.3);
|
|
6450
6417
|
pointer-events: none;
|
|
6451
6418
|
}
|
|
6452
6419
|
.ant-picker-cell-disabled .ant-picker-cell-inner {
|
|
6453
|
-
color: rgba(255, 255, 255, 0.3);
|
|
6454
6420
|
background: transparent;
|
|
6455
6421
|
}
|
|
6456
6422
|
.ant-picker-cell-disabled::before {
|
|
@@ -6471,12 +6437,6 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|
|
6471
6437
|
.ant-picker-month-panel .ant-picker-cell-inner {
|
|
6472
6438
|
padding: 0 8px;
|
|
6473
6439
|
}
|
|
6474
|
-
.ant-picker-decade-panel .ant-picker-cell-disabled .ant-picker-cell-inner,
|
|
6475
|
-
.ant-picker-year-panel .ant-picker-cell-disabled .ant-picker-cell-inner,
|
|
6476
|
-
.ant-picker-quarter-panel .ant-picker-cell-disabled .ant-picker-cell-inner,
|
|
6477
|
-
.ant-picker-month-panel .ant-picker-cell-disabled .ant-picker-cell-inner {
|
|
6478
|
-
background: #303030;
|
|
6479
|
-
}
|
|
6480
6440
|
.ant-picker-quarter-panel .ant-picker-content {
|
|
6481
6441
|
height: 56px;
|
|
6482
6442
|
}
|
|
@@ -6678,7 +6638,7 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
|
|
|
6678
6638
|
background: transparent;
|
|
6679
6639
|
cursor: not-allowed;
|
|
6680
6640
|
}
|
|
6681
|
-
/* stylelint-disable-next-line */
|
|
6641
|
+
/* stylelint-disable-next-line selector-type-no-unknown,selector-no-vendor-prefix */
|
|
6682
6642
|
_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
|
|
6683
6643
|
:root .ant-picker-range-wrapper .ant-picker-month-panel .ant-picker-cell,
|
|
6684
6644
|
_:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-cell,
|
|
@@ -6785,10 +6745,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6785
6745
|
left: 0;
|
|
6786
6746
|
border-right: 1px dashed #0e4980;
|
|
6787
6747
|
border-left: none;
|
|
6788
|
-
border-
|
|
6789
|
-
border-top-right-radius: 2px;
|
|
6790
|
-
border-bottom-right-radius: 2px;
|
|
6791
|
-
border-bottom-left-radius: 0;
|
|
6748
|
+
border-radius: 0 2px 2px 0;
|
|
6792
6749
|
}
|
|
6793
6750
|
.ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover:not(.ant-picker-cell-selected):last-child::after,
|
|
6794
6751
|
.ant-picker-panel-rtl .ant-picker-cell-in-view.ant-picker-cell-end.ant-picker-cell-range-hover-edge-end.ant-picker-cell-range-hover-edge-end-near-range::after,
|
|
@@ -6798,10 +6755,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6798
6755
|
left: 6px;
|
|
6799
6756
|
border-right: none;
|
|
6800
6757
|
border-left: 1px dashed #0e4980;
|
|
6801
|
-
border-
|
|
6802
|
-
border-top-right-radius: 0;
|
|
6803
|
-
border-bottom-right-radius: 0;
|
|
6804
|
-
border-bottom-left-radius: 2px;
|
|
6758
|
+
border-radius: 2px 0 0 2px;
|
|
6805
6759
|
}
|
|
6806
6760
|
.ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::after,
|
|
6807
6761
|
.ant-picker-panel-rtl tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-end:first-child::after,
|
|
@@ -6920,6 +6874,7 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6920
6874
|
}
|
|
6921
6875
|
.ant-descriptions-bordered .ant-descriptions-view > table {
|
|
6922
6876
|
table-layout: auto;
|
|
6877
|
+
border-collapse: collapse;
|
|
6923
6878
|
}
|
|
6924
6879
|
.ant-descriptions-bordered .ant-descriptions-item-label,
|
|
6925
6880
|
.ant-descriptions-bordered .ant-descriptions-item-content {
|
|
@@ -7080,15 +7035,13 @@ nz-descriptions {
|
|
|
7080
7035
|
z-index: 1000;
|
|
7081
7036
|
width: 0%;
|
|
7082
7037
|
height: 100%;
|
|
7083
|
-
transition:
|
|
7084
|
-
}
|
|
7085
|
-
.ant-drawer > * {
|
|
7086
|
-
transition: transform 0.3s cubic-bezier(0.7, 0.3, 0.1, 1), box-shadow 0.3s cubic-bezier(0.7, 0.3, 0.1, 1);
|
|
7038
|
+
transition: width 0s ease 0.3s, height 0s ease 0.3s;
|
|
7087
7039
|
}
|
|
7088
7040
|
.ant-drawer-content-wrapper {
|
|
7089
7041
|
position: absolute;
|
|
7090
7042
|
width: 100%;
|
|
7091
7043
|
height: 100%;
|
|
7044
|
+
transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7092
7045
|
}
|
|
7093
7046
|
.ant-drawer .ant-drawer-content {
|
|
7094
7047
|
width: 100%;
|
|
@@ -7107,7 +7060,7 @@ nz-descriptions {
|
|
|
7107
7060
|
.ant-drawer-left.ant-drawer-open,
|
|
7108
7061
|
.ant-drawer-right.ant-drawer-open {
|
|
7109
7062
|
width: 100%;
|
|
7110
|
-
transition: transform 0.3s cubic-bezier(0.
|
|
7063
|
+
transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7111
7064
|
}
|
|
7112
7065
|
.ant-drawer-left {
|
|
7113
7066
|
left: 0;
|
|
@@ -7144,7 +7097,7 @@ nz-descriptions {
|
|
|
7144
7097
|
.ant-drawer-top.ant-drawer-open,
|
|
7145
7098
|
.ant-drawer-bottom.ant-drawer-open {
|
|
7146
7099
|
height: 100%;
|
|
7147
|
-
transition: transform 0.3s cubic-bezier(0.
|
|
7100
|
+
transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7148
7101
|
}
|
|
7149
7102
|
.ant-drawer-top {
|
|
7150
7103
|
top: 0;
|
|
@@ -7169,10 +7122,11 @@ nz-descriptions {
|
|
|
7169
7122
|
height: 100%;
|
|
7170
7123
|
opacity: 1;
|
|
7171
7124
|
transition: none;
|
|
7172
|
-
animation: antdDrawerFadeIn 0.3s cubic-bezier(0.
|
|
7125
|
+
animation: antdDrawerFadeIn 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
7173
7126
|
pointer-events: auto;
|
|
7174
7127
|
}
|
|
7175
7128
|
.ant-drawer-title {
|
|
7129
|
+
flex: 1;
|
|
7176
7130
|
margin: 0;
|
|
7177
7131
|
color: rgba(255, 255, 255, 0.85);
|
|
7178
7132
|
font-weight: 500;
|
|
@@ -7188,12 +7142,8 @@ nz-descriptions {
|
|
|
7188
7142
|
border: 0;
|
|
7189
7143
|
}
|
|
7190
7144
|
.ant-drawer-close {
|
|
7191
|
-
|
|
7192
|
-
|
|
7193
|
-
right: 0;
|
|
7194
|
-
z-index: 10;
|
|
7195
|
-
display: block;
|
|
7196
|
-
padding: 20px;
|
|
7145
|
+
display: inline-block;
|
|
7146
|
+
margin-right: 12px;
|
|
7197
7147
|
color: rgba(255, 255, 255, 0.45);
|
|
7198
7148
|
font-weight: 700;
|
|
7199
7149
|
font-size: 16px;
|
|
@@ -7214,27 +7164,30 @@ nz-descriptions {
|
|
|
7214
7164
|
color: rgba(255, 255, 255, 0.75);
|
|
7215
7165
|
text-decoration: none;
|
|
7216
7166
|
}
|
|
7217
|
-
.ant-drawer-header-no-title .ant-drawer-close {
|
|
7218
|
-
margin-right: var(--scroll-bar);
|
|
7219
|
-
/* stylelint-disable-next-line function-calc-no-invalid */
|
|
7220
|
-
padding-right: calc(20px - var(--scroll-bar));
|
|
7221
|
-
}
|
|
7222
7167
|
.ant-drawer-header {
|
|
7223
7168
|
position: relative;
|
|
7169
|
+
display: flex;
|
|
7170
|
+
align-items: center;
|
|
7171
|
+
justify-content: space-between;
|
|
7224
7172
|
padding: 16px 24px;
|
|
7225
7173
|
color: rgba(255, 255, 255, 0.85);
|
|
7226
7174
|
background: #1f1f1f;
|
|
7227
7175
|
border-bottom: 1px solid #303030;
|
|
7228
7176
|
border-radius: 2px 2px 0 0;
|
|
7229
7177
|
}
|
|
7230
|
-
.ant-drawer-header-
|
|
7231
|
-
|
|
7232
|
-
|
|
7178
|
+
.ant-drawer-header-title {
|
|
7179
|
+
display: flex;
|
|
7180
|
+
flex: 1;
|
|
7181
|
+
align-items: center;
|
|
7182
|
+
justify-content: space-between;
|
|
7183
|
+
}
|
|
7184
|
+
.ant-drawer-header-close-only {
|
|
7185
|
+
padding-bottom: 0;
|
|
7186
|
+
border: none;
|
|
7233
7187
|
}
|
|
7234
7188
|
.ant-drawer-wrapper-body {
|
|
7235
7189
|
display: flex;
|
|
7236
|
-
flex-
|
|
7237
|
-
flex-wrap: nowrap;
|
|
7190
|
+
flex-flow: column nowrap;
|
|
7238
7191
|
width: 100%;
|
|
7239
7192
|
height: 100%;
|
|
7240
7193
|
}
|
|
@@ -7259,13 +7212,9 @@ nz-descriptions {
|
|
|
7259
7212
|
height: 0;
|
|
7260
7213
|
background-color: rgba(0, 0, 0, 0.45);
|
|
7261
7214
|
opacity: 0;
|
|
7262
|
-
filter: alpha(opacity=45);
|
|
7263
7215
|
transition: opacity 0.3s linear, height 0s ease 0.3s;
|
|
7264
7216
|
pointer-events: none;
|
|
7265
7217
|
}
|
|
7266
|
-
.ant-drawer-open-content {
|
|
7267
|
-
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);
|
|
7268
|
-
}
|
|
7269
7218
|
.ant-drawer .ant-picker-clear {
|
|
7270
7219
|
background: #1f1f1f;
|
|
7271
7220
|
}
|
|
@@ -7277,6 +7226,13 @@ nz-descriptions {
|
|
|
7277
7226
|
opacity: 1;
|
|
7278
7227
|
}
|
|
7279
7228
|
}
|
|
7229
|
+
.ant-drawer-rtl {
|
|
7230
|
+
direction: rtl;
|
|
7231
|
+
}
|
|
7232
|
+
.ant-drawer-rtl .ant-drawer-close {
|
|
7233
|
+
margin-right: 0;
|
|
7234
|
+
margin-left: 12px;
|
|
7235
|
+
}
|
|
7280
7236
|
.ant-drawer .ant-picker-clear,
|
|
7281
7237
|
.ant-drawer .ant-slider-handle,
|
|
7282
7238
|
.ant-drawer .ant-anchor-wrapper,
|
|
@@ -7463,13 +7419,6 @@ nz-descriptions {
|
|
|
7463
7419
|
.ant-drawer .ant-tree-show-line .ant-tree-switcher {
|
|
7464
7420
|
background: #1f1f1f;
|
|
7465
7421
|
}
|
|
7466
|
-
.ant-drawer-rtl {
|
|
7467
|
-
direction: rtl;
|
|
7468
|
-
}
|
|
7469
|
-
.ant-drawer-rtl .ant-drawer-close {
|
|
7470
|
-
right: auto;
|
|
7471
|
-
left: 0;
|
|
7472
|
-
}
|
|
7473
7422
|
.ant-dropdown-menu-item.ant-dropdown-menu-item-danger {
|
|
7474
7423
|
color: #a61d24;
|
|
7475
7424
|
}
|
|
@@ -7545,10 +7494,7 @@ nz-descriptions {
|
|
|
7545
7494
|
.ant-dropdown-placement-topLeft > .ant-dropdown-arrow,
|
|
7546
7495
|
.ant-dropdown-placement-topRight > .ant-dropdown-arrow {
|
|
7547
7496
|
bottom: 6.2px;
|
|
7548
|
-
border-
|
|
7549
|
-
border-right-color: #1f1f1f;
|
|
7550
|
-
border-bottom-color: #1f1f1f;
|
|
7551
|
-
border-left-color: transparent;
|
|
7497
|
+
border-color: transparent #1f1f1f #1f1f1f transparent;
|
|
7552
7498
|
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
7553
7499
|
}
|
|
7554
7500
|
.ant-dropdown-placement-topCenter > .ant-dropdown-arrow {
|
|
@@ -7565,10 +7511,7 @@ nz-descriptions {
|
|
|
7565
7511
|
.ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow,
|
|
7566
7512
|
.ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {
|
|
7567
7513
|
top: 6px;
|
|
7568
|
-
border-
|
|
7569
|
-
border-right-color: transparent;
|
|
7570
|
-
border-bottom-color: transparent;
|
|
7571
|
-
border-left-color: #1f1f1f;
|
|
7514
|
+
border-color: #1f1f1f transparent transparent #1f1f1f;
|
|
7572
7515
|
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
|
|
7573
7516
|
}
|
|
7574
7517
|
.ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow {
|
|
@@ -7805,7 +7748,8 @@ nz-descriptions {
|
|
|
7805
7748
|
direction: rtl;
|
|
7806
7749
|
text-align: right;
|
|
7807
7750
|
}
|
|
7808
|
-
.ant-dropdown-rtl .ant-dropdown-menu-item-group-title
|
|
7751
|
+
.ant-dropdown-rtl .ant-dropdown-menu-item-group-title,
|
|
7752
|
+
.ant-dropdown-menu-submenu-rtl .ant-dropdown-menu-item-group-title {
|
|
7809
7753
|
direction: rtl;
|
|
7810
7754
|
text-align: right;
|
|
7811
7755
|
}
|
|
@@ -7827,13 +7771,13 @@ nz-descriptions {
|
|
|
7827
7771
|
margin-right: 0;
|
|
7828
7772
|
margin-left: 8px;
|
|
7829
7773
|
}
|
|
7830
|
-
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-
|
|
7831
|
-
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-
|
|
7774
|
+
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon,
|
|
7775
|
+
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon {
|
|
7832
7776
|
right: auto;
|
|
7833
7777
|
left: 8px;
|
|
7834
7778
|
}
|
|
7835
|
-
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
|
|
7836
|
-
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
|
|
7779
|
+
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon,
|
|
7780
|
+
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon {
|
|
7837
7781
|
margin-left: 0 !important;
|
|
7838
7782
|
transform: scaleX(-1);
|
|
7839
7783
|
}
|
|
@@ -7906,7 +7850,7 @@ nz-descriptions {
|
|
|
7906
7850
|
fill: #262626;
|
|
7907
7851
|
}
|
|
7908
7852
|
.ant-empty-img-default-path-2 {
|
|
7909
|
-
fill: url(#linearGradient-1);
|
|
7853
|
+
fill: url('#linearGradient-1');
|
|
7910
7854
|
}
|
|
7911
7855
|
.ant-empty-img-default-path-3 {
|
|
7912
7856
|
fill: #595959;
|
|
@@ -13128,6 +13072,8 @@ nz-empty {
|
|
|
13128
13072
|
border: 1px solid #434343;
|
|
13129
13073
|
border-radius: 2px;
|
|
13130
13074
|
transition: all 0.3s;
|
|
13075
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13076
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13131
13077
|
display: inline-flex;
|
|
13132
13078
|
}
|
|
13133
13079
|
.ant-input-affix-wrapper::-moz-placeholder {
|
|
@@ -13135,6 +13081,7 @@ nz-empty {
|
|
|
13135
13081
|
}
|
|
13136
13082
|
.ant-input-affix-wrapper::placeholder {
|
|
13137
13083
|
color: rgba(255, 255, 255, 0.3);
|
|
13084
|
+
user-select: none;
|
|
13138
13085
|
}
|
|
13139
13086
|
.ant-input-affix-wrapper:placeholder-shown {
|
|
13140
13087
|
text-overflow: ellipsis;
|
|
@@ -13144,6 +13091,7 @@ nz-empty {
|
|
|
13144
13091
|
}
|
|
13145
13092
|
.ant-input-affix-wrapper::placeholder {
|
|
13146
13093
|
color: rgba(255, 255, 255, 0.3);
|
|
13094
|
+
user-select: none;
|
|
13147
13095
|
}
|
|
13148
13096
|
.ant-input-affix-wrapper:placeholder-shown {
|
|
13149
13097
|
text-overflow: ellipsis;
|
|
@@ -13159,9 +13107,9 @@ nz-empty {
|
|
|
13159
13107
|
.ant-input-affix-wrapper:focus,
|
|
13160
13108
|
.ant-input-affix-wrapper-focused {
|
|
13161
13109
|
border-color: #177ddc;
|
|
13110
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
13162
13111
|
border-right-width: 1px !important;
|
|
13163
13112
|
outline: 0;
|
|
13164
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
13165
13113
|
}
|
|
13166
13114
|
.ant-input-rtl .ant-input-affix-wrapper:focus,
|
|
13167
13115
|
.ant-input-rtl .ant-input-affix-wrapper-focused {
|
|
@@ -13170,6 +13118,8 @@ nz-empty {
|
|
|
13170
13118
|
}
|
|
13171
13119
|
.ant-input-affix-wrapper-disabled {
|
|
13172
13120
|
background-color: rgba(255, 255, 255, 0.08);
|
|
13121
|
+
border-color: #434343;
|
|
13122
|
+
box-shadow: none;
|
|
13173
13123
|
cursor: not-allowed;
|
|
13174
13124
|
opacity: 1;
|
|
13175
13125
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -13181,6 +13131,8 @@ nz-empty {
|
|
|
13181
13131
|
}
|
|
13182
13132
|
.ant-input-affix-wrapper[disabled] {
|
|
13183
13133
|
background-color: rgba(255, 255, 255, 0.08);
|
|
13134
|
+
border-color: #434343;
|
|
13135
|
+
box-shadow: none;
|
|
13184
13136
|
cursor: not-allowed;
|
|
13185
13137
|
opacity: 1;
|
|
13186
13138
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -13243,7 +13195,7 @@ textarea.ant-input-affix-wrapper {
|
|
|
13243
13195
|
outline: none;
|
|
13244
13196
|
}
|
|
13245
13197
|
.ant-input-affix-wrapper > input.ant-input:focus {
|
|
13246
|
-
box-shadow: none;
|
|
13198
|
+
box-shadow: none !important;
|
|
13247
13199
|
}
|
|
13248
13200
|
.ant-input-affix-wrapper::before {
|
|
13249
13201
|
width: 0;
|
|
@@ -13262,25 +13214,25 @@ textarea.ant-input-affix-wrapper {
|
|
|
13262
13214
|
.ant-input-suffix {
|
|
13263
13215
|
margin-left: 4px;
|
|
13264
13216
|
}
|
|
13265
|
-
.ant-input-clear-icon {
|
|
13266
|
-
margin: 0
|
|
13217
|
+
.anticon.ant-input-clear-icon {
|
|
13218
|
+
margin: 0;
|
|
13267
13219
|
color: rgba(255, 255, 255, 0.3);
|
|
13268
13220
|
font-size: 12px;
|
|
13269
13221
|
vertical-align: -1px;
|
|
13270
13222
|
cursor: pointer;
|
|
13271
13223
|
transition: color 0.3s;
|
|
13272
13224
|
}
|
|
13273
|
-
.ant-input-clear-icon:hover {
|
|
13225
|
+
.anticon.ant-input-clear-icon:hover {
|
|
13274
13226
|
color: rgba(255, 255, 255, 0.45);
|
|
13275
13227
|
}
|
|
13276
|
-
.ant-input-clear-icon:active {
|
|
13228
|
+
.anticon.ant-input-clear-icon:active {
|
|
13277
13229
|
color: rgba(255, 255, 255, 0.85);
|
|
13278
13230
|
}
|
|
13279
|
-
.ant-input-clear-icon-hidden {
|
|
13231
|
+
.anticon.ant-input-clear-icon-hidden {
|
|
13280
13232
|
visibility: hidden;
|
|
13281
13233
|
}
|
|
13282
|
-
.ant-input-clear-icon
|
|
13283
|
-
margin
|
|
13234
|
+
.anticon.ant-input-clear-icon-has-suffix {
|
|
13235
|
+
margin: 0 4px;
|
|
13284
13236
|
}
|
|
13285
13237
|
.ant-input-affix-wrapper-textarea-with-clear-btn {
|
|
13286
13238
|
padding: 0 !important;
|
|
@@ -13312,12 +13264,15 @@ textarea.ant-input-affix-wrapper {
|
|
|
13312
13264
|
border: 1px solid #434343;
|
|
13313
13265
|
border-radius: 2px;
|
|
13314
13266
|
transition: all 0.3s;
|
|
13267
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13268
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13315
13269
|
}
|
|
13316
13270
|
.ant-input::-moz-placeholder {
|
|
13317
13271
|
opacity: 1;
|
|
13318
13272
|
}
|
|
13319
13273
|
.ant-input::placeholder {
|
|
13320
13274
|
color: rgba(255, 255, 255, 0.3);
|
|
13275
|
+
user-select: none;
|
|
13321
13276
|
}
|
|
13322
13277
|
.ant-input:placeholder-shown {
|
|
13323
13278
|
text-overflow: ellipsis;
|
|
@@ -13327,6 +13282,7 @@ textarea.ant-input-affix-wrapper {
|
|
|
13327
13282
|
}
|
|
13328
13283
|
.ant-input::placeholder {
|
|
13329
13284
|
color: rgba(255, 255, 255, 0.3);
|
|
13285
|
+
user-select: none;
|
|
13330
13286
|
}
|
|
13331
13287
|
.ant-input:placeholder-shown {
|
|
13332
13288
|
text-overflow: ellipsis;
|
|
@@ -13342,9 +13298,9 @@ textarea.ant-input-affix-wrapper {
|
|
|
13342
13298
|
.ant-input:focus,
|
|
13343
13299
|
.ant-input-focused {
|
|
13344
13300
|
border-color: #177ddc;
|
|
13301
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
13345
13302
|
border-right-width: 1px !important;
|
|
13346
13303
|
outline: 0;
|
|
13347
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
13348
13304
|
}
|
|
13349
13305
|
.ant-input-rtl .ant-input:focus,
|
|
13350
13306
|
.ant-input-rtl .ant-input-focused {
|
|
@@ -13353,6 +13309,8 @@ textarea.ant-input-affix-wrapper {
|
|
|
13353
13309
|
}
|
|
13354
13310
|
.ant-input-disabled {
|
|
13355
13311
|
background-color: rgba(255, 255, 255, 0.08);
|
|
13312
|
+
border-color: #434343;
|
|
13313
|
+
box-shadow: none;
|
|
13356
13314
|
cursor: not-allowed;
|
|
13357
13315
|
opacity: 1;
|
|
13358
13316
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -13364,6 +13322,8 @@ textarea.ant-input-affix-wrapper {
|
|
|
13364
13322
|
}
|
|
13365
13323
|
.ant-input[disabled] {
|
|
13366
13324
|
background-color: rgba(255, 255, 255, 0.08);
|
|
13325
|
+
border-color: #434343;
|
|
13326
|
+
box-shadow: none;
|
|
13367
13327
|
cursor: not-allowed;
|
|
13368
13328
|
opacity: 1;
|
|
13369
13329
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -13488,6 +13448,15 @@ textarea.ant-input {
|
|
|
13488
13448
|
.ant-input-group-addon .ant-select-focused .ant-select-selector {
|
|
13489
13449
|
color: #177ddc;
|
|
13490
13450
|
}
|
|
13451
|
+
.ant-input-group-addon .ant-cascader-picker {
|
|
13452
|
+
margin: -9px -12px;
|
|
13453
|
+
background-color: transparent;
|
|
13454
|
+
}
|
|
13455
|
+
.ant-input-group-addon .ant-cascader-picker .ant-cascader-input {
|
|
13456
|
+
text-align: left;
|
|
13457
|
+
border: 0;
|
|
13458
|
+
box-shadow: none;
|
|
13459
|
+
}
|
|
13491
13460
|
.ant-input-group > .ant-input:first-child,
|
|
13492
13461
|
.ant-input-group-addon:first-child {
|
|
13493
13462
|
border-top-right-radius: 0;
|
|
@@ -13537,10 +13506,6 @@ textarea.ant-input {
|
|
|
13537
13506
|
.ant-input-group-sm .ant-select-single .ant-select-selector {
|
|
13538
13507
|
height: 24px;
|
|
13539
13508
|
}
|
|
13540
|
-
.ant-input-group .ant-input-affix-wrapper:not(:first-child) {
|
|
13541
|
-
border-top-left-radius: 0;
|
|
13542
|
-
border-bottom-left-radius: 0;
|
|
13543
|
-
}
|
|
13544
13509
|
.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
|
|
13545
13510
|
border-top-right-radius: 0;
|
|
13546
13511
|
border-bottom-right-radius: 0;
|
|
@@ -13549,6 +13514,11 @@ textarea.ant-input {
|
|
|
13549
13514
|
border-top-left-radius: 2px;
|
|
13550
13515
|
border-bottom-left-radius: 2px;
|
|
13551
13516
|
}
|
|
13517
|
+
.ant-input-group .ant-input-affix-wrapper:not(:first-child),
|
|
13518
|
+
.ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:first-child) {
|
|
13519
|
+
border-top-left-radius: 0;
|
|
13520
|
+
border-bottom-left-radius: 0;
|
|
13521
|
+
}
|
|
13552
13522
|
.ant-input-group.ant-input-group-compact {
|
|
13553
13523
|
display: block;
|
|
13554
13524
|
}
|
|
@@ -13750,6 +13720,9 @@ textarea.ant-input {
|
|
|
13750
13720
|
padding-top: 3px;
|
|
13751
13721
|
padding-bottom: 3px;
|
|
13752
13722
|
}
|
|
13723
|
+
.ant-input-textarea-show-count > .ant-input {
|
|
13724
|
+
height: 100%;
|
|
13725
|
+
}
|
|
13753
13726
|
.ant-input-textarea-show-count::after {
|
|
13754
13727
|
float: right;
|
|
13755
13728
|
color: rgba(255, 255, 255, 0.45);
|
|
@@ -13825,9 +13798,9 @@ textarea.ant-input {
|
|
|
13825
13798
|
.ant-input-textarea-rtl.ant-input-textarea-show-count::after {
|
|
13826
13799
|
text-align: left;
|
|
13827
13800
|
}
|
|
13828
|
-
.ant-input-affix-wrapper-rtl .ant-input-clear-icon
|
|
13829
|
-
margin-right:
|
|
13830
|
-
margin-left:
|
|
13801
|
+
.ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix {
|
|
13802
|
+
margin-right: 0;
|
|
13803
|
+
margin-left: 4px;
|
|
13831
13804
|
}
|
|
13832
13805
|
.ant-input-affix-wrapper-rtl .ant-input-clear-icon {
|
|
13833
13806
|
right: auto;
|
|
@@ -13902,6 +13875,8 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13902
13875
|
background-color: transparent;
|
|
13903
13876
|
background-image: none;
|
|
13904
13877
|
transition: all 0.3s;
|
|
13878
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13879
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13905
13880
|
display: inline-block;
|
|
13906
13881
|
width: 90px;
|
|
13907
13882
|
margin: 0;
|
|
@@ -13914,6 +13889,7 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13914
13889
|
}
|
|
13915
13890
|
.ant-input-number::placeholder {
|
|
13916
13891
|
color: rgba(255, 255, 255, 0.3);
|
|
13892
|
+
user-select: none;
|
|
13917
13893
|
}
|
|
13918
13894
|
.ant-input-number:placeholder-shown {
|
|
13919
13895
|
text-overflow: ellipsis;
|
|
@@ -13923,6 +13899,7 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13923
13899
|
}
|
|
13924
13900
|
.ant-input-number::placeholder {
|
|
13925
13901
|
color: rgba(255, 255, 255, 0.3);
|
|
13902
|
+
user-select: none;
|
|
13926
13903
|
}
|
|
13927
13904
|
.ant-input-number:placeholder-shown {
|
|
13928
13905
|
text-overflow: ellipsis;
|
|
@@ -13938,9 +13915,9 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13938
13915
|
.ant-input-number:focus,
|
|
13939
13916
|
.ant-input-number-focused {
|
|
13940
13917
|
border-color: #177ddc;
|
|
13918
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
13941
13919
|
border-right-width: 1px !important;
|
|
13942
13920
|
outline: 0;
|
|
13943
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
13944
13921
|
}
|
|
13945
13922
|
.ant-input-rtl .ant-input-number:focus,
|
|
13946
13923
|
.ant-input-rtl .ant-input-number-focused {
|
|
@@ -13949,6 +13926,8 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13949
13926
|
}
|
|
13950
13927
|
.ant-input-number-disabled {
|
|
13951
13928
|
background-color: rgba(255, 255, 255, 0.08);
|
|
13929
|
+
border-color: #434343;
|
|
13930
|
+
box-shadow: none;
|
|
13952
13931
|
cursor: not-allowed;
|
|
13953
13932
|
opacity: 1;
|
|
13954
13933
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -13960,6 +13939,8 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13960
13939
|
}
|
|
13961
13940
|
.ant-input-number[disabled] {
|
|
13962
13941
|
background-color: rgba(255, 255, 255, 0.08);
|
|
13942
|
+
border-color: #434343;
|
|
13943
|
+
box-shadow: none;
|
|
13963
13944
|
cursor: not-allowed;
|
|
13964
13945
|
opacity: 1;
|
|
13965
13946
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -13997,123 +13978,465 @@ textarea.ant-input-number {
|
|
|
13997
13978
|
.ant-input-number-rtl {
|
|
13998
13979
|
direction: rtl;
|
|
13999
13980
|
}
|
|
14000
|
-
.ant-input-number-
|
|
13981
|
+
.ant-input-number-group {
|
|
13982
|
+
box-sizing: border-box;
|
|
13983
|
+
margin: 0;
|
|
13984
|
+
padding: 0;
|
|
13985
|
+
color: rgba(255, 255, 255, 0.85);
|
|
13986
|
+
font-size: 14px;
|
|
13987
|
+
font-variant: tabular-nums;
|
|
13988
|
+
line-height: 1.5715;
|
|
13989
|
+
list-style: none;
|
|
13990
|
+
font-feature-settings: 'tnum';
|
|
14001
13991
|
position: relative;
|
|
14002
|
-
display:
|
|
13992
|
+
display: table;
|
|
14003
13993
|
width: 100%;
|
|
14004
|
-
|
|
14005
|
-
|
|
14006
|
-
color: rgba(255, 255, 255, 0.45);
|
|
14007
|
-
font-weight: bold;
|
|
14008
|
-
line-height: 0;
|
|
14009
|
-
text-align: center;
|
|
14010
|
-
transition: all 0.1s linear;
|
|
13994
|
+
border-collapse: separate;
|
|
13995
|
+
border-spacing: 0;
|
|
14011
13996
|
}
|
|
14012
|
-
.ant-input-number-
|
|
14013
|
-
|
|
13997
|
+
.ant-input-number-group[class*='col-'] {
|
|
13998
|
+
float: none;
|
|
13999
|
+
padding-right: 0;
|
|
14000
|
+
padding-left: 0;
|
|
14014
14001
|
}
|
|
14015
|
-
.ant-input-number-
|
|
14016
|
-
|
|
14017
|
-
color: #165996;
|
|
14002
|
+
.ant-input-number-group > [class*='col-'] {
|
|
14003
|
+
padding-right: 8px;
|
|
14018
14004
|
}
|
|
14019
|
-
.ant-input-number-
|
|
14020
|
-
|
|
14021
|
-
display: inline-block;
|
|
14022
|
-
color: inherit;
|
|
14023
|
-
font-style: normal;
|
|
14024
|
-
line-height: 0;
|
|
14025
|
-
text-align: center;
|
|
14026
|
-
text-transform: none;
|
|
14027
|
-
vertical-align: -0.125em;
|
|
14028
|
-
text-rendering: optimizeLegibility;
|
|
14029
|
-
-webkit-font-smoothing: antialiased;
|
|
14030
|
-
-moz-osx-font-smoothing: grayscale;
|
|
14031
|
-
position: absolute;
|
|
14032
|
-
right: 4px;
|
|
14033
|
-
width: 12px;
|
|
14034
|
-
height: 12px;
|
|
14035
|
-
color: rgba(255, 255, 255, 0.45);
|
|
14036
|
-
line-height: 12px;
|
|
14037
|
-
transition: all 0.1s linear;
|
|
14038
|
-
user-select: none;
|
|
14005
|
+
.ant-input-number-group > [class*='col-']:last-child {
|
|
14006
|
+
padding-right: 0;
|
|
14039
14007
|
}
|
|
14040
|
-
.ant-input-number-
|
|
14041
|
-
.ant-input-number-
|
|
14042
|
-
|
|
14008
|
+
.ant-input-number-group-addon,
|
|
14009
|
+
.ant-input-number-group-wrap,
|
|
14010
|
+
.ant-input-number-group > .ant-input-number {
|
|
14011
|
+
display: table-cell;
|
|
14043
14012
|
}
|
|
14044
|
-
.ant-input-number-
|
|
14045
|
-
.ant-input-number-
|
|
14046
|
-
|
|
14013
|
+
.ant-input-number-group-addon:not(:first-child):not(:last-child),
|
|
14014
|
+
.ant-input-number-group-wrap:not(:first-child):not(:last-child),
|
|
14015
|
+
.ant-input-number-group > .ant-input-number:not(:first-child):not(:last-child) {
|
|
14016
|
+
border-radius: 0;
|
|
14047
14017
|
}
|
|
14048
|
-
.ant-input-number-
|
|
14049
|
-
.ant-input-number-
|
|
14050
|
-
|
|
14018
|
+
.ant-input-number-group-addon,
|
|
14019
|
+
.ant-input-number-group-wrap {
|
|
14020
|
+
width: 1px;
|
|
14021
|
+
white-space: nowrap;
|
|
14022
|
+
vertical-align: middle;
|
|
14051
14023
|
}
|
|
14052
|
-
.ant-input-number-
|
|
14053
|
-
|
|
14054
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
14055
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
14056
|
-
display: block;
|
|
14024
|
+
.ant-input-number-group-wrap > * {
|
|
14025
|
+
display: block !important;
|
|
14057
14026
|
}
|
|
14058
|
-
.ant-input-number-
|
|
14059
|
-
|
|
14060
|
-
|
|
14027
|
+
.ant-input-number-group .ant-input-number {
|
|
14028
|
+
float: left;
|
|
14029
|
+
width: 100%;
|
|
14030
|
+
margin-bottom: 0;
|
|
14031
|
+
text-align: inherit;
|
|
14061
14032
|
}
|
|
14062
|
-
.ant-input-number-
|
|
14063
|
-
|
|
14064
|
-
|
|
14033
|
+
.ant-input-number-group .ant-input-number:focus {
|
|
14034
|
+
z-index: 1;
|
|
14035
|
+
border-right-width: 1px;
|
|
14065
14036
|
}
|
|
14066
|
-
.ant-input-number-
|
|
14067
|
-
|
|
14068
|
-
|
|
14037
|
+
.ant-input-number-group .ant-input-number:hover {
|
|
14038
|
+
z-index: 1;
|
|
14039
|
+
border-right-width: 1px;
|
|
14069
14040
|
}
|
|
14070
|
-
.ant-input-
|
|
14071
|
-
|
|
14072
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
14073
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
14074
|
-
display: block;
|
|
14041
|
+
.ant-input-search-with-button .ant-input-number-group .ant-input-number:hover {
|
|
14042
|
+
z-index: 0;
|
|
14075
14043
|
}
|
|
14076
|
-
.ant-input-number
|
|
14077
|
-
|
|
14078
|
-
|
|
14044
|
+
.ant-input-number-group-addon {
|
|
14045
|
+
position: relative;
|
|
14046
|
+
padding: 0 11px;
|
|
14047
|
+
color: rgba(255, 255, 255, 0.85);
|
|
14048
|
+
font-weight: normal;
|
|
14049
|
+
font-size: 14px;
|
|
14050
|
+
text-align: center;
|
|
14051
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
14052
|
+
border: 1px solid #434343;
|
|
14053
|
+
border-radius: 2px;
|
|
14054
|
+
transition: all 0.3s;
|
|
14079
14055
|
}
|
|
14080
|
-
.ant-input-number
|
|
14081
|
-
|
|
14082
|
-
transition: opacity 0.24s linear 0.24s;
|
|
14056
|
+
.ant-input-number-group-addon .ant-select {
|
|
14057
|
+
margin: -5px -11px;
|
|
14083
14058
|
}
|
|
14084
|
-
.ant-input-number-
|
|
14085
|
-
|
|
14086
|
-
border
|
|
14087
|
-
|
|
14088
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
14059
|
+
.ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
|
|
14060
|
+
background-color: inherit;
|
|
14061
|
+
border: 1px solid transparent;
|
|
14062
|
+
box-shadow: none;
|
|
14089
14063
|
}
|
|
14090
|
-
.ant-input-
|
|
14091
|
-
|
|
14092
|
-
|
|
14064
|
+
.ant-input-number-group-addon .ant-select-open .ant-select-selector,
|
|
14065
|
+
.ant-input-number-group-addon .ant-select-focused .ant-select-selector {
|
|
14066
|
+
color: #177ddc;
|
|
14093
14067
|
}
|
|
14094
|
-
.ant-input-number-
|
|
14095
|
-
|
|
14096
|
-
|
|
14097
|
-
opacity: 1;
|
|
14098
|
-
color: rgba(255, 255, 255, 0.3);
|
|
14099
|
-
pointer-events: none;
|
|
14068
|
+
.ant-input-number-group-addon .ant-cascader-picker {
|
|
14069
|
+
margin: -9px -12px;
|
|
14070
|
+
background-color: transparent;
|
|
14100
14071
|
}
|
|
14101
|
-
.ant-input-number-
|
|
14102
|
-
|
|
14103
|
-
border
|
|
14072
|
+
.ant-input-number-group-addon .ant-cascader-picker .ant-cascader-input {
|
|
14073
|
+
text-align: left;
|
|
14074
|
+
border: 0;
|
|
14075
|
+
box-shadow: none;
|
|
14104
14076
|
}
|
|
14105
|
-
.ant-input-number-
|
|
14106
|
-
|
|
14077
|
+
.ant-input-number-group > .ant-input-number:first-child,
|
|
14078
|
+
.ant-input-number-group-addon:first-child {
|
|
14079
|
+
border-top-right-radius: 0;
|
|
14080
|
+
border-bottom-right-radius: 0;
|
|
14107
14081
|
}
|
|
14108
|
-
.ant-input-number-
|
|
14109
|
-
|
|
14082
|
+
.ant-input-number-group > .ant-input-number:first-child .ant-select .ant-select-selector,
|
|
14083
|
+
.ant-input-number-group-addon:first-child .ant-select .ant-select-selector {
|
|
14084
|
+
border-top-right-radius: 0;
|
|
14085
|
+
border-bottom-right-radius: 0;
|
|
14110
14086
|
}
|
|
14111
|
-
.ant-input-number-
|
|
14112
|
-
|
|
14087
|
+
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:first-child) .ant-input-number {
|
|
14088
|
+
border-top-left-radius: 0;
|
|
14089
|
+
border-bottom-left-radius: 0;
|
|
14113
14090
|
}
|
|
14114
|
-
.ant-input-number-input {
|
|
14115
|
-
|
|
14116
|
-
|
|
14091
|
+
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:last-child) .ant-input-number {
|
|
14092
|
+
border-top-right-radius: 0;
|
|
14093
|
+
border-bottom-right-radius: 0;
|
|
14094
|
+
}
|
|
14095
|
+
.ant-input-number-group-addon:first-child {
|
|
14096
|
+
border-right: 0;
|
|
14097
|
+
}
|
|
14098
|
+
.ant-input-number-group-addon:last-child {
|
|
14099
|
+
border-left: 0;
|
|
14100
|
+
}
|
|
14101
|
+
.ant-input-number-group > .ant-input-number:last-child,
|
|
14102
|
+
.ant-input-number-group-addon:last-child {
|
|
14103
|
+
border-top-left-radius: 0;
|
|
14104
|
+
border-bottom-left-radius: 0;
|
|
14105
|
+
}
|
|
14106
|
+
.ant-input-number-group > .ant-input-number:last-child .ant-select .ant-select-selector,
|
|
14107
|
+
.ant-input-number-group-addon:last-child .ant-select .ant-select-selector {
|
|
14108
|
+
border-top-left-radius: 0;
|
|
14109
|
+
border-bottom-left-radius: 0;
|
|
14110
|
+
}
|
|
14111
|
+
.ant-input-number-group-lg .ant-input-number,
|
|
14112
|
+
.ant-input-number-group-lg > .ant-input-number-group-addon {
|
|
14113
|
+
padding: 6.5px 11px;
|
|
14114
|
+
font-size: 16px;
|
|
14115
|
+
}
|
|
14116
|
+
.ant-input-number-group-sm .ant-input-number,
|
|
14117
|
+
.ant-input-number-group-sm > .ant-input-number-group-addon {
|
|
14118
|
+
padding: 0px 7px;
|
|
14119
|
+
}
|
|
14120
|
+
.ant-input-number-group-lg .ant-select-single .ant-select-selector {
|
|
14121
|
+
height: 40px;
|
|
14122
|
+
}
|
|
14123
|
+
.ant-input-number-group-sm .ant-select-single .ant-select-selector {
|
|
14124
|
+
height: 24px;
|
|
14125
|
+
}
|
|
14126
|
+
.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
|
14127
|
+
border-top-right-radius: 0;
|
|
14128
|
+
border-bottom-right-radius: 0;
|
|
14129
|
+
}
|
|
14130
|
+
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
|
14131
|
+
border-top-left-radius: 2px;
|
|
14132
|
+
border-bottom-left-radius: 2px;
|
|
14133
|
+
}
|
|
14134
|
+
.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child),
|
|
14135
|
+
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
|
|
14136
|
+
border-top-left-radius: 0;
|
|
14137
|
+
border-bottom-left-radius: 0;
|
|
14138
|
+
}
|
|
14139
|
+
.ant-input-number-group.ant-input-number-group-compact {
|
|
14140
|
+
display: block;
|
|
14141
|
+
}
|
|
14142
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
14143
|
+
display: table;
|
|
14144
|
+
content: '';
|
|
14145
|
+
}
|
|
14146
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
14147
|
+
display: table;
|
|
14148
|
+
clear: both;
|
|
14149
|
+
content: '';
|
|
14150
|
+
}
|
|
14151
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
14152
|
+
display: table;
|
|
14153
|
+
content: '';
|
|
14154
|
+
}
|
|
14155
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
14156
|
+
display: table;
|
|
14157
|
+
clear: both;
|
|
14158
|
+
content: '';
|
|
14159
|
+
}
|
|
14160
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
14161
|
+
display: table;
|
|
14162
|
+
content: '';
|
|
14163
|
+
}
|
|
14164
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
14165
|
+
display: table;
|
|
14166
|
+
clear: both;
|
|
14167
|
+
content: '';
|
|
14168
|
+
}
|
|
14169
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
14170
|
+
display: table;
|
|
14171
|
+
content: '';
|
|
14172
|
+
}
|
|
14173
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
14174
|
+
display: table;
|
|
14175
|
+
clear: both;
|
|
14176
|
+
content: '';
|
|
14177
|
+
}
|
|
14178
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child),
|
|
14179
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child),
|
|
14180
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child) {
|
|
14181
|
+
border-right-width: 1px;
|
|
14182
|
+
}
|
|
14183
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):hover,
|
|
14184
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover,
|
|
14185
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):hover {
|
|
14186
|
+
z-index: 1;
|
|
14187
|
+
}
|
|
14188
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):focus,
|
|
14189
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus,
|
|
14190
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):focus {
|
|
14191
|
+
z-index: 1;
|
|
14192
|
+
}
|
|
14193
|
+
.ant-input-number-group.ant-input-number-group-compact > * {
|
|
14194
|
+
display: inline-block;
|
|
14195
|
+
float: none;
|
|
14196
|
+
vertical-align: top;
|
|
14197
|
+
border-radius: 0;
|
|
14198
|
+
}
|
|
14199
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number-affix-wrapper {
|
|
14200
|
+
display: inline-flex;
|
|
14201
|
+
}
|
|
14202
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-picker-range {
|
|
14203
|
+
display: inline-flex;
|
|
14204
|
+
}
|
|
14205
|
+
.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
|
|
14206
|
+
margin-right: -1px;
|
|
14207
|
+
border-right-width: 1px;
|
|
14208
|
+
}
|
|
14209
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-number {
|
|
14210
|
+
float: none;
|
|
14211
|
+
}
|
|
14212
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector,
|
|
14213
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input,
|
|
14214
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input,
|
|
14215
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input {
|
|
14216
|
+
border-right-width: 1px;
|
|
14217
|
+
border-radius: 0;
|
|
14218
|
+
}
|
|
14219
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:hover,
|
|
14220
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:hover,
|
|
14221
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:hover,
|
|
14222
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:hover {
|
|
14223
|
+
z-index: 1;
|
|
14224
|
+
}
|
|
14225
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:focus,
|
|
14226
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:focus,
|
|
14227
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:focus,
|
|
14228
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:focus {
|
|
14229
|
+
z-index: 1;
|
|
14230
|
+
}
|
|
14231
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-focused {
|
|
14232
|
+
z-index: 1;
|
|
14233
|
+
}
|
|
14234
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-arrow {
|
|
14235
|
+
z-index: 1;
|
|
14236
|
+
}
|
|
14237
|
+
.ant-input-number-group.ant-input-number-group-compact > *:first-child,
|
|
14238
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
|
|
14239
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
|
14240
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
|
14241
|
+
border-top-left-radius: 2px;
|
|
14242
|
+
border-bottom-left-radius: 2px;
|
|
14243
|
+
}
|
|
14244
|
+
.ant-input-number-group.ant-input-number-group-compact > *:last-child,
|
|
14245
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
|
14246
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
|
14247
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
|
14248
|
+
border-right-width: 1px;
|
|
14249
|
+
border-top-right-radius: 2px;
|
|
14250
|
+
border-bottom-right-radius: 2px;
|
|
14251
|
+
}
|
|
14252
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input {
|
|
14253
|
+
vertical-align: top;
|
|
14254
|
+
}
|
|
14255
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper {
|
|
14256
|
+
margin-left: -1px;
|
|
14257
|
+
}
|
|
14258
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper {
|
|
14259
|
+
border-radius: 0;
|
|
14260
|
+
}
|
|
14261
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input-group-addon > .ant-input-search-button {
|
|
14262
|
+
border-radius: 0;
|
|
14263
|
+
}
|
|
14264
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
|
|
14265
|
+
border-radius: 2px 0 0 2px;
|
|
14266
|
+
}
|
|
14267
|
+
.ant-input-number-group > .ant-input-number-rtl:first-child,
|
|
14268
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
|
|
14269
|
+
border-radius: 0 2px 2px 0;
|
|
14270
|
+
}
|
|
14271
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
|
|
14272
|
+
border-right: 1px solid #434343;
|
|
14273
|
+
border-left: 0;
|
|
14274
|
+
}
|
|
14275
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {
|
|
14276
|
+
border-right: 0;
|
|
14277
|
+
border-left: 1px solid #434343;
|
|
14278
|
+
}
|
|
14279
|
+
.ant-input-number-group-rtl.ant-input-number-group > .ant-input-number:last-child,
|
|
14280
|
+
.ant-input-number-group-rtl.ant-input-number-group-addon:last-child {
|
|
14281
|
+
border-radius: 2px 0 0 2px;
|
|
14282
|
+
}
|
|
14283
|
+
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
|
|
14284
|
+
border-radius: 2px 0 0 2px;
|
|
14285
|
+
}
|
|
14286
|
+
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
|
14287
|
+
border-radius: 0 2px 2px 0;
|
|
14288
|
+
}
|
|
14289
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
|
|
14290
|
+
margin-right: 0;
|
|
14291
|
+
margin-left: -1px;
|
|
14292
|
+
border-left-width: 1px;
|
|
14293
|
+
}
|
|
14294
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:first-child,
|
|
14295
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
|
|
14296
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
|
14297
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
|
14298
|
+
border-radius: 0 2px 2px 0;
|
|
14299
|
+
}
|
|
14300
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:last-child,
|
|
14301
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
|
14302
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:last-child .ant-input,
|
|
14303
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
|
14304
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
|
14305
|
+
border-left-width: 1px;
|
|
14306
|
+
border-radius: 2px 0 0 2px;
|
|
14307
|
+
}
|
|
14308
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl {
|
|
14309
|
+
margin-right: -1px;
|
|
14310
|
+
margin-left: 0;
|
|
14311
|
+
}
|
|
14312
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
|
|
14313
|
+
border-radius: 0 2px 2px 0;
|
|
14314
|
+
}
|
|
14315
|
+
.ant-input-number-group-wrapper {
|
|
14316
|
+
display: inline-block;
|
|
14317
|
+
text-align: start;
|
|
14318
|
+
vertical-align: top;
|
|
14319
|
+
}
|
|
14320
|
+
.ant-input-number-handler {
|
|
14321
|
+
position: relative;
|
|
14322
|
+
display: block;
|
|
14323
|
+
width: 100%;
|
|
14324
|
+
height: 50%;
|
|
14325
|
+
overflow: hidden;
|
|
14326
|
+
color: rgba(255, 255, 255, 0.45);
|
|
14327
|
+
font-weight: bold;
|
|
14328
|
+
line-height: 0;
|
|
14329
|
+
text-align: center;
|
|
14330
|
+
border-left: 1px solid #434343;
|
|
14331
|
+
transition: all 0.1s linear;
|
|
14332
|
+
}
|
|
14333
|
+
.ant-input-number-handler:active {
|
|
14334
|
+
background: rgba(255, 255, 255, 0.08);
|
|
14335
|
+
}
|
|
14336
|
+
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
|
|
14337
|
+
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
|
|
14338
|
+
color: #165996;
|
|
14339
|
+
}
|
|
14340
|
+
.ant-input-number-handler-up-inner,
|
|
14341
|
+
.ant-input-number-handler-down-inner {
|
|
14342
|
+
display: inline-block;
|
|
14343
|
+
color: inherit;
|
|
14344
|
+
font-style: normal;
|
|
14345
|
+
line-height: 0;
|
|
14346
|
+
text-align: center;
|
|
14347
|
+
text-transform: none;
|
|
14348
|
+
vertical-align: -0.125em;
|
|
14349
|
+
text-rendering: optimizeLegibility;
|
|
14350
|
+
-webkit-font-smoothing: antialiased;
|
|
14351
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14352
|
+
position: absolute;
|
|
14353
|
+
right: 4px;
|
|
14354
|
+
width: 12px;
|
|
14355
|
+
height: 12px;
|
|
14356
|
+
color: rgba(255, 255, 255, 0.45);
|
|
14357
|
+
line-height: 12px;
|
|
14358
|
+
transition: all 0.1s linear;
|
|
14359
|
+
user-select: none;
|
|
14360
|
+
}
|
|
14361
|
+
.ant-input-number-handler-up-inner > *,
|
|
14362
|
+
.ant-input-number-handler-down-inner > * {
|
|
14363
|
+
line-height: 1;
|
|
14364
|
+
}
|
|
14365
|
+
.ant-input-number-handler-up-inner svg,
|
|
14366
|
+
.ant-input-number-handler-down-inner svg {
|
|
14367
|
+
display: inline-block;
|
|
14368
|
+
}
|
|
14369
|
+
.ant-input-number-handler-up-inner::before,
|
|
14370
|
+
.ant-input-number-handler-down-inner::before {
|
|
14371
|
+
display: none;
|
|
14372
|
+
}
|
|
14373
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
|
|
14374
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
|
|
14375
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
14376
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
14377
|
+
display: block;
|
|
14378
|
+
}
|
|
14379
|
+
.ant-input-number-handler-up-inner > *,
|
|
14380
|
+
.ant-input-number-handler-down-inner > * {
|
|
14381
|
+
line-height: 1;
|
|
14382
|
+
}
|
|
14383
|
+
.ant-input-number-handler-up-inner svg,
|
|
14384
|
+
.ant-input-number-handler-down-inner svg {
|
|
14385
|
+
display: inline-block;
|
|
14386
|
+
}
|
|
14387
|
+
.ant-input-number-handler-up-inner::before,
|
|
14388
|
+
.ant-input-number-handler-down-inner::before {
|
|
14389
|
+
display: none;
|
|
14390
|
+
}
|
|
14391
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
|
|
14392
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
|
|
14393
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
14394
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
14395
|
+
display: block;
|
|
14396
|
+
}
|
|
14397
|
+
.ant-input-number:hover {
|
|
14398
|
+
border-color: #165996;
|
|
14399
|
+
border-right-width: 1px !important;
|
|
14400
|
+
}
|
|
14401
|
+
.ant-input-number:hover + .ant-form-item-children-icon {
|
|
14402
|
+
opacity: 0;
|
|
14403
|
+
transition: opacity 0.24s linear 0.24s;
|
|
14404
|
+
}
|
|
14405
|
+
.ant-input-number-focused {
|
|
14406
|
+
border-color: #177ddc;
|
|
14407
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
14408
|
+
border-right-width: 1px !important;
|
|
14409
|
+
outline: 0;
|
|
14410
|
+
}
|
|
14411
|
+
.ant-input-rtl .ant-input-number-focused {
|
|
14412
|
+
border-right-width: 0;
|
|
14413
|
+
border-left-width: 1px !important;
|
|
14414
|
+
}
|
|
14415
|
+
.ant-input-number-disabled {
|
|
14416
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
14417
|
+
border-color: #434343;
|
|
14418
|
+
box-shadow: none;
|
|
14419
|
+
cursor: not-allowed;
|
|
14420
|
+
opacity: 1;
|
|
14421
|
+
color: rgba(255, 255, 255, 0.3);
|
|
14422
|
+
pointer-events: none;
|
|
14423
|
+
}
|
|
14424
|
+
.ant-input-number-disabled:hover {
|
|
14425
|
+
border-color: #434343;
|
|
14426
|
+
border-right-width: 1px !important;
|
|
14427
|
+
}
|
|
14428
|
+
.ant-input-number-disabled .ant-input-number-input {
|
|
14429
|
+
cursor: not-allowed;
|
|
14430
|
+
}
|
|
14431
|
+
.ant-input-number-disabled .ant-input-number-handler-wrap {
|
|
14432
|
+
display: none;
|
|
14433
|
+
}
|
|
14434
|
+
.ant-input-number-readonly .ant-input-number-handler-wrap {
|
|
14435
|
+
display: none;
|
|
14436
|
+
}
|
|
14437
|
+
.ant-input-number-input {
|
|
14438
|
+
width: 100%;
|
|
14439
|
+
height: 30px;
|
|
14117
14440
|
padding: 0 11px;
|
|
14118
14441
|
text-align: left;
|
|
14119
14442
|
background-color: transparent;
|
|
@@ -14121,13 +14444,16 @@ textarea.ant-input-number {
|
|
|
14121
14444
|
border-radius: 2px;
|
|
14122
14445
|
outline: 0;
|
|
14123
14446
|
transition: all 0.3s linear;
|
|
14124
|
-
|
|
14447
|
+
appearance: textfield !important;
|
|
14448
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
14449
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
14125
14450
|
}
|
|
14126
14451
|
.ant-input-number-input::-moz-placeholder {
|
|
14127
14452
|
opacity: 1;
|
|
14128
14453
|
}
|
|
14129
14454
|
.ant-input-number-input::placeholder {
|
|
14130
14455
|
color: rgba(255, 255, 255, 0.3);
|
|
14456
|
+
user-select: none;
|
|
14131
14457
|
}
|
|
14132
14458
|
.ant-input-number-input:placeholder-shown {
|
|
14133
14459
|
text-overflow: ellipsis;
|
|
@@ -14137,6 +14463,7 @@ textarea.ant-input-number {
|
|
|
14137
14463
|
}
|
|
14138
14464
|
.ant-input-number-input::placeholder {
|
|
14139
14465
|
color: rgba(255, 255, 255, 0.3);
|
|
14466
|
+
user-select: none;
|
|
14140
14467
|
}
|
|
14141
14468
|
.ant-input-number-input:placeholder-shown {
|
|
14142
14469
|
text-overflow: ellipsis;
|
|
@@ -14144,7 +14471,9 @@ textarea.ant-input-number {
|
|
|
14144
14471
|
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
|
|
14145
14472
|
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
|
|
14146
14473
|
margin: 0;
|
|
14474
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14147
14475
|
-webkit-appearance: none;
|
|
14476
|
+
appearance: none;
|
|
14148
14477
|
}
|
|
14149
14478
|
.ant-input-number-lg {
|
|
14150
14479
|
padding: 0;
|
|
@@ -14167,13 +14496,15 @@ textarea.ant-input-number {
|
|
|
14167
14496
|
width: 22px;
|
|
14168
14497
|
height: 100%;
|
|
14169
14498
|
background: #141414;
|
|
14170
|
-
border-left: 1px solid #434343;
|
|
14171
14499
|
border-radius: 0 2px 2px 0;
|
|
14172
14500
|
opacity: 0;
|
|
14173
14501
|
transition: opacity 0.24s linear 0.1s;
|
|
14174
14502
|
}
|
|
14175
14503
|
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
|
|
14176
14504
|
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
|
|
14505
|
+
display: flex;
|
|
14506
|
+
align-items: center;
|
|
14507
|
+
justify-content: center;
|
|
14177
14508
|
min-width: auto;
|
|
14178
14509
|
margin-right: 0;
|
|
14179
14510
|
font-size: 7px;
|
|
@@ -14184,7 +14515,8 @@ textarea.ant-input-number {
|
|
|
14184
14515
|
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
|
|
14185
14516
|
height: 40%;
|
|
14186
14517
|
}
|
|
14187
|
-
.ant-input-number:hover .ant-input-number-handler-wrap
|
|
14518
|
+
.ant-input-number:hover .ant-input-number-handler-wrap,
|
|
14519
|
+
.ant-input-number-focused .ant-input-number-handler-wrap {
|
|
14188
14520
|
opacity: 1;
|
|
14189
14521
|
}
|
|
14190
14522
|
.ant-input-number-handler-up {
|
|
@@ -14233,16 +14565,23 @@ textarea.ant-input-number {
|
|
|
14233
14565
|
.ant-input-number-rtl {
|
|
14234
14566
|
direction: rtl;
|
|
14235
14567
|
}
|
|
14568
|
+
.ant-input-number-rtl .ant-input-number-handler {
|
|
14569
|
+
border-right: 1px solid #434343;
|
|
14570
|
+
border-left: 0;
|
|
14571
|
+
}
|
|
14236
14572
|
.ant-input-number-rtl .ant-input-number-handler-wrap {
|
|
14237
14573
|
right: auto;
|
|
14238
14574
|
left: 0;
|
|
14239
|
-
border-right: 1px solid #434343;
|
|
14240
|
-
border-left: 0;
|
|
14241
|
-
border-radius: 2px 0 0 2px;
|
|
14242
14575
|
}
|
|
14243
14576
|
.ant-input-number-rtl.ant-input-number-borderless .ant-input-number-handler-wrap {
|
|
14244
14577
|
border-right-width: 0;
|
|
14245
14578
|
}
|
|
14579
|
+
.ant-input-number-rtl .ant-input-number-handler-up {
|
|
14580
|
+
border-top-right-radius: 0;
|
|
14581
|
+
}
|
|
14582
|
+
.ant-input-number-rtl .ant-input-number-handler-down {
|
|
14583
|
+
border-bottom-right-radius: 0;
|
|
14584
|
+
}
|
|
14246
14585
|
.ant-input-number-rtl .ant-input-number-input {
|
|
14247
14586
|
direction: ltr;
|
|
14248
14587
|
text-align: right;
|
|
@@ -14380,10 +14719,6 @@ nz-footer {
|
|
|
14380
14719
|
nz-header {
|
|
14381
14720
|
display: block;
|
|
14382
14721
|
}
|
|
14383
|
-
.ant-form-item .ant-mentions,
|
|
14384
|
-
.ant-form-item textarea.ant-input {
|
|
14385
|
-
height: auto;
|
|
14386
|
-
}
|
|
14387
14722
|
.ant-form-item .ant-upload {
|
|
14388
14723
|
background: transparent;
|
|
14389
14724
|
}
|
|
@@ -14428,7 +14763,9 @@ nz-header {
|
|
|
14428
14763
|
.ant-form-item .ant-picker-calendar-year-select,
|
|
14429
14764
|
.ant-form-item .ant-picker-calendar-month-select,
|
|
14430
14765
|
.ant-form-item .ant-input-group .ant-select,
|
|
14431
|
-
.ant-form-item .ant-input-group .ant-cascader-picker
|
|
14766
|
+
.ant-form-item .ant-input-group .ant-cascader-picker,
|
|
14767
|
+
.ant-form-item .ant-input-number-group .ant-select,
|
|
14768
|
+
.ant-form-item .ant-input-number-group .ant-cascader-picker {
|
|
14432
14769
|
width: auto;
|
|
14433
14770
|
}
|
|
14434
14771
|
.ant-form-inline {
|
|
@@ -14464,6 +14801,9 @@ nz-header {
|
|
|
14464
14801
|
.ant-form-horizontal .ant-form-item-control {
|
|
14465
14802
|
flex: 1 1 0;
|
|
14466
14803
|
}
|
|
14804
|
+
.ant-form-horizontal .ant-form-item-control:not(.ant-col) {
|
|
14805
|
+
min-width: 0;
|
|
14806
|
+
}
|
|
14467
14807
|
.ant-form-vertical .ant-form-item {
|
|
14468
14808
|
flex-direction: column;
|
|
14469
14809
|
}
|
|
@@ -14605,10 +14945,10 @@ nz-header {
|
|
|
14605
14945
|
/* Some non-status related component style is in `components.less` */
|
|
14606
14946
|
/* To support leave along ErrorList. We add additional className to handle explain style */
|
|
14607
14947
|
}
|
|
14608
|
-
.ant-form-item-explain
|
|
14948
|
+
.ant-form-item-explain-error {
|
|
14609
14949
|
color: #a61d24;
|
|
14610
14950
|
}
|
|
14611
|
-
.ant-form-item-explain
|
|
14951
|
+
.ant-form-item-explain-warning {
|
|
14612
14952
|
color: #d89614;
|
|
14613
14953
|
}
|
|
14614
14954
|
.ant-form-item-has-feedback .ant-input {
|
|
@@ -14626,11 +14966,14 @@ nz-header {
|
|
|
14626
14966
|
.ant-form-item-has-feedback > .ant-select .ant-select-arrow,
|
|
14627
14967
|
.ant-form-item-has-feedback > .ant-select .ant-select-clear,
|
|
14628
14968
|
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
|
|
14629
|
-
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear
|
|
14969
|
+
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear,
|
|
14970
|
+
.ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow,
|
|
14971
|
+
.ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear {
|
|
14630
14972
|
right: 32px;
|
|
14631
14973
|
}
|
|
14632
14974
|
.ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value,
|
|
14633
|
-
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value
|
|
14975
|
+
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value,
|
|
14976
|
+
.ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value {
|
|
14634
14977
|
padding-right: 42px;
|
|
14635
14978
|
}
|
|
14636
14979
|
.ant-form-item-has-feedback .ant-cascader-picker-arrow {
|
|
@@ -14673,32 +15016,33 @@ nz-header {
|
|
|
14673
15016
|
.ant-form-item-has-warning .ant-form-item-split {
|
|
14674
15017
|
color: #d89614;
|
|
14675
15018
|
}
|
|
14676
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14677
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14678
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14679
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
15019
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
|
|
15020
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
|
|
15021
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
|
|
15022
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
|
|
14680
15023
|
background-color: transparent;
|
|
14681
15024
|
border-color: #d89614;
|
|
14682
15025
|
}
|
|
14683
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14684
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14685
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14686
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
15026
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
|
|
15027
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
|
|
15028
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
|
|
15029
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
|
|
14687
15030
|
border-color: #d89614;
|
|
15031
|
+
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14688
15032
|
border-right-width: 1px !important;
|
|
14689
15033
|
outline: 0;
|
|
14690
|
-
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14691
15034
|
}
|
|
14692
15035
|
.ant-form-item-has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
|
|
14693
15036
|
border-color: #d89614;
|
|
15037
|
+
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14694
15038
|
border-right-width: 1px !important;
|
|
14695
15039
|
outline: 0;
|
|
14696
|
-
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14697
15040
|
}
|
|
14698
15041
|
.ant-form-item-has-warning .ant-input-prefix {
|
|
14699
15042
|
color: #d89614;
|
|
14700
15043
|
}
|
|
14701
|
-
.ant-form-item-has-warning .ant-input-group-addon
|
|
15044
|
+
.ant-form-item-has-warning .ant-input-group-addon,
|
|
15045
|
+
.ant-form-item-has-warning .ant-input-number-group-addon {
|
|
14702
15046
|
color: #d89614;
|
|
14703
15047
|
border-color: #d89614;
|
|
14704
15048
|
}
|
|
@@ -14716,9 +15060,9 @@ nz-header {
|
|
|
14716
15060
|
.ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector,
|
|
14717
15061
|
.ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector {
|
|
14718
15062
|
border-color: #d89614;
|
|
15063
|
+
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14719
15064
|
border-right-width: 1px !important;
|
|
14720
15065
|
outline: 0;
|
|
14721
|
-
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14722
15066
|
}
|
|
14723
15067
|
.ant-form-item-has-warning .ant-input-number,
|
|
14724
15068
|
.ant-form-item-has-warning .ant-picker {
|
|
@@ -14730,9 +15074,9 @@ nz-header {
|
|
|
14730
15074
|
.ant-form-item-has-warning .ant-input-number:focus,
|
|
14731
15075
|
.ant-form-item-has-warning .ant-picker:focus {
|
|
14732
15076
|
border-color: #d89614;
|
|
15077
|
+
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14733
15078
|
border-right-width: 1px !important;
|
|
14734
15079
|
outline: 0;
|
|
14735
|
-
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14736
15080
|
}
|
|
14737
15081
|
.ant-form-item-has-warning .ant-input-number:not([disabled]):hover,
|
|
14738
15082
|
.ant-form-item-has-warning .ant-picker:not([disabled]):hover {
|
|
@@ -14741,39 +15085,40 @@ nz-header {
|
|
|
14741
15085
|
}
|
|
14742
15086
|
.ant-form-item-has-warning .ant-cascader-picker:focus .ant-cascader-input {
|
|
14743
15087
|
border-color: #d89614;
|
|
15088
|
+
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14744
15089
|
border-right-width: 1px !important;
|
|
14745
15090
|
outline: 0;
|
|
14746
|
-
box-shadow: 0 0 0 2px rgba(216, 150, 20, 0.2);
|
|
14747
15091
|
}
|
|
14748
15092
|
.ant-form-item-has-error .ant-form-item-split {
|
|
14749
15093
|
color: #a61d24;
|
|
14750
15094
|
}
|
|
14751
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14752
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14753
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14754
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
15095
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
|
|
15096
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
|
|
15097
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
|
|
15098
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
|
|
14755
15099
|
background-color: transparent;
|
|
14756
15100
|
border-color: #a61d24;
|
|
14757
15101
|
}
|
|
14758
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14759
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14760
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14761
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
15102
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
|
|
15103
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
|
|
15104
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
|
|
15105
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
|
|
14762
15106
|
border-color: #a61d24;
|
|
15107
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14763
15108
|
border-right-width: 1px !important;
|
|
14764
15109
|
outline: 0;
|
|
14765
|
-
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14766
15110
|
}
|
|
14767
15111
|
.ant-form-item-has-error .ant-calendar-picker-open .ant-calendar-picker-input {
|
|
14768
15112
|
border-color: #a61d24;
|
|
15113
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14769
15114
|
border-right-width: 1px !important;
|
|
14770
15115
|
outline: 0;
|
|
14771
|
-
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14772
15116
|
}
|
|
14773
15117
|
.ant-form-item-has-error .ant-input-prefix {
|
|
14774
15118
|
color: #a61d24;
|
|
14775
15119
|
}
|
|
14776
|
-
.ant-form-item-has-error .ant-input-group-addon
|
|
15120
|
+
.ant-form-item-has-error .ant-input-group-addon,
|
|
15121
|
+
.ant-form-item-has-error .ant-input-number-group-addon {
|
|
14777
15122
|
color: #a61d24;
|
|
14778
15123
|
border-color: #a61d24;
|
|
14779
15124
|
}
|
|
@@ -14791,11 +15136,12 @@ nz-header {
|
|
|
14791
15136
|
.ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector,
|
|
14792
15137
|
.ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector {
|
|
14793
15138
|
border-color: #a61d24;
|
|
15139
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14794
15140
|
border-right-width: 1px !important;
|
|
14795
15141
|
outline: 0;
|
|
14796
|
-
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14797
15142
|
}
|
|
14798
|
-
.ant-form-item-has-error .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector
|
|
15143
|
+
.ant-form-item-has-error .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector,
|
|
15144
|
+
.ant-form-item-has-error .ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
|
|
14799
15145
|
background-color: inherit;
|
|
14800
15146
|
border: 0;
|
|
14801
15147
|
box-shadow: none;
|
|
@@ -14813,9 +15159,9 @@ nz-header {
|
|
|
14813
15159
|
.ant-form-item-has-error .ant-input-number:focus,
|
|
14814
15160
|
.ant-form-item-has-error .ant-picker:focus {
|
|
14815
15161
|
border-color: #a61d24;
|
|
15162
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14816
15163
|
border-right-width: 1px !important;
|
|
14817
15164
|
outline: 0;
|
|
14818
|
-
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14819
15165
|
}
|
|
14820
15166
|
.ant-form-item-has-error .ant-input-number:not([disabled]):hover,
|
|
14821
15167
|
.ant-form-item-has-error .ant-picker:not([disabled]):hover {
|
|
@@ -14830,9 +15176,9 @@ nz-header {
|
|
|
14830
15176
|
.ant-form-item-has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor,
|
|
14831
15177
|
.ant-form-item-has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
|
|
14832
15178
|
border-color: #a61d24;
|
|
15179
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14833
15180
|
border-right-width: 1px !important;
|
|
14834
15181
|
outline: 0;
|
|
14835
|
-
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14836
15182
|
}
|
|
14837
15183
|
.ant-form-item-has-error .ant-cascader-picker:hover .ant-cascader-picker-label:hover + .ant-cascader-input.ant-input {
|
|
14838
15184
|
border-color: #a61d24;
|
|
@@ -14840,9 +15186,9 @@ nz-header {
|
|
|
14840
15186
|
.ant-form-item-has-error .ant-cascader-picker:focus .ant-cascader-input {
|
|
14841
15187
|
background-color: transparent;
|
|
14842
15188
|
border-color: #a61d24;
|
|
15189
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14843
15190
|
border-right-width: 1px !important;
|
|
14844
15191
|
outline: 0;
|
|
14845
|
-
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
14846
15192
|
}
|
|
14847
15193
|
.ant-form-item-has-error .ant-transfer-list {
|
|
14848
15194
|
border-color: #a61d24;
|
|
@@ -14860,9 +15206,9 @@ nz-header {
|
|
|
14860
15206
|
}
|
|
14861
15207
|
.ant-form-item-has-error .ant-transfer-list-search:not([disabled]):focus {
|
|
14862
15208
|
border-color: #177ddc;
|
|
15209
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
14863
15210
|
border-right-width: 1px !important;
|
|
14864
15211
|
outline: 0;
|
|
14865
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
14866
15212
|
}
|
|
14867
15213
|
.ant-input-rtl .ant-form-item-has-error .ant-transfer-list-search:not([disabled]):focus {
|
|
14868
15214
|
border-right-width: 0;
|
|
@@ -14874,6 +15220,16 @@ nz-header {
|
|
|
14874
15220
|
.ant-form-item-has-error .ant-radio-button-wrapper:not(:first-child)::before {
|
|
14875
15221
|
background-color: #a61d24;
|
|
14876
15222
|
}
|
|
15223
|
+
.ant-form-item-has-error .ant-mentions {
|
|
15224
|
+
border-color: #a61d24 !important;
|
|
15225
|
+
}
|
|
15226
|
+
.ant-form-item-has-error .ant-mentions-focused,
|
|
15227
|
+
.ant-form-item-has-error .ant-mentions:focus {
|
|
15228
|
+
border-color: #a61d24;
|
|
15229
|
+
box-shadow: 0 0 0 2px rgba(166, 29, 36, 0.2);
|
|
15230
|
+
border-right-width: 1px !important;
|
|
15231
|
+
outline: 0;
|
|
15232
|
+
}
|
|
14877
15233
|
.ant-form-item-is-validating.ant-form-item-has-feedback .ant-form-item-children-icon {
|
|
14878
15234
|
display: inline-block;
|
|
14879
15235
|
color: #177ddc;
|
|
@@ -14963,9 +15319,11 @@ nz-header {
|
|
|
14963
15319
|
font-feature-settings: 'tnum';
|
|
14964
15320
|
margin-bottom: 24px;
|
|
14965
15321
|
vertical-align: top;
|
|
15322
|
+
transition: margin-bottom 0.3s 0.017s linear;
|
|
14966
15323
|
}
|
|
14967
15324
|
.ant-form-item-with-help {
|
|
14968
15325
|
margin-bottom: 0;
|
|
15326
|
+
transition: none;
|
|
14969
15327
|
}
|
|
14970
15328
|
.ant-form-item-hidden,
|
|
14971
15329
|
.ant-form-item-hidden.ant-row {
|
|
@@ -14986,6 +15344,7 @@ nz-header {
|
|
|
14986
15344
|
position: relative;
|
|
14987
15345
|
display: inline-flex;
|
|
14988
15346
|
align-items: center;
|
|
15347
|
+
max-width: 100%;
|
|
14989
15348
|
height: 32px;
|
|
14990
15349
|
color: rgba(255, 255, 255, 0.85);
|
|
14991
15350
|
font-size: 14px;
|
|
@@ -15050,80 +15409,52 @@ nz-header {
|
|
|
15050
15409
|
.ant-form-item-explain,
|
|
15051
15410
|
.ant-form-item-extra {
|
|
15052
15411
|
clear: both;
|
|
15053
|
-
min-height: 24px;
|
|
15054
15412
|
color: rgba(255, 255, 255, 0.45);
|
|
15055
15413
|
font-size: 14px;
|
|
15056
15414
|
line-height: 1.5715;
|
|
15057
15415
|
transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
15058
15416
|
}
|
|
15059
|
-
.ant-form-item
|
|
15060
|
-
|
|
15061
|
-
|
|
15062
|
-
|
|
15063
|
-
.ant-show-help-appear {
|
|
15064
|
-
animation-duration: 0.3s;
|
|
15065
|
-
animation-fill-mode: both;
|
|
15066
|
-
animation-play-state: paused;
|
|
15417
|
+
.ant-form-item-explain-connected {
|
|
15418
|
+
height: 0;
|
|
15419
|
+
min-height: 0;
|
|
15420
|
+
opacity: 0;
|
|
15067
15421
|
}
|
|
15068
|
-
.ant-
|
|
15069
|
-
|
|
15070
|
-
animation-fill-mode: both;
|
|
15071
|
-
animation-play-state: paused;
|
|
15422
|
+
.ant-form-item-extra {
|
|
15423
|
+
min-height: 24px;
|
|
15072
15424
|
}
|
|
15073
|
-
.ant-
|
|
15074
|
-
|
|
15075
|
-
animation-name: antShowHelpIn;
|
|
15076
|
-
animation-play-state: running;
|
|
15425
|
+
.ant-form-item .ant-input-textarea-show-count::after {
|
|
15426
|
+
margin-bottom: -22px;
|
|
15077
15427
|
}
|
|
15078
|
-
.ant-
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15428
|
+
.ant-form-item-with-help .ant-form-item-explain {
|
|
15429
|
+
height: auto;
|
|
15430
|
+
min-height: 24px;
|
|
15431
|
+
opacity: 1;
|
|
15082
15432
|
}
|
|
15083
|
-
.ant-show-help
|
|
15084
|
-
.
|
|
15085
|
-
animation-duration: 0.3s;
|
|
15086
|
-
animation-fill-mode: both;
|
|
15087
|
-
animation-play-state: paused;
|
|
15433
|
+
.ant-show-help {
|
|
15434
|
+
transition: height 0.3s linear, min-height 0.3s linear, margin-bottom 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
15088
15435
|
}
|
|
15089
15436
|
.ant-show-help-leave {
|
|
15090
|
-
|
|
15091
|
-
animation-fill-mode: both;
|
|
15092
|
-
animation-play-state: paused;
|
|
15437
|
+
min-height: 24px;
|
|
15093
15438
|
}
|
|
15094
|
-
.ant-show-help-
|
|
15095
|
-
|
|
15096
|
-
animation-name: antShowHelpIn;
|
|
15097
|
-
animation-play-state: running;
|
|
15439
|
+
.ant-show-help-leave-active {
|
|
15440
|
+
min-height: 0;
|
|
15098
15441
|
}
|
|
15099
|
-
.ant-show-help-
|
|
15100
|
-
|
|
15101
|
-
|
|
15102
|
-
pointer-events: none;
|
|
15442
|
+
.ant-show-help-item {
|
|
15443
|
+
overflow: hidden;
|
|
15444
|
+
transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
|
|
15103
15445
|
}
|
|
15104
|
-
.ant-show-help-
|
|
15105
|
-
.ant-show-help-
|
|
15446
|
+
.ant-show-help-item-appear,
|
|
15447
|
+
.ant-show-help-item-enter {
|
|
15448
|
+
transform: translateY(-5px);
|
|
15106
15449
|
opacity: 0;
|
|
15107
|
-
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
15108
|
-
}
|
|
15109
|
-
.ant-show-help-leave {
|
|
15110
|
-
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
15111
15450
|
}
|
|
15112
|
-
|
|
15113
|
-
|
|
15114
|
-
|
|
15115
|
-
|
|
15116
|
-
}
|
|
15117
|
-
100% {
|
|
15118
|
-
transform: translateY(0);
|
|
15119
|
-
opacity: 1;
|
|
15120
|
-
}
|
|
15451
|
+
.ant-show-help-item-appear-active,
|
|
15452
|
+
.ant-show-help-item-enter-active {
|
|
15453
|
+
transform: translateY(0);
|
|
15454
|
+
opacity: 1;
|
|
15121
15455
|
}
|
|
15122
|
-
|
|
15123
|
-
|
|
15124
|
-
transform: translateY(-5px);
|
|
15125
|
-
opacity: 0;
|
|
15126
|
-
}
|
|
15456
|
+
.ant-show-help-item-leave-active {
|
|
15457
|
+
transform: translateY(-5px);
|
|
15127
15458
|
}
|
|
15128
15459
|
@keyframes diffZoomIn1 {
|
|
15129
15460
|
0% {
|
|
@@ -15196,12 +15527,15 @@ nz-header {
|
|
|
15196
15527
|
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow,
|
|
15197
15528
|
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear,
|
|
15198
15529
|
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
|
|
15199
|
-
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear
|
|
15530
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear,
|
|
15531
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow,
|
|
15532
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear {
|
|
15200
15533
|
right: auto;
|
|
15201
15534
|
left: 32px;
|
|
15202
15535
|
}
|
|
15203
15536
|
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value,
|
|
15204
|
-
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value
|
|
15537
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value,
|
|
15538
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value {
|
|
15205
15539
|
padding-right: 0;
|
|
15206
15540
|
padding-left: 42px;
|
|
15207
15541
|
}
|
|
@@ -15236,6 +15570,9 @@ nz-header {
|
|
|
15236
15570
|
margin-right: 0;
|
|
15237
15571
|
margin-left: 16px;
|
|
15238
15572
|
}
|
|
15573
|
+
nz-form-item.ant-form-item {
|
|
15574
|
+
transition: none;
|
|
15575
|
+
}
|
|
15239
15576
|
.ant-list .ant-card {
|
|
15240
15577
|
background: transparent;
|
|
15241
15578
|
}
|
|
@@ -15649,7 +15986,7 @@ nz-list-item-extra {
|
|
|
15649
15986
|
content: '';
|
|
15650
15987
|
}
|
|
15651
15988
|
.ant-menu.ant-menu-root:focus-visible {
|
|
15652
|
-
box-shadow: 0 0 0 2px
|
|
15989
|
+
box-shadow: 0 0 0 2px #111b26;
|
|
15653
15990
|
}
|
|
15654
15991
|
.ant-menu ul,
|
|
15655
15992
|
.ant-menu ol {
|
|
@@ -15693,6 +16030,9 @@ nz-list-item-extra {
|
|
|
15693
16030
|
cursor: initial;
|
|
15694
16031
|
transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
15695
16032
|
}
|
|
16033
|
+
.ant-menu-title-content {
|
|
16034
|
+
transition: color 0.3s;
|
|
16035
|
+
}
|
|
15696
16036
|
.ant-menu-item a {
|
|
15697
16037
|
color: rgba(255, 255, 255, 0.85);
|
|
15698
16038
|
}
|
|
@@ -15715,10 +16055,14 @@ nz-list-item-extra {
|
|
|
15715
16055
|
color: #177ddc;
|
|
15716
16056
|
}
|
|
15717
16057
|
.ant-menu-item-divider {
|
|
15718
|
-
height: 1px;
|
|
15719
16058
|
overflow: hidden;
|
|
15720
16059
|
line-height: 0;
|
|
15721
|
-
|
|
16060
|
+
border-color: #303030;
|
|
16061
|
+
border-style: solid;
|
|
16062
|
+
border-width: 1px 0 0;
|
|
16063
|
+
}
|
|
16064
|
+
.ant-menu-item-divider-dashed {
|
|
16065
|
+
border-style: dashed;
|
|
15722
16066
|
}
|
|
15723
16067
|
.ant-menu-horizontal .ant-menu-item,
|
|
15724
16068
|
.ant-menu-horizontal .ant-menu-submenu {
|
|
@@ -15827,15 +16171,11 @@ nz-list-item-extra {
|
|
|
15827
16171
|
}
|
|
15828
16172
|
.ant-menu-item:focus-visible,
|
|
15829
16173
|
.ant-menu-submenu-title:focus-visible {
|
|
15830
|
-
box-shadow: 0 0 0 2px
|
|
16174
|
+
box-shadow: 0 0 0 2px #111b26;
|
|
15831
16175
|
}
|
|
15832
16176
|
.ant-menu > .ant-menu-item-divider {
|
|
15833
|
-
height: 1px;
|
|
15834
16177
|
margin: 1px 0;
|
|
15835
16178
|
padding: 0;
|
|
15836
|
-
overflow: hidden;
|
|
15837
|
-
line-height: 0;
|
|
15838
|
-
background-color: #303030;
|
|
15839
16179
|
}
|
|
15840
16180
|
.ant-menu-submenu-popup {
|
|
15841
16181
|
position: absolute;
|
|
@@ -16219,6 +16559,10 @@ nz-list-item-extra {
|
|
|
16219
16559
|
.ant-layout-header .ant-menu {
|
|
16220
16560
|
line-height: inherit;
|
|
16221
16561
|
}
|
|
16562
|
+
.ant-menu-inline-collapsed-tooltip a,
|
|
16563
|
+
.ant-menu-inline-collapsed-tooltip a:hover {
|
|
16564
|
+
color: #fff;
|
|
16565
|
+
}
|
|
16222
16566
|
.ant-menu-light .ant-menu-item:hover,
|
|
16223
16567
|
.ant-menu-light .ant-menu-item-active,
|
|
16224
16568
|
.ant-menu-light .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
|
|
@@ -16538,6 +16882,8 @@ nz-list-item-extra {
|
|
|
16538
16882
|
border: 1px solid #434343;
|
|
16539
16883
|
border-radius: 2px;
|
|
16540
16884
|
transition: all 0.3s;
|
|
16885
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
16886
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
16541
16887
|
display: block;
|
|
16542
16888
|
height: auto;
|
|
16543
16889
|
min-height: 32px;
|
|
@@ -16549,6 +16895,7 @@ nz-list-item-extra {
|
|
|
16549
16895
|
}
|
|
16550
16896
|
.ant-mention-wrapper .ant-mention-editor::placeholder {
|
|
16551
16897
|
color: rgba(255, 255, 255, 0.3);
|
|
16898
|
+
user-select: none;
|
|
16552
16899
|
}
|
|
16553
16900
|
.ant-mention-wrapper .ant-mention-editor:placeholder-shown {
|
|
16554
16901
|
text-overflow: ellipsis;
|
|
@@ -16558,6 +16905,7 @@ nz-list-item-extra {
|
|
|
16558
16905
|
}
|
|
16559
16906
|
.ant-mention-wrapper .ant-mention-editor::placeholder {
|
|
16560
16907
|
color: rgba(255, 255, 255, 0.3);
|
|
16908
|
+
user-select: none;
|
|
16561
16909
|
}
|
|
16562
16910
|
.ant-mention-wrapper .ant-mention-editor:placeholder-shown {
|
|
16563
16911
|
text-overflow: ellipsis;
|
|
@@ -16573,9 +16921,9 @@ nz-list-item-extra {
|
|
|
16573
16921
|
.ant-mention-wrapper .ant-mention-editor:focus,
|
|
16574
16922
|
.ant-mention-wrapper .ant-mention-editor-focused {
|
|
16575
16923
|
border-color: #177ddc;
|
|
16924
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
16576
16925
|
border-right-width: 1px !important;
|
|
16577
16926
|
outline: 0;
|
|
16578
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
16579
16927
|
}
|
|
16580
16928
|
.ant-input-rtl .ant-mention-wrapper .ant-mention-editor:focus,
|
|
16581
16929
|
.ant-input-rtl .ant-mention-wrapper .ant-mention-editor-focused {
|
|
@@ -16584,6 +16932,8 @@ nz-list-item-extra {
|
|
|
16584
16932
|
}
|
|
16585
16933
|
.ant-mention-wrapper .ant-mention-editor-disabled {
|
|
16586
16934
|
background-color: rgba(255, 255, 255, 0.08);
|
|
16935
|
+
border-color: #434343;
|
|
16936
|
+
box-shadow: none;
|
|
16587
16937
|
cursor: not-allowed;
|
|
16588
16938
|
opacity: 1;
|
|
16589
16939
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -16595,6 +16945,8 @@ nz-list-item-extra {
|
|
|
16595
16945
|
}
|
|
16596
16946
|
.ant-mention-wrapper .ant-mention-editor[disabled] {
|
|
16597
16947
|
background-color: rgba(255, 255, 255, 0.08);
|
|
16948
|
+
border-color: #434343;
|
|
16949
|
+
box-shadow: none;
|
|
16598
16950
|
cursor: not-allowed;
|
|
16599
16951
|
opacity: 1;
|
|
16600
16952
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -16638,9 +16990,9 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
16638
16990
|
}
|
|
16639
16991
|
.ant-mention-wrapper.ant-mention-active:not(.disabled) .ant-mention-editor {
|
|
16640
16992
|
border-color: #177ddc;
|
|
16993
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
16641
16994
|
border-right-width: 1px !important;
|
|
16642
16995
|
outline: 0;
|
|
16643
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
16644
16996
|
}
|
|
16645
16997
|
.ant-input-rtl .ant-mention-wrapper.ant-mention-active:not(.disabled) .ant-mention-editor {
|
|
16646
16998
|
border-right-width: 0;
|
|
@@ -16648,6 +17000,8 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
16648
17000
|
}
|
|
16649
17001
|
.ant-mention-wrapper.disabled .ant-mention-editor {
|
|
16650
17002
|
background-color: rgba(255, 255, 255, 0.08);
|
|
17003
|
+
border-color: #434343;
|
|
17004
|
+
box-shadow: none;
|
|
16651
17005
|
cursor: not-allowed;
|
|
16652
17006
|
opacity: 1;
|
|
16653
17007
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -17003,6 +17357,7 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
17003
17357
|
.ant-modal-centered .ant-modal {
|
|
17004
17358
|
top: 0;
|
|
17005
17359
|
display: inline-block;
|
|
17360
|
+
padding-bottom: 0;
|
|
17006
17361
|
text-align: left;
|
|
17007
17362
|
vertical-align: middle;
|
|
17008
17363
|
}
|
|
@@ -17099,6 +17454,42 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
17099
17454
|
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
|
|
17100
17455
|
color: #49aa19;
|
|
17101
17456
|
}
|
|
17457
|
+
.ant-modal-wrap-rtl {
|
|
17458
|
+
direction: rtl;
|
|
17459
|
+
}
|
|
17460
|
+
.ant-modal-wrap-rtl .ant-modal-close {
|
|
17461
|
+
right: initial;
|
|
17462
|
+
left: 0;
|
|
17463
|
+
}
|
|
17464
|
+
.ant-modal-wrap-rtl .ant-modal-footer {
|
|
17465
|
+
text-align: left;
|
|
17466
|
+
}
|
|
17467
|
+
.ant-modal-wrap-rtl .ant-modal-footer .ant-btn + .ant-btn {
|
|
17468
|
+
margin-right: 8px;
|
|
17469
|
+
margin-left: 0;
|
|
17470
|
+
}
|
|
17471
|
+
.ant-modal-wrap-rtl .ant-modal-confirm-body {
|
|
17472
|
+
direction: rtl;
|
|
17473
|
+
}
|
|
17474
|
+
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon {
|
|
17475
|
+
float: right;
|
|
17476
|
+
margin-right: 0;
|
|
17477
|
+
margin-left: 16px;
|
|
17478
|
+
}
|
|
17479
|
+
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
|
|
17480
|
+
margin-right: 38px;
|
|
17481
|
+
margin-left: 0;
|
|
17482
|
+
}
|
|
17483
|
+
.ant-modal-wrap-rtl .ant-modal-confirm-btns {
|
|
17484
|
+
float: left;
|
|
17485
|
+
}
|
|
17486
|
+
.ant-modal-wrap-rtl .ant-modal-confirm-btns .ant-btn + .ant-btn {
|
|
17487
|
+
margin-right: 8px;
|
|
17488
|
+
margin-left: 0;
|
|
17489
|
+
}
|
|
17490
|
+
.ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
|
|
17491
|
+
text-align: right;
|
|
17492
|
+
}
|
|
17102
17493
|
.ant-modal .ant-picker-clear,
|
|
17103
17494
|
.ant-modal .ant-slider-handle,
|
|
17104
17495
|
.ant-modal .ant-anchor-wrapper,
|
|
@@ -17285,42 +17676,6 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
17285
17676
|
.ant-modal .ant-tree-show-line .ant-tree-switcher {
|
|
17286
17677
|
background: #1f1f1f;
|
|
17287
17678
|
}
|
|
17288
|
-
.ant-modal-wrap-rtl {
|
|
17289
|
-
direction: rtl;
|
|
17290
|
-
}
|
|
17291
|
-
.ant-modal-wrap-rtl .ant-modal-close {
|
|
17292
|
-
right: initial;
|
|
17293
|
-
left: 0;
|
|
17294
|
-
}
|
|
17295
|
-
.ant-modal-wrap-rtl .ant-modal-footer {
|
|
17296
|
-
text-align: left;
|
|
17297
|
-
}
|
|
17298
|
-
.ant-modal-wrap-rtl .ant-modal-footer .ant-btn + .ant-btn {
|
|
17299
|
-
margin-right: 8px;
|
|
17300
|
-
margin-left: 0;
|
|
17301
|
-
}
|
|
17302
|
-
.ant-modal-wrap-rtl .ant-modal-confirm-body {
|
|
17303
|
-
direction: rtl;
|
|
17304
|
-
}
|
|
17305
|
-
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon {
|
|
17306
|
-
float: right;
|
|
17307
|
-
margin-right: 0;
|
|
17308
|
-
margin-left: 16px;
|
|
17309
|
-
}
|
|
17310
|
-
.ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
|
|
17311
|
-
margin-right: 38px;
|
|
17312
|
-
margin-left: 0;
|
|
17313
|
-
}
|
|
17314
|
-
.ant-modal-wrap-rtl .ant-modal-confirm-btns {
|
|
17315
|
-
float: left;
|
|
17316
|
-
}
|
|
17317
|
-
.ant-modal-wrap-rtl .ant-modal-confirm-btns .ant-btn + .ant-btn {
|
|
17318
|
-
margin-right: 8px;
|
|
17319
|
-
margin-left: 0;
|
|
17320
|
-
}
|
|
17321
|
-
.ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
|
|
17322
|
-
text-align: right;
|
|
17323
|
-
}
|
|
17324
17679
|
.ant-notification .ant-picker-clear,
|
|
17325
17680
|
.ant-notification .ant-slider-handle,
|
|
17326
17681
|
.ant-notification .ant-anchor-wrapper,
|
|
@@ -18127,6 +18482,8 @@ nz-page-header-footer {
|
|
|
18127
18482
|
border: 1px solid #434343;
|
|
18128
18483
|
border-radius: 2px;
|
|
18129
18484
|
transition: all 0.3s;
|
|
18485
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
18486
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
18130
18487
|
width: 50px;
|
|
18131
18488
|
height: 32px;
|
|
18132
18489
|
margin: 0 8px;
|
|
@@ -18136,6 +18493,7 @@ nz-page-header-footer {
|
|
|
18136
18493
|
}
|
|
18137
18494
|
.ant-pagination-options-quick-jumper input::placeholder {
|
|
18138
18495
|
color: rgba(255, 255, 255, 0.3);
|
|
18496
|
+
user-select: none;
|
|
18139
18497
|
}
|
|
18140
18498
|
.ant-pagination-options-quick-jumper input:placeholder-shown {
|
|
18141
18499
|
text-overflow: ellipsis;
|
|
@@ -18145,6 +18503,7 @@ nz-page-header-footer {
|
|
|
18145
18503
|
}
|
|
18146
18504
|
.ant-pagination-options-quick-jumper input::placeholder {
|
|
18147
18505
|
color: rgba(255, 255, 255, 0.3);
|
|
18506
|
+
user-select: none;
|
|
18148
18507
|
}
|
|
18149
18508
|
.ant-pagination-options-quick-jumper input:placeholder-shown {
|
|
18150
18509
|
text-overflow: ellipsis;
|
|
@@ -18160,9 +18519,9 @@ nz-page-header-footer {
|
|
|
18160
18519
|
.ant-pagination-options-quick-jumper input:focus,
|
|
18161
18520
|
.ant-pagination-options-quick-jumper input-focused {
|
|
18162
18521
|
border-color: #177ddc;
|
|
18522
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
18163
18523
|
border-right-width: 1px !important;
|
|
18164
18524
|
outline: 0;
|
|
18165
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
18166
18525
|
}
|
|
18167
18526
|
.ant-input-rtl .ant-pagination-options-quick-jumper input:focus,
|
|
18168
18527
|
.ant-input-rtl .ant-pagination-options-quick-jumper input-focused {
|
|
@@ -18171,6 +18530,8 @@ nz-page-header-footer {
|
|
|
18171
18530
|
}
|
|
18172
18531
|
.ant-pagination-options-quick-jumper input-disabled {
|
|
18173
18532
|
background-color: rgba(255, 255, 255, 0.08);
|
|
18533
|
+
border-color: #434343;
|
|
18534
|
+
box-shadow: none;
|
|
18174
18535
|
cursor: not-allowed;
|
|
18175
18536
|
opacity: 1;
|
|
18176
18537
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -18182,6 +18543,8 @@ nz-page-header-footer {
|
|
|
18182
18543
|
}
|
|
18183
18544
|
.ant-pagination-options-quick-jumper input[disabled] {
|
|
18184
18545
|
background-color: rgba(255, 255, 255, 0.08);
|
|
18546
|
+
border-color: #434343;
|
|
18547
|
+
box-shadow: none;
|
|
18185
18548
|
cursor: not-allowed;
|
|
18186
18549
|
opacity: 1;
|
|
18187
18550
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -18256,6 +18619,10 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18256
18619
|
.ant-pagination-simple .ant-pagination-simple-pager input:hover {
|
|
18257
18620
|
border-color: #177ddc;
|
|
18258
18621
|
}
|
|
18622
|
+
.ant-pagination-simple .ant-pagination-simple-pager input:focus {
|
|
18623
|
+
border-color: #3c9be8;
|
|
18624
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
18625
|
+
}
|
|
18259
18626
|
.ant-pagination-simple .ant-pagination-simple-pager input[disabled] {
|
|
18260
18627
|
color: rgba(255, 255, 255, 0.3);
|
|
18261
18628
|
background: rgba(255, 255, 255, 0.08);
|
|
@@ -18331,7 +18698,6 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18331
18698
|
}
|
|
18332
18699
|
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active {
|
|
18333
18700
|
background: rgba(255, 255, 255, 0.25);
|
|
18334
|
-
border-color: transparent;
|
|
18335
18701
|
}
|
|
18336
18702
|
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {
|
|
18337
18703
|
color: #000;
|
|
@@ -18907,7 +19273,6 @@ nz-pagination {
|
|
|
18907
19273
|
font-feature-settings: 'tnum';
|
|
18908
19274
|
display: inline-block;
|
|
18909
19275
|
font-size: 0;
|
|
18910
|
-
line-height: unset;
|
|
18911
19276
|
}
|
|
18912
19277
|
.ant-radio-group .ant-badge-count {
|
|
18913
19278
|
z-index: 1;
|
|
@@ -18931,6 +19296,9 @@ nz-pagination {
|
|
|
18931
19296
|
margin-right: 8px;
|
|
18932
19297
|
cursor: pointer;
|
|
18933
19298
|
}
|
|
19299
|
+
.ant-radio-wrapper-disabled {
|
|
19300
|
+
cursor: not-allowed;
|
|
19301
|
+
}
|
|
18934
19302
|
.ant-radio-wrapper::after {
|
|
18935
19303
|
display: inline-block;
|
|
18936
19304
|
width: 0;
|
|
@@ -18959,7 +19327,7 @@ nz-pagination {
|
|
|
18959
19327
|
border-color: #177ddc;
|
|
18960
19328
|
}
|
|
18961
19329
|
.ant-radio-input:focus + .ant-radio-inner {
|
|
18962
|
-
box-shadow: 0 0 0 3px
|
|
19330
|
+
box-shadow: 0 0 0 3px #111b26;
|
|
18963
19331
|
}
|
|
18964
19332
|
.ant-radio-checked::after {
|
|
18965
19333
|
position: absolute;
|
|
@@ -18994,15 +19362,17 @@ nz-pagination {
|
|
|
18994
19362
|
}
|
|
18995
19363
|
.ant-radio-inner::after {
|
|
18996
19364
|
position: absolute;
|
|
18997
|
-
top:
|
|
18998
|
-
left:
|
|
19365
|
+
top: 50%;
|
|
19366
|
+
left: 50%;
|
|
18999
19367
|
display: block;
|
|
19000
|
-
width:
|
|
19001
|
-
height:
|
|
19368
|
+
width: 16px;
|
|
19369
|
+
height: 16px;
|
|
19370
|
+
margin-top: -8px;
|
|
19371
|
+
margin-left: -8px;
|
|
19002
19372
|
background-color: #177ddc;
|
|
19003
19373
|
border-top: 0;
|
|
19004
19374
|
border-left: 0;
|
|
19005
|
-
border-radius:
|
|
19375
|
+
border-radius: 16px;
|
|
19006
19376
|
transform: scale(0);
|
|
19007
19377
|
opacity: 0;
|
|
19008
19378
|
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
@@ -19022,7 +19392,7 @@ nz-pagination {
|
|
|
19022
19392
|
border-color: #177ddc;
|
|
19023
19393
|
}
|
|
19024
19394
|
.ant-radio-checked .ant-radio-inner::after {
|
|
19025
|
-
transform: scale(
|
|
19395
|
+
transform: scale(0.5);
|
|
19026
19396
|
opacity: 1;
|
|
19027
19397
|
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
19028
19398
|
}
|
|
@@ -19113,7 +19483,7 @@ span.ant-radio + * {
|
|
|
19113
19483
|
color: #177ddc;
|
|
19114
19484
|
}
|
|
19115
19485
|
.ant-radio-button-wrapper:focus-within {
|
|
19116
|
-
box-shadow: 0 0 0 3px
|
|
19486
|
+
box-shadow: 0 0 0 3px #111b26;
|
|
19117
19487
|
}
|
|
19118
19488
|
.ant-radio-button-wrapper .ant-radio-inner,
|
|
19119
19489
|
.ant-radio-button-wrapper input[type='checkbox'],
|
|
@@ -19150,7 +19520,7 @@ span.ant-radio + * {
|
|
|
19150
19520
|
background-color: #388ed3;
|
|
19151
19521
|
}
|
|
19152
19522
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
|
19153
|
-
box-shadow: 0 0 0 3px
|
|
19523
|
+
box-shadow: 0 0 0 3px #111b26;
|
|
19154
19524
|
}
|
|
19155
19525
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
|
|
19156
19526
|
color: #fff;
|
|
@@ -19168,7 +19538,7 @@ span.ant-radio + * {
|
|
|
19168
19538
|
border-color: #388ed3;
|
|
19169
19539
|
}
|
|
19170
19540
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
|
19171
|
-
box-shadow: 0 0 0 3px
|
|
19541
|
+
box-shadow: 0 0 0 3px #111b26;
|
|
19172
19542
|
}
|
|
19173
19543
|
.ant-radio-button-wrapper-disabled {
|
|
19174
19544
|
color: rgba(255, 255, 255, 0.3);
|
|
@@ -19265,15 +19635,18 @@ span.ant-radio + * {
|
|
|
19265
19635
|
margin-right: 8px;
|
|
19266
19636
|
}
|
|
19267
19637
|
.ant-rate-star > div {
|
|
19268
|
-
transition: all 0.3s;
|
|
19638
|
+
transition: all 0.3s, outline 0s;
|
|
19269
19639
|
}
|
|
19270
19640
|
.ant-rate-star > div:hover,
|
|
19271
19641
|
.ant-rate-star > div:focus-visible {
|
|
19272
19642
|
transform: scale(1.1);
|
|
19273
19643
|
}
|
|
19274
|
-
.ant-rate-star > div:focus
|
|
19644
|
+
.ant-rate-star > div:focus {
|
|
19275
19645
|
outline: 0;
|
|
19276
19646
|
}
|
|
19647
|
+
.ant-rate-star > div:focus-visible {
|
|
19648
|
+
outline: 1px dashed #d8bd14;
|
|
19649
|
+
}
|
|
19277
19650
|
.ant-rate-star-first,
|
|
19278
19651
|
.ant-rate-star-second {
|
|
19279
19652
|
color: rgba(255, 255, 255, 0.12);
|
|
@@ -19347,6 +19720,7 @@ span.ant-radio + * {
|
|
|
19347
19720
|
user-select: none;
|
|
19348
19721
|
}
|
|
19349
19722
|
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
|
|
19723
|
+
transition: none;
|
|
19350
19724
|
pointer-events: none;
|
|
19351
19725
|
}
|
|
19352
19726
|
.ant-select-single .ant-select-selector::after,
|
|
@@ -19667,9 +20041,9 @@ span.ant-radio + * {
|
|
|
19667
20041
|
}
|
|
19668
20042
|
.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
19669
20043
|
border-color: #177ddc;
|
|
20044
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
19670
20045
|
border-right-width: 1px !important;
|
|
19671
20046
|
outline: 0;
|
|
19672
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
19673
20047
|
}
|
|
19674
20048
|
.ant-input-rtl .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
19675
20049
|
border-right-width: 0;
|
|
@@ -19696,6 +20070,7 @@ span.ant-radio + * {
|
|
|
19696
20070
|
}
|
|
19697
20071
|
.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button {
|
|
19698
20072
|
display: none;
|
|
20073
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
19699
20074
|
-webkit-appearance: none;
|
|
19700
20075
|
}
|
|
19701
20076
|
.ant-select:not(.ant-select-disabled):hover .ant-select-selector {
|
|
@@ -19709,6 +20084,7 @@ span.ant-radio + * {
|
|
|
19709
20084
|
.ant-select-selection-item {
|
|
19710
20085
|
flex: 1;
|
|
19711
20086
|
overflow: hidden;
|
|
20087
|
+
font-weight: normal;
|
|
19712
20088
|
white-space: nowrap;
|
|
19713
20089
|
text-overflow: ellipsis;
|
|
19714
20090
|
}
|
|
@@ -19743,7 +20119,7 @@ span.ant-radio + * {
|
|
|
19743
20119
|
-webkit-font-smoothing: antialiased;
|
|
19744
20120
|
-moz-osx-font-smoothing: grayscale;
|
|
19745
20121
|
position: absolute;
|
|
19746
|
-
top:
|
|
20122
|
+
top: 50%;
|
|
19747
20123
|
right: 11px;
|
|
19748
20124
|
width: 12px;
|
|
19749
20125
|
height: 12px;
|
|
@@ -19918,6 +20294,9 @@ span.ant-radio + * {
|
|
|
19918
20294
|
color: rgba(255, 255, 255, 0.3);
|
|
19919
20295
|
cursor: not-allowed;
|
|
19920
20296
|
}
|
|
20297
|
+
.ant-select-item-option-disabled.ant-select-item-option-selected {
|
|
20298
|
+
background-color: #141414;
|
|
20299
|
+
}
|
|
19921
20300
|
.ant-select-item-option-grouped {
|
|
19922
20301
|
padding-left: 24px;
|
|
19923
20302
|
}
|
|
@@ -20115,6 +20494,12 @@ span.ant-radio + * {
|
|
|
20115
20494
|
background-size: 400% 100%;
|
|
20116
20495
|
animation: ant-skeleton-loading 1.4s ease infinite;
|
|
20117
20496
|
}
|
|
20497
|
+
.ant-skeleton.ant-skeleton-block {
|
|
20498
|
+
width: 100%;
|
|
20499
|
+
}
|
|
20500
|
+
.ant-skeleton.ant-skeleton-block .ant-skeleton-button {
|
|
20501
|
+
width: 100%;
|
|
20502
|
+
}
|
|
20118
20503
|
.ant-skeleton-element {
|
|
20119
20504
|
display: inline-block;
|
|
20120
20505
|
width: auto;
|
|
@@ -20125,11 +20510,13 @@ span.ant-radio + * {
|
|
|
20125
20510
|
background: rgba(190, 190, 190, 0.2);
|
|
20126
20511
|
border-radius: 2px;
|
|
20127
20512
|
width: 64px;
|
|
20513
|
+
min-width: 64px;
|
|
20128
20514
|
height: 32px;
|
|
20129
20515
|
line-height: 32px;
|
|
20130
20516
|
}
|
|
20131
20517
|
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
|
|
20132
20518
|
width: 32px;
|
|
20519
|
+
min-width: 32px;
|
|
20133
20520
|
border-radius: 50%;
|
|
20134
20521
|
}
|
|
20135
20522
|
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {
|
|
@@ -20137,11 +20524,13 @@ span.ant-radio + * {
|
|
|
20137
20524
|
}
|
|
20138
20525
|
.ant-skeleton-element .ant-skeleton-button-lg {
|
|
20139
20526
|
width: 80px;
|
|
20527
|
+
min-width: 80px;
|
|
20140
20528
|
height: 40px;
|
|
20141
20529
|
line-height: 40px;
|
|
20142
20530
|
}
|
|
20143
20531
|
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
|
|
20144
20532
|
width: 40px;
|
|
20533
|
+
min-width: 40px;
|
|
20145
20534
|
border-radius: 50%;
|
|
20146
20535
|
}
|
|
20147
20536
|
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round {
|
|
@@ -20149,11 +20538,13 @@ span.ant-radio + * {
|
|
|
20149
20538
|
}
|
|
20150
20539
|
.ant-skeleton-element .ant-skeleton-button-sm {
|
|
20151
20540
|
width: 48px;
|
|
20541
|
+
min-width: 48px;
|
|
20152
20542
|
height: 24px;
|
|
20153
20543
|
line-height: 24px;
|
|
20154
20544
|
}
|
|
20155
20545
|
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
|
|
20156
20546
|
width: 24px;
|
|
20547
|
+
min-width: 24px;
|
|
20157
20548
|
border-radius: 50%;
|
|
20158
20549
|
}
|
|
20159
20550
|
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round {
|
|
@@ -20556,7 +20947,6 @@ span.ant-radio + * {
|
|
|
20556
20947
|
}
|
|
20557
20948
|
.ant-spin-blur {
|
|
20558
20949
|
clear: both;
|
|
20559
|
-
overflow: hidden;
|
|
20560
20950
|
opacity: 0.5;
|
|
20561
20951
|
user-select: none;
|
|
20562
20952
|
pointer-events: none;
|
|
@@ -21162,12 +21552,12 @@ nz-spin {
|
|
|
21162
21552
|
left: 0;
|
|
21163
21553
|
}
|
|
21164
21554
|
.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
|
|
21165
|
-
margin-top:
|
|
21555
|
+
margin-top: 13px;
|
|
21166
21556
|
margin-left: 0;
|
|
21167
21557
|
background: none;
|
|
21168
21558
|
}
|
|
21169
21559
|
.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
21170
|
-
top:
|
|
21560
|
+
top: 6.5px;
|
|
21171
21561
|
left: -9px;
|
|
21172
21562
|
margin: 0;
|
|
21173
21563
|
padding: 22px 0 4px;
|
|
@@ -21179,7 +21569,8 @@ nz-spin {
|
|
|
21179
21569
|
width: inherit;
|
|
21180
21570
|
}
|
|
21181
21571
|
.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon-dot {
|
|
21182
|
-
|
|
21572
|
+
top: -1px;
|
|
21573
|
+
left: -1px;
|
|
21183
21574
|
}
|
|
21184
21575
|
.ant-steps-navigation {
|
|
21185
21576
|
padding-top: 12px;
|
|
@@ -21461,7 +21852,7 @@ nz-spin {
|
|
|
21461
21852
|
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
|
|
21462
21853
|
}
|
|
21463
21854
|
.ant-switch-checked:focus {
|
|
21464
|
-
box-shadow: 0 0 0 2px
|
|
21855
|
+
box-shadow: 0 0 0 2px #111b26;
|
|
21465
21856
|
}
|
|
21466
21857
|
.ant-switch:focus:hover {
|
|
21467
21858
|
box-shadow: none;
|
|
@@ -21520,7 +21911,7 @@ nz-spin {
|
|
|
21520
21911
|
right: 0;
|
|
21521
21912
|
left: -30%;
|
|
21522
21913
|
}
|
|
21523
|
-
.ant-switch-loading-icon {
|
|
21914
|
+
.ant-switch-loading-icon.anticon {
|
|
21524
21915
|
position: relative;
|
|
21525
21916
|
top: 2px;
|
|
21526
21917
|
color: rgba(0, 0, 0, 0.65);
|
|
@@ -21634,9 +22025,7 @@ nz-switch {
|
|
|
21634
22025
|
border-bottom: 0;
|
|
21635
22026
|
}
|
|
21636
22027
|
.ant-table.ant-table-bordered > .ant-table-container {
|
|
21637
|
-
border: 1px solid #303030;
|
|
21638
|
-
border-right: 0;
|
|
21639
|
-
border-bottom: 0;
|
|
22028
|
+
border-left: 1px solid #303030;
|
|
21640
22029
|
}
|
|
21641
22030
|
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > thead > tr > th,
|
|
21642
22031
|
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr > th,
|
|
@@ -21699,6 +22088,10 @@ nz-switch {
|
|
|
21699
22088
|
border-right: 1px solid #303030;
|
|
21700
22089
|
content: '';
|
|
21701
22090
|
}
|
|
22091
|
+
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table,
|
|
22092
|
+
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table {
|
|
22093
|
+
border-top: 1px solid #303030;
|
|
22094
|
+
}
|
|
21702
22095
|
.ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-expanded-row > td,
|
|
21703
22096
|
.ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-placeholder > td {
|
|
21704
22097
|
border-right: 0;
|
|
@@ -21863,7 +22256,8 @@ nz-switch {
|
|
|
21863
22256
|
.ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td:last-child {
|
|
21864
22257
|
border-radius: 0;
|
|
21865
22258
|
}
|
|
21866
|
-
.ant-table-tbody > tr.ant-table-row:hover > td
|
|
22259
|
+
.ant-table-tbody > tr.ant-table-row:hover > td,
|
|
22260
|
+
.ant-table-tbody > tr > td.ant-table-cell-row-hover {
|
|
21867
22261
|
background: #262626;
|
|
21868
22262
|
}
|
|
21869
22263
|
.ant-table-tbody > tr.ant-table-row-selected > td {
|
|
@@ -21874,6 +22268,8 @@ nz-switch {
|
|
|
21874
22268
|
background: #0e161f;
|
|
21875
22269
|
}
|
|
21876
22270
|
.ant-table-summary {
|
|
22271
|
+
position: relative;
|
|
22272
|
+
z-index: 2;
|
|
21877
22273
|
background: #141414;
|
|
21878
22274
|
}
|
|
21879
22275
|
div.ant-table-summary {
|
|
@@ -21915,7 +22311,7 @@ div.ant-table-summary {
|
|
|
21915
22311
|
}
|
|
21916
22312
|
.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,
|
|
21917
22313
|
.ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover {
|
|
21918
|
-
background: #
|
|
22314
|
+
background: #222;
|
|
21919
22315
|
}
|
|
21920
22316
|
.ant-table-thead th.ant-table-column-sort {
|
|
21921
22317
|
background: #262626;
|
|
@@ -21948,6 +22344,7 @@ td.ant-table-column-sort {
|
|
|
21948
22344
|
content: '';
|
|
21949
22345
|
}
|
|
21950
22346
|
.ant-table-column-sorter {
|
|
22347
|
+
margin-left: 4px;
|
|
21951
22348
|
color: #bfbfbf;
|
|
21952
22349
|
font-size: 0;
|
|
21953
22350
|
transition: color 0.3s;
|
|
@@ -22015,6 +22412,39 @@ td.ant-table-column-sort {
|
|
|
22015
22412
|
border: 0;
|
|
22016
22413
|
box-shadow: none;
|
|
22017
22414
|
}
|
|
22415
|
+
.ant-table-filter-dropdown .ant-dropdown-menu:empty::after {
|
|
22416
|
+
display: block;
|
|
22417
|
+
padding: 8px 0;
|
|
22418
|
+
color: rgba(255, 255, 255, 0.3);
|
|
22419
|
+
font-size: 12px;
|
|
22420
|
+
text-align: center;
|
|
22421
|
+
content: 'Not Found';
|
|
22422
|
+
}
|
|
22423
|
+
.ant-table-filter-dropdown-tree {
|
|
22424
|
+
padding: 8px 8px 0;
|
|
22425
|
+
}
|
|
22426
|
+
.ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
|
|
22427
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
22428
|
+
}
|
|
22429
|
+
.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper,
|
|
22430
|
+
.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover {
|
|
22431
|
+
background-color: #11263c;
|
|
22432
|
+
}
|
|
22433
|
+
.ant-table-filter-dropdown-search {
|
|
22434
|
+
padding: 8px;
|
|
22435
|
+
border-bottom: 1px #303030 solid;
|
|
22436
|
+
}
|
|
22437
|
+
.ant-table-filter-dropdown-search-input input {
|
|
22438
|
+
min-width: 140px;
|
|
22439
|
+
}
|
|
22440
|
+
.ant-table-filter-dropdown-search-input .anticon {
|
|
22441
|
+
color: rgba(255, 255, 255, 0.3);
|
|
22442
|
+
}
|
|
22443
|
+
.ant-table-filter-dropdown-checkall {
|
|
22444
|
+
width: 100%;
|
|
22445
|
+
margin-bottom: 4px;
|
|
22446
|
+
margin-left: 4px;
|
|
22447
|
+
}
|
|
22018
22448
|
.ant-table-filter-dropdown-submenu > ul {
|
|
22019
22449
|
max-height: calc(100vh - 130px);
|
|
22020
22450
|
overflow-x: hidden;
|
|
@@ -22027,7 +22457,7 @@ td.ant-table-column-sort {
|
|
|
22027
22457
|
.ant-table-filter-dropdown-btns {
|
|
22028
22458
|
display: flex;
|
|
22029
22459
|
justify-content: space-between;
|
|
22030
|
-
padding: 7px 8px
|
|
22460
|
+
padding: 7px 8px;
|
|
22031
22461
|
overflow: hidden;
|
|
22032
22462
|
background-color: #1f1f1f;
|
|
22033
22463
|
border-top: 1px solid #303030;
|
|
@@ -22048,6 +22478,9 @@ table tr th.ant-table-selection-column .ant-radio-wrapper,
|
|
|
22048
22478
|
table tr td.ant-table-selection-column .ant-radio-wrapper {
|
|
22049
22479
|
margin-right: 0;
|
|
22050
22480
|
}
|
|
22481
|
+
table tr th.ant-table-selection-column.ant-table-cell-fix-left {
|
|
22482
|
+
z-index: 3;
|
|
22483
|
+
}
|
|
22051
22484
|
table tr th.ant-table-selection-column::after {
|
|
22052
22485
|
background-color: transparent !important;
|
|
22053
22486
|
}
|
|
@@ -22190,7 +22623,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22190
22623
|
}
|
|
22191
22624
|
.ant-table-cell-fix-left,
|
|
22192
22625
|
.ant-table-cell-fix-right {
|
|
22193
|
-
position: -webkit-sticky !important;
|
|
22194
22626
|
position: sticky !important;
|
|
22195
22627
|
z-index: 2;
|
|
22196
22628
|
background: #141414;
|
|
@@ -22261,12 +22693,13 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22261
22693
|
}
|
|
22262
22694
|
.ant-table-sticky-holder {
|
|
22263
22695
|
position: sticky;
|
|
22264
|
-
z-index:
|
|
22696
|
+
z-index: calc(2 + 1);
|
|
22697
|
+
background: #141414;
|
|
22265
22698
|
}
|
|
22266
22699
|
.ant-table-sticky-scroll {
|
|
22267
22700
|
position: sticky;
|
|
22268
22701
|
bottom: 0;
|
|
22269
|
-
z-index:
|
|
22702
|
+
z-index: calc(2 + 1);
|
|
22270
22703
|
display: flex;
|
|
22271
22704
|
align-items: center;
|
|
22272
22705
|
background: #fcfcfc;
|
|
@@ -22338,6 +22771,10 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22338
22771
|
.ant-table-wrapper-rtl .ant-table-thead > tr > th[colspan]:not([colspan='1']) {
|
|
22339
22772
|
text-align: center;
|
|
22340
22773
|
}
|
|
22774
|
+
.ant-table-wrapper-rtl .ant-table-thead > tr > th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan])::before {
|
|
22775
|
+
right: auto;
|
|
22776
|
+
left: 0;
|
|
22777
|
+
}
|
|
22341
22778
|
.ant-table-wrapper-rtl .ant-table-thead > tr > th {
|
|
22342
22779
|
text-align: right;
|
|
22343
22780
|
}
|
|
@@ -22351,7 +22788,7 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22351
22788
|
justify-content: flex-start;
|
|
22352
22789
|
}
|
|
22353
22790
|
.ant-table-wrapper-rtl .ant-table-column-sorter {
|
|
22354
|
-
margin-right:
|
|
22791
|
+
margin-right: 4px;
|
|
22355
22792
|
margin-left: 0;
|
|
22356
22793
|
}
|
|
22357
22794
|
.ant-table-wrapper-rtl .ant-table-filter-column-title {
|
|
@@ -22360,9 +22797,8 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
22360
22797
|
.ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title {
|
|
22361
22798
|
padding: 0 0 0 2.3em;
|
|
22362
22799
|
}
|
|
22363
|
-
.ant-table-wrapper-rtl .ant-table-filter-trigger
|
|
22364
|
-
|
|
22365
|
-
left: 0;
|
|
22800
|
+
.ant-table-wrapper-rtl .ant-table-filter-trigger {
|
|
22801
|
+
margin: -4px 4px -4px -8px;
|
|
22366
22802
|
}
|
|
22367
22803
|
.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper + span,
|
|
22368
22804
|
.ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span,
|
|
@@ -22518,8 +22954,15 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22518
22954
|
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
|
|
22519
22955
|
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
|
|
22520
22956
|
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
|
|
22521
|
-
margin-right:
|
|
22522
|
-
margin-left:
|
|
22957
|
+
margin-right: 2px;
|
|
22958
|
+
margin-left: 0;
|
|
22959
|
+
}
|
|
22960
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22961
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22962
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22963
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
22964
|
+
margin-right: 2px;
|
|
22965
|
+
margin-left: 0;
|
|
22523
22966
|
}
|
|
22524
22967
|
.ant-tabs-dropdown-rtl {
|
|
22525
22968
|
direction: rtl;
|
|
@@ -22775,6 +23218,8 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22775
23218
|
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);
|
|
22776
23219
|
}
|
|
22777
23220
|
.ant-tabs-dropdown-menu-item {
|
|
23221
|
+
display: flex;
|
|
23222
|
+
align-items: center;
|
|
22778
23223
|
min-width: 120px;
|
|
22779
23224
|
margin: 0;
|
|
22780
23225
|
padding: 5px 12px;
|
|
@@ -22788,6 +23233,22 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22788
23233
|
cursor: pointer;
|
|
22789
23234
|
transition: all 0.3s;
|
|
22790
23235
|
}
|
|
23236
|
+
.ant-tabs-dropdown-menu-item > span {
|
|
23237
|
+
flex: 1;
|
|
23238
|
+
white-space: nowrap;
|
|
23239
|
+
}
|
|
23240
|
+
.ant-tabs-dropdown-menu-item-remove {
|
|
23241
|
+
flex: none;
|
|
23242
|
+
margin-left: 12px;
|
|
23243
|
+
color: rgba(255, 255, 255, 0.45);
|
|
23244
|
+
font-size: 12px;
|
|
23245
|
+
background: transparent;
|
|
23246
|
+
border: 0;
|
|
23247
|
+
cursor: pointer;
|
|
23248
|
+
}
|
|
23249
|
+
.ant-tabs-dropdown-menu-item-remove:hover {
|
|
23250
|
+
color: #165996;
|
|
23251
|
+
}
|
|
22791
23252
|
.ant-tabs-dropdown-menu-item:hover {
|
|
22792
23253
|
background: rgba(255, 255, 255, 0.08);
|
|
22793
23254
|
}
|
|
@@ -22937,6 +23398,7 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22937
23398
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22938
23399
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
22939
23400
|
min-width: 40px;
|
|
23401
|
+
margin-left: 2px;
|
|
22940
23402
|
padding: 0 8px;
|
|
22941
23403
|
background: rgba(255, 255, 255, 0.04);
|
|
22942
23404
|
border: 1px solid #303030;
|
|
@@ -23116,6 +23578,10 @@ nz-tabs-nav {
|
|
|
23116
23578
|
pointer-events: none;
|
|
23117
23579
|
color: rgba(255, 255, 255, 0.3);
|
|
23118
23580
|
}
|
|
23581
|
+
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
|
|
23582
|
+
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
23583
|
+
min-height: 40px;
|
|
23584
|
+
}
|
|
23119
23585
|
.ant-tag {
|
|
23120
23586
|
box-sizing: border-box;
|
|
23121
23587
|
margin: 0;
|
|
@@ -23322,23 +23788,23 @@ nz-tabs-nav {
|
|
|
23322
23788
|
}
|
|
23323
23789
|
.ant-tag-success {
|
|
23324
23790
|
color: #49aa19;
|
|
23325
|
-
background: #
|
|
23326
|
-
border-color: #
|
|
23791
|
+
background: #e4ebdd;
|
|
23792
|
+
border-color: #a5d184;
|
|
23327
23793
|
}
|
|
23328
23794
|
.ant-tag-processing {
|
|
23329
23795
|
color: #177ddc;
|
|
23330
|
-
background: #
|
|
23331
|
-
border-color: #
|
|
23796
|
+
background: #e6f7ff;
|
|
23797
|
+
border-color: #94d6ff;
|
|
23332
23798
|
}
|
|
23333
23799
|
.ant-tag-error {
|
|
23334
|
-
color: #
|
|
23335
|
-
background: #
|
|
23336
|
-
border-color: #
|
|
23800
|
+
color: #a61d24;
|
|
23801
|
+
background: #e6d9d8;
|
|
23802
|
+
border-color: #cc8885;
|
|
23337
23803
|
}
|
|
23338
23804
|
.ant-tag-warning {
|
|
23339
|
-
color: #
|
|
23340
|
-
background: #
|
|
23341
|
-
border-color: #
|
|
23805
|
+
color: #d89614;
|
|
23806
|
+
background: #fffbe6;
|
|
23807
|
+
border-color: #ffe591;
|
|
23342
23808
|
}
|
|
23343
23809
|
.ant-tag > .anticon + span,
|
|
23344
23810
|
.ant-tag > span + .anticon {
|
|
@@ -23847,6 +24313,10 @@ nz-tabs-nav {
|
|
|
23847
24313
|
border: 0;
|
|
23848
24314
|
border-radius: 0;
|
|
23849
24315
|
}
|
|
24316
|
+
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-selection-column {
|
|
24317
|
+
width: 40px;
|
|
24318
|
+
min-width: 40px;
|
|
24319
|
+
}
|
|
23850
24320
|
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th {
|
|
23851
24321
|
background: #1d1d1d;
|
|
23852
24322
|
}
|
|
@@ -23891,29 +24361,8 @@ nz-tabs-nav {
|
|
|
23891
24361
|
width: 250px;
|
|
23892
24362
|
height: auto;
|
|
23893
24363
|
}
|
|
23894
|
-
.ant-transfer-list-search {
|
|
23895
|
-
padding-right: 24px;
|
|
23896
|
-
padding-left: 8px;
|
|
23897
|
-
}
|
|
23898
|
-
.ant-transfer-list-search-action {
|
|
23899
|
-
position: absolute;
|
|
23900
|
-
top: 12px;
|
|
23901
|
-
right: 12px;
|
|
23902
|
-
bottom: 12px;
|
|
23903
|
-
width: 28px;
|
|
23904
|
-
color: rgba(255, 255, 255, 0.3);
|
|
23905
|
-
line-height: 32px;
|
|
23906
|
-
text-align: center;
|
|
23907
|
-
}
|
|
23908
|
-
.ant-transfer-list-search-action .anticon {
|
|
24364
|
+
.ant-transfer-list-search .anticon-search {
|
|
23909
24365
|
color: rgba(255, 255, 255, 0.3);
|
|
23910
|
-
transition: all 0.3s;
|
|
23911
|
-
}
|
|
23912
|
-
.ant-transfer-list-search-action .anticon:hover {
|
|
23913
|
-
color: rgba(255, 255, 255, 0.45);
|
|
23914
|
-
}
|
|
23915
|
-
span.ant-transfer-list-search-action {
|
|
23916
|
-
pointer-events: none;
|
|
23917
24366
|
}
|
|
23918
24367
|
.ant-transfer-list-header {
|
|
23919
24368
|
display: flex;
|
|
@@ -24233,6 +24682,7 @@ h5.ant-typography,
|
|
|
24233
24682
|
a.ant-typography-ellipsis,
|
|
24234
24683
|
span.ant-typography-ellipsis {
|
|
24235
24684
|
display: inline-block;
|
|
24685
|
+
max-width: 100%;
|
|
24236
24686
|
}
|
|
24237
24687
|
a.ant-typography,
|
|
24238
24688
|
.ant-typography a {
|
|
@@ -24381,11 +24831,12 @@ div.ant-typography-edit-content {
|
|
|
24381
24831
|
pointer-events: none;
|
|
24382
24832
|
}
|
|
24383
24833
|
.ant-typography-edit-content textarea {
|
|
24834
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
24384
24835
|
-moz-transition: none;
|
|
24385
24836
|
}
|
|
24386
24837
|
.ant-typography ul,
|
|
24387
24838
|
.ant-typography ol {
|
|
24388
|
-
margin: 0 0 1em
|
|
24839
|
+
margin: 0 0 1em;
|
|
24389
24840
|
padding: 0;
|
|
24390
24841
|
}
|
|
24391
24842
|
.ant-typography ul li,
|
|
@@ -24440,6 +24891,7 @@ span.ant-typography-ellipsis-single-line {
|
|
|
24440
24891
|
vertical-align: bottom;
|
|
24441
24892
|
}
|
|
24442
24893
|
.ant-typography-ellipsis-multiple-line {
|
|
24894
|
+
/* stylelint-disable-next-line value-no-vendor-prefix */
|
|
24443
24895
|
display: -webkit-box;
|
|
24444
24896
|
overflow: hidden;
|
|
24445
24897
|
-webkit-line-clamp: 3;
|
|
@@ -24799,7 +25251,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24799
25251
|
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
|
|
24800
25252
|
width: 48px;
|
|
24801
25253
|
height: 48px;
|
|
24802
|
-
line-height:
|
|
25254
|
+
line-height: 60px;
|
|
24803
25255
|
text-align: center;
|
|
24804
25256
|
opacity: 0.8;
|
|
24805
25257
|
}
|
|
@@ -24854,7 +25306,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24854
25306
|
}
|
|
24855
25307
|
.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
|
|
24856
25308
|
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
|
|
24857
|
-
|
|
25309
|
+
margin-bottom: 12px;
|
|
24858
25310
|
}
|
|
24859
25311
|
.ant-upload-list-picture .ant-upload-list-item-progress,
|
|
24860
25312
|
.ant-upload-list-picture-card .ant-upload-list-item-progress {
|
|
@@ -24997,6 +25449,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24997
25449
|
.ant-upload-list-text .ant-upload-list-item-name,
|
|
24998
25450
|
.ant-upload-list-picture .ant-upload-list-item-name {
|
|
24999
25451
|
flex: auto;
|
|
25452
|
+
margin: 0;
|
|
25000
25453
|
padding: 0 8px;
|
|
25001
25454
|
}
|
|
25002
25455
|
.ant-upload-list-text .ant-upload-list-item-card-actions,
|
|
@@ -25158,7 +25611,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
25158
25611
|
.ant-select-dropdown-hidden {
|
|
25159
25612
|
display: none;
|
|
25160
25613
|
}
|
|
25161
|
-
.ant-cascader {
|
|
25614
|
+
.ant-cascader-checkbox {
|
|
25162
25615
|
box-sizing: border-box;
|
|
25163
25616
|
margin: 0;
|
|
25164
25617
|
padding: 0;
|
|
@@ -25168,18 +25621,150 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
25168
25621
|
line-height: 1.5715;
|
|
25169
25622
|
list-style: none;
|
|
25170
25623
|
font-feature-settings: 'tnum';
|
|
25624
|
+
position: relative;
|
|
25625
|
+
top: 0.2em;
|
|
25626
|
+
line-height: 1;
|
|
25627
|
+
white-space: nowrap;
|
|
25628
|
+
outline: none;
|
|
25629
|
+
cursor: pointer;
|
|
25171
25630
|
}
|
|
25172
|
-
.ant-cascader-
|
|
25173
|
-
|
|
25631
|
+
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner,
|
|
25632
|
+
.ant-cascader-checkbox:hover .ant-cascader-checkbox-inner,
|
|
25633
|
+
.ant-cascader-checkbox-input:focus + .ant-cascader-checkbox-inner {
|
|
25634
|
+
border-color: #177ddc;
|
|
25635
|
+
}
|
|
25636
|
+
.ant-cascader-checkbox-checked::after {
|
|
25637
|
+
position: absolute;
|
|
25638
|
+
top: 0;
|
|
25639
|
+
left: 0;
|
|
25174
25640
|
width: 100%;
|
|
25175
|
-
|
|
25176
|
-
|
|
25641
|
+
height: 100%;
|
|
25642
|
+
border: 1px solid #177ddc;
|
|
25643
|
+
border-radius: 2px;
|
|
25644
|
+
visibility: hidden;
|
|
25645
|
+
animation: antCheckboxEffect 0.36s ease-in-out;
|
|
25646
|
+
animation-fill-mode: backwards;
|
|
25647
|
+
content: '';
|
|
25648
|
+
}
|
|
25649
|
+
.ant-cascader-checkbox:hover::after,
|
|
25650
|
+
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox::after {
|
|
25651
|
+
visibility: visible;
|
|
25652
|
+
}
|
|
25653
|
+
.ant-cascader-checkbox-inner {
|
|
25654
|
+
position: relative;
|
|
25655
|
+
top: 0;
|
|
25656
|
+
left: 0;
|
|
25657
|
+
display: block;
|
|
25658
|
+
width: 16px;
|
|
25659
|
+
height: 16px;
|
|
25660
|
+
direction: ltr;
|
|
25661
|
+
background-color: transparent;
|
|
25662
|
+
border: 1px solid #434343;
|
|
25663
|
+
border-radius: 2px;
|
|
25664
|
+
border-collapse: separate;
|
|
25665
|
+
transition: all 0.3s;
|
|
25666
|
+
}
|
|
25667
|
+
.ant-cascader-checkbox-inner::after {
|
|
25668
|
+
position: absolute;
|
|
25669
|
+
top: 50%;
|
|
25670
|
+
left: 21.5%;
|
|
25671
|
+
display: table;
|
|
25672
|
+
width: 5.71428571px;
|
|
25673
|
+
height: 9.14285714px;
|
|
25674
|
+
border: 2px solid #fff;
|
|
25675
|
+
border-top: 0;
|
|
25676
|
+
border-left: 0;
|
|
25677
|
+
transform: rotate(45deg) scale(0) translate(-50%, -50%);
|
|
25678
|
+
opacity: 0;
|
|
25679
|
+
transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
|
|
25680
|
+
content: ' ';
|
|
25681
|
+
}
|
|
25682
|
+
.ant-cascader-checkbox-input {
|
|
25683
|
+
position: absolute;
|
|
25684
|
+
top: 0;
|
|
25685
|
+
right: 0;
|
|
25686
|
+
bottom: 0;
|
|
25687
|
+
left: 0;
|
|
25688
|
+
z-index: 1;
|
|
25689
|
+
width: 100%;
|
|
25690
|
+
height: 100%;
|
|
25691
|
+
cursor: pointer;
|
|
25692
|
+
opacity: 0;
|
|
25693
|
+
}
|
|
25694
|
+
.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
|
|
25695
|
+
position: absolute;
|
|
25696
|
+
display: table;
|
|
25697
|
+
border: 2px solid #fff;
|
|
25698
|
+
border-top: 0;
|
|
25699
|
+
border-left: 0;
|
|
25700
|
+
transform: rotate(45deg) scale(1) translate(-50%, -50%);
|
|
25701
|
+
opacity: 1;
|
|
25702
|
+
transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
|
|
25703
|
+
content: ' ';
|
|
25704
|
+
}
|
|
25705
|
+
.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner {
|
|
25706
|
+
background-color: #177ddc;
|
|
25707
|
+
border-color: #177ddc;
|
|
25708
|
+
}
|
|
25709
|
+
.ant-cascader-checkbox-disabled {
|
|
25710
|
+
cursor: not-allowed;
|
|
25711
|
+
}
|
|
25712
|
+
.ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
|
|
25713
|
+
border-color: rgba(255, 255, 255, 0.3);
|
|
25714
|
+
animation-name: none;
|
|
25715
|
+
}
|
|
25716
|
+
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-input {
|
|
25717
|
+
cursor: not-allowed;
|
|
25718
|
+
}
|
|
25719
|
+
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner {
|
|
25720
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
25721
|
+
border-color: #434343 !important;
|
|
25722
|
+
}
|
|
25723
|
+
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
|
|
25724
|
+
border-color: rgba(255, 255, 255, 0.08);
|
|
25725
|
+
border-collapse: separate;
|
|
25726
|
+
animation-name: none;
|
|
25727
|
+
}
|
|
25728
|
+
.ant-cascader-checkbox-disabled + span {
|
|
25729
|
+
color: rgba(255, 255, 255, 0.3);
|
|
25730
|
+
cursor: not-allowed;
|
|
25731
|
+
}
|
|
25732
|
+
.ant-cascader-checkbox-disabled:hover::after,
|
|
25733
|
+
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-disabled::after {
|
|
25734
|
+
visibility: hidden;
|
|
25735
|
+
}
|
|
25736
|
+
.ant-cascader-checkbox-wrapper {
|
|
25737
|
+
box-sizing: border-box;
|
|
25738
|
+
margin: 0;
|
|
25739
|
+
padding: 0;
|
|
25740
|
+
color: rgba(255, 255, 255, 0.85);
|
|
25741
|
+
font-size: 14px;
|
|
25742
|
+
font-variant: tabular-nums;
|
|
25743
|
+
line-height: 1.5715;
|
|
25744
|
+
list-style: none;
|
|
25745
|
+
font-feature-settings: 'tnum';
|
|
25746
|
+
display: inline-flex;
|
|
25747
|
+
align-items: baseline;
|
|
25748
|
+
line-height: unset;
|
|
25177
25749
|
cursor: pointer;
|
|
25178
25750
|
}
|
|
25179
|
-
.ant-cascader-
|
|
25180
|
-
|
|
25751
|
+
.ant-cascader-checkbox-wrapper::after {
|
|
25752
|
+
display: inline-block;
|
|
25753
|
+
width: 0;
|
|
25754
|
+
overflow: hidden;
|
|
25755
|
+
content: '\a0';
|
|
25181
25756
|
}
|
|
25182
|
-
.ant-cascader-
|
|
25757
|
+
.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-disabled {
|
|
25758
|
+
cursor: not-allowed;
|
|
25759
|
+
}
|
|
25760
|
+
.ant-cascader-checkbox-wrapper + .ant-cascader-checkbox-wrapper {
|
|
25761
|
+
margin-left: 8px;
|
|
25762
|
+
}
|
|
25763
|
+
.ant-cascader-checkbox + span {
|
|
25764
|
+
padding-right: 8px;
|
|
25765
|
+
padding-left: 8px;
|
|
25766
|
+
}
|
|
25767
|
+
.ant-cascader-checkbox-group {
|
|
25183
25768
|
box-sizing: border-box;
|
|
25184
25769
|
margin: 0;
|
|
25185
25770
|
padding: 0;
|
|
@@ -25189,138 +25774,70 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
25189
25774
|
line-height: 1.5715;
|
|
25190
25775
|
list-style: none;
|
|
25191
25776
|
font-feature-settings: 'tnum';
|
|
25192
|
-
position: relative;
|
|
25193
25777
|
display: inline-block;
|
|
25194
|
-
background-color: transparent;
|
|
25195
|
-
border-radius: 2px;
|
|
25196
|
-
outline: 0;
|
|
25197
|
-
cursor: pointer;
|
|
25198
|
-
transition: color 0.3s;
|
|
25199
|
-
}
|
|
25200
|
-
.ant-cascader-picker-with-value .ant-cascader-picker-label {
|
|
25201
|
-
color: transparent;
|
|
25202
|
-
}
|
|
25203
|
-
.ant-cascader-picker-disabled {
|
|
25204
|
-
color: rgba(255, 255, 255, 0.3);
|
|
25205
|
-
background: rgba(255, 255, 255, 0.08);
|
|
25206
|
-
cursor: not-allowed;
|
|
25207
|
-
}
|
|
25208
|
-
.ant-cascader-picker-disabled .ant-cascader-input {
|
|
25209
|
-
cursor: not-allowed;
|
|
25210
|
-
}
|
|
25211
|
-
.ant-cascader-picker:focus .ant-cascader-input {
|
|
25212
|
-
border-color: #177ddc;
|
|
25213
|
-
border-right-width: 1px !important;
|
|
25214
|
-
outline: 0;
|
|
25215
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
25216
25778
|
}
|
|
25217
|
-
.ant-
|
|
25218
|
-
|
|
25219
|
-
border-left-width: 1px !important;
|
|
25779
|
+
.ant-cascader-checkbox-group-item {
|
|
25780
|
+
margin-right: 8px;
|
|
25220
25781
|
}
|
|
25221
|
-
.ant-cascader-
|
|
25222
|
-
|
|
25223
|
-
box-shadow: none !important;
|
|
25782
|
+
.ant-cascader-checkbox-group-item:last-child {
|
|
25783
|
+
margin-right: 0;
|
|
25224
25784
|
}
|
|
25225
|
-
.ant-cascader-
|
|
25226
|
-
|
|
25785
|
+
.ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item {
|
|
25786
|
+
margin-left: 0;
|
|
25227
25787
|
}
|
|
25228
|
-
.ant-cascader-
|
|
25229
|
-
|
|
25230
|
-
|
|
25231
|
-
left: 0;
|
|
25232
|
-
width: 100%;
|
|
25233
|
-
height: 20px;
|
|
25234
|
-
margin-top: -10px;
|
|
25235
|
-
padding: 0 20px 0 12px;
|
|
25236
|
-
overflow: hidden;
|
|
25237
|
-
line-height: 20px;
|
|
25238
|
-
white-space: nowrap;
|
|
25239
|
-
text-overflow: ellipsis;
|
|
25788
|
+
.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner {
|
|
25789
|
+
background-color: transparent;
|
|
25790
|
+
border-color: #434343;
|
|
25240
25791
|
}
|
|
25241
|
-
.ant-cascader-
|
|
25242
|
-
position: absolute;
|
|
25792
|
+
.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner::after {
|
|
25243
25793
|
top: 50%;
|
|
25244
|
-
|
|
25245
|
-
|
|
25246
|
-
|
|
25247
|
-
|
|
25248
|
-
|
|
25249
|
-
|
|
25250
|
-
font-size: 12px;
|
|
25251
|
-
line-height: 12px;
|
|
25252
|
-
background: #141414;
|
|
25253
|
-
cursor: pointer;
|
|
25254
|
-
opacity: 0;
|
|
25255
|
-
transition: color 0.3s ease, opacity 0.15s ease;
|
|
25256
|
-
}
|
|
25257
|
-
.ant-cascader-picker-clear:hover {
|
|
25258
|
-
color: rgba(255, 255, 255, 0.45);
|
|
25259
|
-
}
|
|
25260
|
-
.ant-cascader-picker:hover .ant-cascader-picker-clear {
|
|
25794
|
+
left: 50%;
|
|
25795
|
+
width: 8px;
|
|
25796
|
+
height: 8px;
|
|
25797
|
+
background-color: #177ddc;
|
|
25798
|
+
border: 0;
|
|
25799
|
+
transform: translate(-50%, -50%) scale(1);
|
|
25261
25800
|
opacity: 1;
|
|
25801
|
+
content: ' ';
|
|
25262
25802
|
}
|
|
25263
|
-
.ant-cascader-
|
|
25264
|
-
|
|
25265
|
-
|
|
25266
|
-
right: 12px;
|
|
25267
|
-
z-index: 1;
|
|
25268
|
-
width: 12px;
|
|
25269
|
-
height: 12px;
|
|
25270
|
-
margin-top: -6px;
|
|
25271
|
-
color: rgba(255, 255, 255, 0.3);
|
|
25272
|
-
font-size: 12px;
|
|
25273
|
-
line-height: 12px;
|
|
25274
|
-
}
|
|
25275
|
-
.ant-cascader-picker-label:hover + .ant-cascader-input:not(.ant-cascader-picker-disabled .ant-cascader-picker-label:hover + .ant-cascader-input) {
|
|
25276
|
-
border-color: #165996;
|
|
25277
|
-
border-right-width: 1px !important;
|
|
25278
|
-
}
|
|
25279
|
-
.ant-input-rtl .ant-cascader-picker-label:hover + .ant-cascader-input:not(.ant-cascader-picker-disabled .ant-cascader-picker-label:hover + .ant-cascader-input) {
|
|
25280
|
-
border-right-width: 0;
|
|
25281
|
-
border-left-width: 1px !important;
|
|
25803
|
+
.ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
|
|
25804
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
25805
|
+
border-color: rgba(255, 255, 255, 0.3);
|
|
25282
25806
|
}
|
|
25283
|
-
.ant-cascader-
|
|
25284
|
-
|
|
25285
|
-
right: 8px;
|
|
25807
|
+
.ant-cascader-checkbox-rtl {
|
|
25808
|
+
direction: rtl;
|
|
25286
25809
|
}
|
|
25287
|
-
.ant-cascader-
|
|
25288
|
-
|
|
25289
|
-
|
|
25290
|
-
font-size: 14px;
|
|
25291
|
-
white-space: nowrap;
|
|
25292
|
-
background: #1f1f1f;
|
|
25293
|
-
border-radius: 2px;
|
|
25294
|
-
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);
|
|
25810
|
+
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item {
|
|
25811
|
+
margin-right: 0;
|
|
25812
|
+
margin-left: 8px;
|
|
25295
25813
|
}
|
|
25296
|
-
.ant-cascader-
|
|
25297
|
-
|
|
25298
|
-
margin: 0;
|
|
25299
|
-
list-style: none;
|
|
25814
|
+
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item:last-child {
|
|
25815
|
+
margin-left: 0 !important;
|
|
25300
25816
|
}
|
|
25301
|
-
.ant-cascader-
|
|
25302
|
-
|
|
25303
|
-
display: none;
|
|
25817
|
+
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item {
|
|
25818
|
+
margin-left: 8px;
|
|
25304
25819
|
}
|
|
25305
|
-
.ant-cascader
|
|
25306
|
-
|
|
25307
|
-
animation-name: antSlideUpIn;
|
|
25820
|
+
.ant-cascader {
|
|
25821
|
+
width: 184px;
|
|
25308
25822
|
}
|
|
25309
|
-
.ant-cascader-
|
|
25310
|
-
|
|
25311
|
-
|
|
25823
|
+
.ant-cascader-checkbox {
|
|
25824
|
+
top: 0;
|
|
25825
|
+
margin-right: 8px;
|
|
25312
25826
|
}
|
|
25313
|
-
.ant-cascader-menus
|
|
25314
|
-
|
|
25827
|
+
.ant-cascader-menus {
|
|
25828
|
+
display: flex;
|
|
25829
|
+
flex-wrap: nowrap;
|
|
25830
|
+
align-items: flex-start;
|
|
25315
25831
|
}
|
|
25316
|
-
.ant-cascader-menus.ant-
|
|
25317
|
-
|
|
25832
|
+
.ant-cascader-menus.ant-cascader-menu-empty .ant-cascader-menu {
|
|
25833
|
+
width: 100%;
|
|
25834
|
+
height: auto;
|
|
25318
25835
|
}
|
|
25319
25836
|
.ant-cascader-menu {
|
|
25320
|
-
display: inline-block;
|
|
25321
25837
|
min-width: 111px;
|
|
25322
25838
|
height: 180px;
|
|
25323
25839
|
margin: 0;
|
|
25840
|
+
margin: -4px 0;
|
|
25324
25841
|
padding: 4px 0;
|
|
25325
25842
|
overflow: auto;
|
|
25326
25843
|
vertical-align: top;
|
|
@@ -25328,18 +25845,10 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
25328
25845
|
border-right: 1px solid #303030;
|
|
25329
25846
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
25330
25847
|
}
|
|
25331
|
-
.ant-cascader-menu:first-child {
|
|
25332
|
-
border-radius: 2px 0 0 2px;
|
|
25333
|
-
}
|
|
25334
|
-
.ant-cascader-menu:last-child {
|
|
25335
|
-
margin-right: -1px;
|
|
25336
|
-
border-right-color: transparent;
|
|
25337
|
-
border-radius: 0 2px 2px 0;
|
|
25338
|
-
}
|
|
25339
|
-
.ant-cascader-menu:only-child {
|
|
25340
|
-
border-radius: 2px;
|
|
25341
|
-
}
|
|
25342
25848
|
.ant-cascader-menu-item {
|
|
25849
|
+
display: flex;
|
|
25850
|
+
flex-wrap: nowrap;
|
|
25851
|
+
align-items: center;
|
|
25343
25852
|
padding: 5px 12px;
|
|
25344
25853
|
overflow: hidden;
|
|
25345
25854
|
line-height: 22px;
|
|
@@ -25368,14 +25877,12 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
25368
25877
|
font-weight: 600;
|
|
25369
25878
|
background-color: #111b26;
|
|
25370
25879
|
}
|
|
25371
|
-
.ant-cascader-menu-item-
|
|
25372
|
-
|
|
25373
|
-
padding-right: 24px;
|
|
25880
|
+
.ant-cascader-menu-item-content {
|
|
25881
|
+
flex: auto;
|
|
25374
25882
|
}
|
|
25375
25883
|
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
|
|
25376
25884
|
.ant-cascader-menu-item-loading-icon {
|
|
25377
|
-
|
|
25378
|
-
right: 12px;
|
|
25885
|
+
margin-left: 4px;
|
|
25379
25886
|
color: rgba(255, 255, 255, 0.45);
|
|
25380
25887
|
font-size: 10px;
|
|
25381
25888
|
}
|
|
@@ -25383,62 +25890,18 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
25383
25890
|
.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon {
|
|
25384
25891
|
color: rgba(255, 255, 255, 0.3);
|
|
25385
25892
|
}
|
|
25386
|
-
.ant-cascader-menu-item
|
|
25893
|
+
.ant-cascader-menu-item-keyword {
|
|
25387
25894
|
color: #a61d24;
|
|
25388
25895
|
}
|
|
25389
|
-
.ant-cascader-
|
|
25390
|
-
|
|
25391
|
-
|
|
25392
|
-
|
|
25393
|
-
}
|
|
25394
|
-
.ant-cascader-picker-rtl {
|
|
25395
|
-
direction: rtl;
|
|
25396
|
-
}
|
|
25397
|
-
.ant-cascader-picker-rtl .ant-cascader-picker-label {
|
|
25398
|
-
padding: 0 12px 0 20px;
|
|
25399
|
-
text-align: right;
|
|
25400
|
-
}
|
|
25401
|
-
.ant-cascader-picker-rtl .ant-cascader-picker-clear {
|
|
25402
|
-
right: auto;
|
|
25403
|
-
left: 12px;
|
|
25404
|
-
}
|
|
25405
|
-
.ant-cascader-picker-rtl .ant-cascader-picker-arrow {
|
|
25406
|
-
right: auto;
|
|
25407
|
-
left: 12px;
|
|
25408
|
-
}
|
|
25409
|
-
.ant-cascader-picker-rtl.ant-cascader-picker-small .ant-cascader-picker-clear,
|
|
25410
|
-
.ant-cascader-picker-rtl.ant-cascader-picker-small .ant-cascader-picker-arrow {
|
|
25411
|
-
right: auto;
|
|
25412
|
-
left: 8px;
|
|
25413
|
-
}
|
|
25414
|
-
.ant-cascader-menu-rtl .ant-cascader-menu {
|
|
25415
|
-
direction: rtl;
|
|
25416
|
-
border-right: none;
|
|
25417
|
-
border-left: 1px solid #303030;
|
|
25418
|
-
}
|
|
25419
|
-
.ant-cascader-menu-rtl .ant-cascader-menu:first-child {
|
|
25420
|
-
border-radius: 0 2px 2px 0;
|
|
25896
|
+
.ant-cascader-rtl .ant-cascader-menu-item-expand-icon,
|
|
25897
|
+
.ant-cascader-rtl .ant-cascader-menu-item-loading-icon {
|
|
25898
|
+
margin-right: 4px;
|
|
25899
|
+
margin-left: 0;
|
|
25421
25900
|
}
|
|
25422
|
-
.ant-cascader-
|
|
25901
|
+
.ant-cascader-rtl .ant-cascader-checkbox {
|
|
25902
|
+
top: 0;
|
|
25423
25903
|
margin-right: 0;
|
|
25424
|
-
margin-left:
|
|
25425
|
-
border-left-color: transparent;
|
|
25426
|
-
border-radius: 2px 0 0 2px;
|
|
25427
|
-
}
|
|
25428
|
-
.ant-cascader-menu-rtl .ant-cascader-menu:only-child {
|
|
25429
|
-
border-radius: 2px;
|
|
25430
|
-
}
|
|
25431
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-expand {
|
|
25432
|
-
padding-right: 12px;
|
|
25433
|
-
padding-left: 24px;
|
|
25434
|
-
}
|
|
25435
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
|
|
25436
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-loading-icon {
|
|
25437
|
-
right: auto;
|
|
25438
|
-
left: 12px;
|
|
25439
|
-
}
|
|
25440
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-loading-icon {
|
|
25441
|
-
transform: scaleY(-1);
|
|
25904
|
+
margin-left: 8px;
|
|
25442
25905
|
}
|
|
25443
25906
|
.ant-cascader-menus {
|
|
25444
25907
|
position: relative;
|
|
@@ -25474,10 +25937,13 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25474
25937
|
display: flex;
|
|
25475
25938
|
flex-direction: column;
|
|
25476
25939
|
}
|
|
25477
|
-
|
|
25478
|
-
|
|
25479
|
-
|
|
25480
|
-
|
|
25940
|
+
@keyframes ant-tree-node-fx-do-not-use {
|
|
25941
|
+
0% {
|
|
25942
|
+
opacity: 0;
|
|
25943
|
+
}
|
|
25944
|
+
100% {
|
|
25945
|
+
opacity: 1;
|
|
25946
|
+
}
|
|
25481
25947
|
}
|
|
25482
25948
|
.ant-tree.ant-tree-directory .ant-tree-treenode {
|
|
25483
25949
|
position: relative;
|
|
@@ -25579,7 +26045,7 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25579
26045
|
.ant-tree-checkbox-inner::after {
|
|
25580
26046
|
position: absolute;
|
|
25581
26047
|
top: 50%;
|
|
25582
|
-
left:
|
|
26048
|
+
left: 21.5%;
|
|
25583
26049
|
display: table;
|
|
25584
26050
|
width: 5.71428571px;
|
|
25585
26051
|
height: 9.14285714px;
|
|
@@ -25755,6 +26221,23 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25755
26221
|
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-node-content-wrapper {
|
|
25756
26222
|
flex: auto;
|
|
25757
26223
|
}
|
|
26224
|
+
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging {
|
|
26225
|
+
position: relative;
|
|
26226
|
+
}
|
|
26227
|
+
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging::after {
|
|
26228
|
+
position: absolute;
|
|
26229
|
+
top: 0;
|
|
26230
|
+
right: 0;
|
|
26231
|
+
bottom: 4px;
|
|
26232
|
+
left: 0;
|
|
26233
|
+
border: 1px solid #177ddc;
|
|
26234
|
+
opacity: 0;
|
|
26235
|
+
animation: ant-tree-node-fx-do-not-use 0.3s;
|
|
26236
|
+
animation-play-state: running;
|
|
26237
|
+
animation-fill-mode: forwards;
|
|
26238
|
+
content: '';
|
|
26239
|
+
pointer-events: none;
|
|
26240
|
+
}
|
|
25758
26241
|
.ant-tree .ant-tree-treenode {
|
|
25759
26242
|
display: flex;
|
|
25760
26243
|
align-items: flex-start;
|
|
@@ -25784,6 +26267,16 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25784
26267
|
display: inline-block;
|
|
25785
26268
|
width: 24px;
|
|
25786
26269
|
}
|
|
26270
|
+
.ant-tree-draggable-icon {
|
|
26271
|
+
width: 24px;
|
|
26272
|
+
line-height: 24px;
|
|
26273
|
+
text-align: center;
|
|
26274
|
+
opacity: 0.2;
|
|
26275
|
+
transition: opacity 0.3s;
|
|
26276
|
+
}
|
|
26277
|
+
.ant-tree-treenode:hover .ant-tree-draggable-icon {
|
|
26278
|
+
opacity: 0.45;
|
|
26279
|
+
}
|
|
25787
26280
|
.ant-tree-switcher {
|
|
25788
26281
|
position: relative;
|
|
25789
26282
|
flex: none;
|
|
@@ -25824,16 +26317,16 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25824
26317
|
.ant-tree-switcher-leaf-line::before {
|
|
25825
26318
|
position: absolute;
|
|
25826
26319
|
top: 0;
|
|
26320
|
+
right: 12px;
|
|
25827
26321
|
bottom: -4px;
|
|
25828
26322
|
margin-left: -1px;
|
|
25829
|
-
border-
|
|
26323
|
+
border-right: 1px solid #d9d9d9;
|
|
25830
26324
|
content: ' ';
|
|
25831
26325
|
}
|
|
25832
26326
|
.ant-tree-switcher-leaf-line::after {
|
|
25833
26327
|
position: absolute;
|
|
25834
26328
|
width: 10px;
|
|
25835
26329
|
height: 14px;
|
|
25836
|
-
margin-left: -1px;
|
|
25837
26330
|
border-bottom: 1px solid #d9d9d9;
|
|
25838
26331
|
content: ' ';
|
|
25839
26332
|
}
|
|
@@ -25874,11 +26367,11 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25874
26367
|
.ant-tree-unselectable .ant-tree-node-content-wrapper:hover {
|
|
25875
26368
|
background-color: transparent;
|
|
25876
26369
|
}
|
|
25877
|
-
.ant-tree-node-content-wrapper
|
|
26370
|
+
.ant-tree-node-content-wrapper {
|
|
25878
26371
|
line-height: 24px;
|
|
25879
26372
|
user-select: none;
|
|
25880
26373
|
}
|
|
25881
|
-
.ant-tree-node-content-wrapper
|
|
26374
|
+
.ant-tree-node-content-wrapper .ant-tree-drop-indicator {
|
|
25882
26375
|
position: absolute;
|
|
25883
26376
|
z-index: 1;
|
|
25884
26377
|
height: 2px;
|
|
@@ -25886,7 +26379,7 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25886
26379
|
border-radius: 1px;
|
|
25887
26380
|
pointer-events: none;
|
|
25888
26381
|
}
|
|
25889
|
-
.ant-tree-node-content-wrapper
|
|
26382
|
+
.ant-tree-node-content-wrapper .ant-tree-drop-indicator::after {
|
|
25890
26383
|
position: absolute;
|
|
25891
26384
|
top: -3px;
|
|
25892
26385
|
left: -6px;
|
|
@@ -25919,7 +26412,12 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25919
26412
|
background: #141414;
|
|
25920
26413
|
}
|
|
25921
26414
|
.ant-tree-show-line .ant-tree-switcher-line-icon {
|
|
25922
|
-
vertical-align: -0.
|
|
26415
|
+
vertical-align: -0.15em;
|
|
26416
|
+
}
|
|
26417
|
+
.ant-tree .ant-tree-treenode-leaf-last .ant-tree-switcher-leaf-line::before {
|
|
26418
|
+
top: auto !important;
|
|
26419
|
+
bottom: auto !important;
|
|
26420
|
+
height: 14px !important;
|
|
25923
26421
|
}
|
|
25924
26422
|
.ant-tree-rtl {
|
|
25925
26423
|
direction: rtl;
|
|
@@ -26015,7 +26513,7 @@ nz-tree {
|
|
|
26015
26513
|
.ant-select-tree-checkbox-inner::after {
|
|
26016
26514
|
position: absolute;
|
|
26017
26515
|
top: 50%;
|
|
26018
|
-
left:
|
|
26516
|
+
left: 21.5%;
|
|
26019
26517
|
display: table;
|
|
26020
26518
|
width: 5.71428571px;
|
|
26021
26519
|
height: 9.14285714px;
|
|
@@ -26166,7 +26664,7 @@ nz-tree {
|
|
|
26166
26664
|
margin-left: 8px;
|
|
26167
26665
|
}
|
|
26168
26666
|
.ant-tree-select-dropdown {
|
|
26169
|
-
padding: 8px 4px
|
|
26667
|
+
padding: 8px 4px;
|
|
26170
26668
|
}
|
|
26171
26669
|
.ant-tree-select-dropdown-rtl {
|
|
26172
26670
|
direction: rtl;
|
|
@@ -26177,9 +26675,6 @@ nz-tree {
|
|
|
26177
26675
|
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner {
|
|
26178
26676
|
align-items: stretch;
|
|
26179
26677
|
}
|
|
26180
|
-
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode {
|
|
26181
|
-
padding-bottom: 8px;
|
|
26182
|
-
}
|
|
26183
26678
|
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode .ant-select-tree-node-content-wrapper {
|
|
26184
26679
|
flex: auto;
|
|
26185
26680
|
}
|
|
@@ -26209,6 +26704,23 @@ nz-tree {
|
|
|
26209
26704
|
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-node-content-wrapper {
|
|
26210
26705
|
flex: auto;
|
|
26211
26706
|
}
|
|
26707
|
+
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging {
|
|
26708
|
+
position: relative;
|
|
26709
|
+
}
|
|
26710
|
+
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging::after {
|
|
26711
|
+
position: absolute;
|
|
26712
|
+
top: 0;
|
|
26713
|
+
right: 0;
|
|
26714
|
+
bottom: 4px;
|
|
26715
|
+
left: 0;
|
|
26716
|
+
border: 1px solid #177ddc;
|
|
26717
|
+
opacity: 0;
|
|
26718
|
+
animation: ant-tree-node-fx-do-not-use 0.3s;
|
|
26719
|
+
animation-play-state: running;
|
|
26720
|
+
animation-fill-mode: forwards;
|
|
26721
|
+
content: '';
|
|
26722
|
+
pointer-events: none;
|
|
26723
|
+
}
|
|
26212
26724
|
.ant-select-tree .ant-select-tree-treenode {
|
|
26213
26725
|
display: flex;
|
|
26214
26726
|
align-items: flex-start;
|
|
@@ -26238,6 +26750,16 @@ nz-tree {
|
|
|
26238
26750
|
display: inline-block;
|
|
26239
26751
|
width: 24px;
|
|
26240
26752
|
}
|
|
26753
|
+
.ant-select-tree-draggable-icon {
|
|
26754
|
+
width: 24px;
|
|
26755
|
+
line-height: 24px;
|
|
26756
|
+
text-align: center;
|
|
26757
|
+
opacity: 0.2;
|
|
26758
|
+
transition: opacity 0.3s;
|
|
26759
|
+
}
|
|
26760
|
+
.ant-select-tree-treenode:hover .ant-select-tree-draggable-icon {
|
|
26761
|
+
opacity: 0.45;
|
|
26762
|
+
}
|
|
26241
26763
|
.ant-select-tree-switcher {
|
|
26242
26764
|
position: relative;
|
|
26243
26765
|
flex: none;
|
|
@@ -26278,16 +26800,16 @@ nz-tree {
|
|
|
26278
26800
|
.ant-select-tree-switcher-leaf-line::before {
|
|
26279
26801
|
position: absolute;
|
|
26280
26802
|
top: 0;
|
|
26803
|
+
right: 12px;
|
|
26281
26804
|
bottom: -4px;
|
|
26282
26805
|
margin-left: -1px;
|
|
26283
|
-
border-
|
|
26806
|
+
border-right: 1px solid #d9d9d9;
|
|
26284
26807
|
content: ' ';
|
|
26285
26808
|
}
|
|
26286
26809
|
.ant-select-tree-switcher-leaf-line::after {
|
|
26287
26810
|
position: absolute;
|
|
26288
26811
|
width: 10px;
|
|
26289
26812
|
height: 14px;
|
|
26290
|
-
margin-left: -1px;
|
|
26291
26813
|
border-bottom: 1px solid #d9d9d9;
|
|
26292
26814
|
content: ' ';
|
|
26293
26815
|
}
|
|
@@ -26328,11 +26850,11 @@ nz-tree {
|
|
|
26328
26850
|
.ant-select-tree-unselectable .ant-select-tree-node-content-wrapper:hover {
|
|
26329
26851
|
background-color: transparent;
|
|
26330
26852
|
}
|
|
26331
|
-
.ant-select-tree-node-content-wrapper
|
|
26853
|
+
.ant-select-tree-node-content-wrapper {
|
|
26332
26854
|
line-height: 24px;
|
|
26333
26855
|
user-select: none;
|
|
26334
26856
|
}
|
|
26335
|
-
.ant-select-tree-node-content-wrapper
|
|
26857
|
+
.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator {
|
|
26336
26858
|
position: absolute;
|
|
26337
26859
|
z-index: 1;
|
|
26338
26860
|
height: 2px;
|
|
@@ -26340,7 +26862,7 @@ nz-tree {
|
|
|
26340
26862
|
border-radius: 1px;
|
|
26341
26863
|
pointer-events: none;
|
|
26342
26864
|
}
|
|
26343
|
-
.ant-select-tree-node-content-wrapper
|
|
26865
|
+
.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator::after {
|
|
26344
26866
|
position: absolute;
|
|
26345
26867
|
top: -3px;
|
|
26346
26868
|
left: -6px;
|
|
@@ -26373,7 +26895,12 @@ nz-tree {
|
|
|
26373
26895
|
background: #141414;
|
|
26374
26896
|
}
|
|
26375
26897
|
.ant-select-tree-show-line .ant-select-tree-switcher-line-icon {
|
|
26376
|
-
vertical-align: -0.
|
|
26898
|
+
vertical-align: -0.15em;
|
|
26899
|
+
}
|
|
26900
|
+
.ant-select-tree .ant-select-tree-treenode-leaf-last .ant-select-tree-switcher-leaf-line::before {
|
|
26901
|
+
top: auto !important;
|
|
26902
|
+
bottom: auto !important;
|
|
26903
|
+
height: 14px !important;
|
|
26377
26904
|
}
|
|
26378
26905
|
.ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg {
|
|
26379
26906
|
transform: rotate(90deg);
|
|
@@ -26672,7 +27199,7 @@ nz-space-item {
|
|
|
26672
27199
|
}
|
|
26673
27200
|
.ant-image-img-placeholder {
|
|
26674
27201
|
background-color: #f5f5f5;
|
|
26675
|
-
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=);
|
|
27202
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=');
|
|
26676
27203
|
background-repeat: no-repeat;
|
|
26677
27204
|
background-position: center center;
|
|
26678
27205
|
background-size: 30%;
|
|
@@ -26692,6 +27219,12 @@ nz-space-item {
|
|
|
26692
27219
|
opacity: 0;
|
|
26693
27220
|
transition: opacity 0.3s;
|
|
26694
27221
|
}
|
|
27222
|
+
.ant-image-mask-info {
|
|
27223
|
+
padding: 0 4px;
|
|
27224
|
+
overflow: hidden;
|
|
27225
|
+
white-space: nowrap;
|
|
27226
|
+
text-overflow: ellipsis;
|
|
27227
|
+
}
|
|
26695
27228
|
.ant-image-mask-info .anticon {
|
|
26696
27229
|
margin-inline-end: 4px;
|
|
26697
27230
|
}
|
|
@@ -30922,14 +31455,8 @@ body {
|
|
|
30922
31455
|
overflow-x: hidden;
|
|
30923
31456
|
overflow-y: scroll;
|
|
30924
31457
|
-webkit-overflow-scrolling: touch;
|
|
30925
|
-
-
|
|
30926
|
-
-
|
|
30927
|
-
-ms-content-zooming: zoom;
|
|
30928
|
-
-ms-scroll-rails: none;
|
|
30929
|
-
-ms-content-zoom-limit-min: 100%;
|
|
30930
|
-
-ms-content-zoom-limit-max: 500%;
|
|
30931
|
-
-ms-scroll-snap-type: proximity;
|
|
30932
|
-
-ms-scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
|
|
31458
|
+
scroll-snap-type: proximity;
|
|
31459
|
+
scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
|
|
30933
31460
|
scrollbar-width: none;
|
|
30934
31461
|
}
|
|
30935
31462
|
.alain-default__aside-inner::-webkit-scrollbar {
|
|
@@ -30937,7 +31464,7 @@ body {
|
|
|
30937
31464
|
height: 0;
|
|
30938
31465
|
}
|
|
30939
31466
|
.alain-default__aside-inner::-webkit-scrollbar-track {
|
|
30940
|
-
|
|
31467
|
+
box-shadow: inset 0 0 0 transparent;
|
|
30941
31468
|
}
|
|
30942
31469
|
.alain-default__aside-inner::-webkit-scrollbar-thumb {
|
|
30943
31470
|
background-color: transparent;
|
|
@@ -31806,6 +32333,7 @@ ellipsis {
|
|
|
31806
32333
|
}
|
|
31807
32334
|
.ellipsis__line-clamp {
|
|
31808
32335
|
position: relative;
|
|
32336
|
+
/* stylelint-disable-next-line value-no-vendor-prefix */
|
|
31809
32337
|
display: -webkit-box;
|
|
31810
32338
|
overflow: hidden;
|
|
31811
32339
|
text-overflow: ellipsis;
|