@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/compact.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: 4px 15px;
|
|
1856
|
-
}
|
|
1857
1854
|
.ant-alert-rtl .ant-alert-icon {
|
|
1858
1855
|
margin-right: auto;
|
|
1859
1856
|
margin-left: 4px;
|
|
@@ -1866,6 +1863,10 @@ nz-affix {
|
|
|
1866
1863
|
margin-right: 4px;
|
|
1867
1864
|
margin-left: auto;
|
|
1868
1865
|
}
|
|
1866
|
+
.ant-alert-rtl.ant-alert-with-description {
|
|
1867
|
+
padding-right: 20px;
|
|
1868
|
+
padding-left: 11px;
|
|
1869
|
+
}
|
|
1869
1870
|
.ant-alert-rtl.ant-alert-with-description .ant-alert-icon {
|
|
1870
1871
|
margin-right: auto;
|
|
1871
1872
|
margin-left: 11px;
|
|
@@ -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 #fff;
|
|
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: 18px;
|
|
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: 18px;
|
|
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: 12px;
|
|
2725
2704
|
border-radius: 2px;
|
|
2726
2705
|
color: rgba(0, 0, 0, 0.85);
|
|
2727
|
-
background: #fff;
|
|
2728
2706
|
border-color: #d9d9d9;
|
|
2707
|
+
background: #fff;
|
|
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: #40a9ff;
|
|
2778
|
-
background: #fff;
|
|
2779
2757
|
border-color: #40a9ff;
|
|
2758
|
+
background: #fff;
|
|
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: #096dd9;
|
|
2797
|
-
background: #fff;
|
|
2798
2776
|
border-color: #096dd9;
|
|
2777
|
+
background: #fff;
|
|
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(0, 0, 0, 0.25);
|
|
2817
|
-
background: #f5f5f5;
|
|
2818
2796
|
border-color: #d9d9d9;
|
|
2797
|
+
background: #f5f5f5;
|
|
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: #1890ff;
|
|
2852
2830
|
border-color: #1890ff;
|
|
2831
|
+
background: #1890ff;
|
|
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: #40a9ff;
|
|
2872
2850
|
border-color: #40a9ff;
|
|
2851
|
+
background: #40a9ff;
|
|
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: #096dd9;
|
|
2891
2869
|
border-color: #096dd9;
|
|
2870
|
+
background: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
2910
|
-
background: #f5f5f5;
|
|
2911
2889
|
border-color: #d9d9d9;
|
|
2890
|
+
background: #f5f5f5;
|
|
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(0, 0, 0, 0.85);
|
|
2956
|
-
background: transparent;
|
|
2957
2935
|
border-color: #d9d9d9;
|
|
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: #40a9ff;
|
|
2974
|
-
background: transparent;
|
|
2975
2953
|
border-color: #40a9ff;
|
|
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: #096dd9;
|
|
2993
|
-
background: transparent;
|
|
2994
2972
|
border-color: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
3013
|
-
background: #f5f5f5;
|
|
3014
2992
|
border-color: #d9d9d9;
|
|
2993
|
+
background: #f5f5f5;
|
|
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(0, 0, 0, 0.85);
|
|
3038
|
-
background: #fff;
|
|
3039
3017
|
border-color: #d9d9d9;
|
|
3018
|
+
background: #fff;
|
|
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: #40a9ff;
|
|
3057
|
-
background: #fff;
|
|
3058
3036
|
border-color: #40a9ff;
|
|
3037
|
+
background: #fff;
|
|
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: #096dd9;
|
|
3076
|
-
background: #fff;
|
|
3077
3055
|
border-color: #096dd9;
|
|
3056
|
+
background: #fff;
|
|
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(0, 0, 0, 0.25);
|
|
3096
|
-
background: #f5f5f5;
|
|
3097
3075
|
border-color: #d9d9d9;
|
|
3076
|
+
background: #f5f5f5;
|
|
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: #ff4d4f;
|
|
3122
3100
|
border-color: #ff4d4f;
|
|
3101
|
+
background: #ff4d4f;
|
|
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: #ff7875;
|
|
3142
3120
|
border-color: #ff7875;
|
|
3121
|
+
background: #ff7875;
|
|
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: #d9363e;
|
|
3161
3139
|
border-color: #d9363e;
|
|
3140
|
+
background: #d9363e;
|
|
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(0, 0, 0, 0.25);
|
|
3180
|
-
background: #f5f5f5;
|
|
3181
3159
|
border-color: #d9d9d9;
|
|
3160
|
+
background: #f5f5f5;
|
|
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: #1890ff;
|
|
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: #40a9ff;
|
|
3224
|
-
background: transparent;
|
|
3225
3203
|
border-color: #40a9ff;
|
|
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: #096dd9;
|
|
3243
|
-
background: transparent;
|
|
3244
3222
|
border-color: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
3263
|
-
background: #f5f5f5;
|
|
3264
3242
|
border-color: #d9d9d9;
|
|
3243
|
+
background: #f5f5f5;
|
|
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(0, 0, 0, 0.25);
|
|
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(0, 0, 0, 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: #40a9ff;
|
|
3343
|
-
background: transparent;
|
|
3344
3322
|
border-color: #40a9ff;
|
|
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: #096dd9;
|
|
3362
|
-
background: transparent;
|
|
3363
3341
|
border-color: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
3382
|
-
background: #f5f5f5;
|
|
3383
3361
|
border-color: #d9d9d9;
|
|
3362
|
+
background: #f5f5f5;
|
|
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(0, 0, 0, 0.25);
|
|
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: #ff4d4f;
|
|
3446
|
-
background: #fff;
|
|
3447
3425
|
border-color: #ff4d4f;
|
|
3426
|
+
background: #fff;
|
|
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: #ff7875;
|
|
3464
|
-
background: #fff;
|
|
3465
3443
|
border-color: #ff7875;
|
|
3444
|
+
background: #fff;
|
|
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: #d9363e;
|
|
3483
|
-
background: #fff;
|
|
3484
3462
|
border-color: #d9363e;
|
|
3463
|
+
background: #fff;
|
|
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(0, 0, 0, 0.25);
|
|
3503
|
-
background: #f5f5f5;
|
|
3504
3482
|
border-color: #d9d9d9;
|
|
3483
|
+
background: #f5f5f5;
|
|
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: #ff4d4f;
|
|
3529
3507
|
border-color: #ff4d4f;
|
|
3508
|
+
background: #ff4d4f;
|
|
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: #ff7875;
|
|
3549
3527
|
border-color: #ff7875;
|
|
3528
|
+
background: #ff7875;
|
|
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: #d9363e;
|
|
3568
3546
|
border-color: #d9363e;
|
|
3547
|
+
background: #d9363e;
|
|
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(0, 0, 0, 0.25);
|
|
3587
|
-
background: #f5f5f5;
|
|
3588
3566
|
border-color: #d9d9d9;
|
|
3567
|
+
background: #f5f5f5;
|
|
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: #ff4d4f;
|
|
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: #40a9ff;
|
|
3631
|
-
background: transparent;
|
|
3632
3610
|
border-color: #40a9ff;
|
|
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: #096dd9;
|
|
3650
|
-
background: transparent;
|
|
3651
3629
|
border-color: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
3670
|
-
background: #f5f5f5;
|
|
3671
3649
|
border-color: #d9d9d9;
|
|
3650
|
+
background: #f5f5f5;
|
|
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: #ff7875;
|
|
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: #d9363e;
|
|
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(0, 0, 0, 0.25);
|
|
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: #ff4d4f;
|
|
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: #40a9ff;
|
|
3779
|
-
background: transparent;
|
|
3780
3758
|
border-color: #40a9ff;
|
|
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: #096dd9;
|
|
3798
|
-
background: transparent;
|
|
3799
3777
|
border-color: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
3818
|
-
background: #f5f5f5;
|
|
3819
3797
|
border-color: #d9d9d9;
|
|
3798
|
+
background: #f5f5f5;
|
|
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: #ff7875;
|
|
3844
|
-
background: rgba(0, 0, 0, 0.018);
|
|
3845
3823
|
border-color: transparent;
|
|
3824
|
+
background: rgba(0, 0, 0, 0.018);
|
|
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: #d9363e;
|
|
3863
|
-
background: rgba(0, 0, 0, 0.028);
|
|
3864
3842
|
border-color: transparent;
|
|
3843
|
+
background: rgba(0, 0, 0, 0.028);
|
|
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(0, 0, 0, 0.25);
|
|
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: 1.3px 0;
|
|
3910
3889
|
font-size: 14px;
|
|
3911
3890
|
border-radius: 2px;
|
|
3912
|
-
vertical-align: -
|
|
3891
|
+
vertical-align: -3px;
|
|
3913
3892
|
}
|
|
3914
3893
|
.ant-btn-icon-only > * {
|
|
3915
3894
|
font-size: 14px;
|
|
@@ -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: 12px;
|
|
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: 28px;
|
|
3939
3928
|
padding: 3px 14px;
|
|
@@ -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: 4px;
|
|
@@ -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: 4px;
|
|
4192
4167
|
}
|
|
4193
|
-
.ant-btn-background-ghost {
|
|
4168
|
+
.ant-btn.ant-btn-background-ghost {
|
|
4194
4169
|
color: #fff;
|
|
4195
|
-
background: transparent !important;
|
|
4196
4170
|
border-color: #fff;
|
|
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: #40a9ff;
|
|
4181
|
+
border-color: #40a9ff;
|
|
4182
|
+
}
|
|
4183
|
+
.ant-btn.ant-btn-background-ghost:active {
|
|
4184
|
+
color: #096dd9;
|
|
4185
|
+
border-color: #096dd9;
|
|
4186
|
+
}
|
|
4187
|
+
.ant-btn.ant-btn-background-ghost[disabled] {
|
|
4188
|
+
color: rgba(0, 0, 0, 0.25);
|
|
4189
|
+
background: transparent;
|
|
4190
|
+
border-color: #d9d9d9;
|
|
4191
|
+
}
|
|
4198
4192
|
.ant-btn-background-ghost.ant-btn-primary {
|
|
4199
4193
|
color: #1890ff;
|
|
4200
|
-
background: transparent;
|
|
4201
4194
|
border-color: #1890ff;
|
|
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: #40a9ff;
|
|
4219
|
-
background: transparent;
|
|
4220
4212
|
border-color: #40a9ff;
|
|
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: #096dd9;
|
|
4238
|
-
background: transparent;
|
|
4239
4230
|
border-color: #096dd9;
|
|
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(0, 0, 0, 0.25);
|
|
4258
|
-
background: #f5f5f5;
|
|
4259
4249
|
border-color: #d9d9d9;
|
|
4250
|
+
background: #f5f5f5;
|
|
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: #ff4d4f;
|
|
4283
|
-
background: transparent;
|
|
4284
4274
|
border-color: #ff4d4f;
|
|
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: #ff7875;
|
|
4302
|
-
background: transparent;
|
|
4303
4292
|
border-color: #ff7875;
|
|
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: #d9363e;
|
|
4321
|
-
background: transparent;
|
|
4322
4310
|
border-color: #d9363e;
|
|
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(0, 0, 0, 0.25);
|
|
4341
|
-
background: #f5f5f5;
|
|
4342
4329
|
border-color: #d9d9d9;
|
|
4330
|
+
background: #f5f5f5;
|
|
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: #ff4d4f;
|
|
4366
|
-
background: transparent;
|
|
4367
4354
|
border-color: #ff4d4f;
|
|
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: #ff7875;
|
|
4385
|
-
background: transparent;
|
|
4386
4372
|
border-color: #ff7875;
|
|
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: #d9363e;
|
|
4404
|
-
background: transparent;
|
|
4405
4390
|
border-color: #d9363e;
|
|
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(0, 0, 0, 0.25);
|
|
4424
|
-
background: #f5f5f5;
|
|
4425
4409
|
border-color: #d9d9d9;
|
|
4410
|
+
background: #f5f5f5;
|
|
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: #ff4d4f;
|
|
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: #ff7875;
|
|
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: #d9363e;
|
|
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(0, 0, 0, 0.25);
|
|
4507
|
-
background: #f5f5f5;
|
|
4508
4489
|
border-color: #d9d9d9;
|
|
4490
|
+
background: #f5f5f5;
|
|
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: -9px;
|
|
4678
4660
|
color: rgba(0, 0, 0, 0.85);
|
|
4679
4661
|
font-weight: normal;
|
|
4680
4662
|
font-size: 12px;
|
|
4681
4663
|
}
|
|
4682
|
-
.ant-card-head .ant-tabs-bar {
|
|
4664
|
+
.ant-card-head .ant-tabs-top-bar {
|
|
4683
4665
|
border-bottom: 1px solid #f0f0f0;
|
|
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: 5px;
|
|
5355
5336
|
height: 8px;
|
|
@@ -5526,51 +5507,18 @@ 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: 8px 8px;
|
|
5530
5514
|
color: rgba(0, 0, 0, 0.85);
|
|
5531
5515
|
line-height: 1.66667;
|
|
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
|
-
margin-right:
|
|
5521
|
+
margin-right: 8px;
|
|
5574
5522
|
font-size: 12px;
|
|
5575
5523
|
vertical-align: -1px;
|
|
5576
5524
|
}
|
|
@@ -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;
|
|
@@ -5590,9 +5538,10 @@ nz-carousel {
|
|
|
5590
5538
|
cursor: pointer;
|
|
5591
5539
|
}
|
|
5592
5540
|
.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
|
|
5593
|
-
padding-left:
|
|
5541
|
+
padding-left: 8px;
|
|
5594
5542
|
}
|
|
5595
5543
|
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
|
|
5544
|
+
position: relative;
|
|
5596
5545
|
padding: 8px 8px;
|
|
5597
5546
|
padding-right: 40px;
|
|
5598
5547
|
}
|
|
@@ -5663,14 +5612,19 @@ nz-carousel {
|
|
|
5663
5612
|
padding: 8px 8px;
|
|
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: 8px;
|
|
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
|
-
padding-right:
|
|
5627
|
+
padding-right: 8px;
|
|
5674
5628
|
padding-left: 0;
|
|
5675
5629
|
}
|
|
5676
5630
|
nz-collapse {
|
|
@@ -5821,9 +5775,9 @@ nz-comment-content {
|
|
|
5821
5775
|
}
|
|
5822
5776
|
.ant-picker-focused {
|
|
5823
5777
|
border-color: #40a9ff;
|
|
5778
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
5824
5779
|
border-right-width: 1px !important;
|
|
5825
5780
|
outline: 0;
|
|
5826
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 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 #d9d9d9;
|
|
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: #bfbfbf;
|
|
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: #bfbfbf;
|
|
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: #40a9ff;
|
|
5859
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
5901
5860
|
border-right-width: 1px !important;
|
|
5902
5861
|
outline: 0;
|
|
5903
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 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: #f5f5f5;
|
|
5870
|
+
border-color: #d9d9d9;
|
|
5871
|
+
box-shadow: none;
|
|
5912
5872
|
cursor: not-allowed;
|
|
5913
5873
|
opacity: 1;
|
|
5914
5874
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -5920,6 +5880,8 @@ nz-comment-content {
|
|
|
5920
5880
|
}
|
|
5921
5881
|
.ant-picker-input > input[disabled] {
|
|
5922
5882
|
background-color: #f5f5f5;
|
|
5883
|
+
border-color: #d9d9d9;
|
|
5884
|
+
box-shadow: none;
|
|
5923
5885
|
cursor: not-allowed;
|
|
5924
5886
|
opacity: 1;
|
|
5925
5887
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -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: #f0f0f0;
|
|
6178
6144
|
}
|
|
@@ -6306,9 +6272,6 @@ textarea.ant-picker-input > input {
|
|
|
6306
6272
|
.ant-picker-cell-in-view {
|
|
6307
6273
|
color: rgba(0, 0, 0, 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: 22px;
|
|
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 #7ec1ff;
|
|
6381
6345
|
border-bottom: 1px dashed #7ec1ff;
|
|
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: #cbe6ff;
|
|
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,14 +6413,14 @@ 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(0, 0, 0, 0.25);
|
|
6450
6417
|
pointer-events: none;
|
|
6451
6418
|
}
|
|
6452
6419
|
.ant-picker-cell-disabled .ant-picker-cell-inner {
|
|
6453
|
-
color: rgba(0, 0, 0, 0.25);
|
|
6454
6420
|
background: transparent;
|
|
6455
6421
|
}
|
|
6456
6422
|
.ant-picker-cell-disabled::before {
|
|
6457
|
-
background:
|
|
6423
|
+
background: rgba(0, 0, 0, 0.04);
|
|
6458
6424
|
}
|
|
6459
6425
|
.ant-picker-cell-disabled.ant-picker-cell-today .ant-picker-cell-inner::before {
|
|
6460
6426
|
border-color: rgba(0, 0, 0, 0.25);
|
|
@@ -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 4px;
|
|
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: #f5f5f5;
|
|
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 #7ec1ff;
|
|
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 #7ec1ff;
|
|
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(0, 0, 0, 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: 15px;
|
|
7145
|
+
display: inline-block;
|
|
7146
|
+
margin-right: 12px;
|
|
7197
7147
|
color: rgba(0, 0, 0, 0.45);
|
|
7198
7148
|
font-weight: 700;
|
|
7199
7149
|
font-size: 14px;
|
|
@@ -7214,27 +7164,30 @@ nz-descriptions {
|
|
|
7214
7164
|
color: rgba(0, 0, 0, 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(15px - 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: 11px 16px;
|
|
7225
7173
|
color: rgba(0, 0, 0, 0.85);
|
|
7226
7174
|
background: #fff;
|
|
7227
7175
|
border-bottom: 1px solid #f0f0f0;
|
|
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.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
7268
|
-
}
|
|
7269
7218
|
.ant-drawer .ant-picker-clear {
|
|
7270
7219
|
background: #fff;
|
|
7271
7220
|
}
|
|
@@ -7281,8 +7230,8 @@ nz-descriptions {
|
|
|
7281
7230
|
direction: rtl;
|
|
7282
7231
|
}
|
|
7283
7232
|
.ant-drawer-rtl .ant-drawer-close {
|
|
7284
|
-
right:
|
|
7285
|
-
left:
|
|
7233
|
+
margin-right: 0;
|
|
7234
|
+
margin-left: 12px;
|
|
7286
7235
|
}
|
|
7287
7236
|
.ant-dropdown-menu-item.ant-dropdown-menu-item-danger {
|
|
7288
7237
|
color: #ff4d4f;
|
|
@@ -7359,10 +7308,7 @@ nz-descriptions {
|
|
|
7359
7308
|
.ant-dropdown-placement-topLeft > .ant-dropdown-arrow,
|
|
7360
7309
|
.ant-dropdown-placement-topRight > .ant-dropdown-arrow {
|
|
7361
7310
|
bottom: 6.2px;
|
|
7362
|
-
border-
|
|
7363
|
-
border-right-color: #fff;
|
|
7364
|
-
border-bottom-color: #fff;
|
|
7365
|
-
border-left-color: transparent;
|
|
7311
|
+
border-color: transparent #fff #fff transparent;
|
|
7366
7312
|
box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
|
|
7367
7313
|
}
|
|
7368
7314
|
.ant-dropdown-placement-topCenter > .ant-dropdown-arrow {
|
|
@@ -7379,10 +7325,7 @@ nz-descriptions {
|
|
|
7379
7325
|
.ant-dropdown-placement-bottomLeft > .ant-dropdown-arrow,
|
|
7380
7326
|
.ant-dropdown-placement-bottomRight > .ant-dropdown-arrow {
|
|
7381
7327
|
top: 6px;
|
|
7382
|
-
border-
|
|
7383
|
-
border-right-color: transparent;
|
|
7384
|
-
border-bottom-color: transparent;
|
|
7385
|
-
border-left-color: #fff;
|
|
7328
|
+
border-color: #fff transparent transparent #fff;
|
|
7386
7329
|
box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
|
|
7387
7330
|
}
|
|
7388
7331
|
.ant-dropdown-placement-bottomCenter > .ant-dropdown-arrow {
|
|
@@ -7619,7 +7562,8 @@ nz-descriptions {
|
|
|
7619
7562
|
direction: rtl;
|
|
7620
7563
|
text-align: right;
|
|
7621
7564
|
}
|
|
7622
|
-
.ant-dropdown-rtl .ant-dropdown-menu-item-group-title
|
|
7565
|
+
.ant-dropdown-rtl .ant-dropdown-menu-item-group-title,
|
|
7566
|
+
.ant-dropdown-menu-submenu-rtl .ant-dropdown-menu-item-group-title {
|
|
7623
7567
|
direction: rtl;
|
|
7624
7568
|
text-align: right;
|
|
7625
7569
|
}
|
|
@@ -7641,13 +7585,13 @@ nz-descriptions {
|
|
|
7641
7585
|
margin-right: 0;
|
|
7642
7586
|
margin-left: 8px;
|
|
7643
7587
|
}
|
|
7644
|
-
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-
|
|
7645
|
-
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-
|
|
7588
|
+
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon,
|
|
7589
|
+
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon {
|
|
7646
7590
|
right: auto;
|
|
7647
7591
|
left: 4px;
|
|
7648
7592
|
}
|
|
7649
|
-
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
|
|
7650
|
-
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
|
|
7593
|
+
.ant-dropdown-rtl .ant-dropdown-menu-item .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon,
|
|
7594
|
+
.ant-dropdown-rtl .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-expand-icon .ant-dropdown-menu-submenu-arrow-icon {
|
|
7651
7595
|
margin-left: 0 !important;
|
|
7652
7596
|
transform: scaleX(-1);
|
|
7653
7597
|
}
|
|
@@ -7720,7 +7664,7 @@ nz-descriptions {
|
|
|
7720
7664
|
fill: #aeb8c2;
|
|
7721
7665
|
}
|
|
7722
7666
|
.ant-empty-img-default-path-2 {
|
|
7723
|
-
fill: url(#linearGradient-1);
|
|
7667
|
+
fill: url('#linearGradient-1');
|
|
7724
7668
|
}
|
|
7725
7669
|
.ant-empty-img-default-path-3 {
|
|
7726
7670
|
fill: #f5f5f7;
|
|
@@ -12940,6 +12884,8 @@ nz-empty {
|
|
|
12940
12884
|
border: 1px solid #d9d9d9;
|
|
12941
12885
|
border-radius: 2px;
|
|
12942
12886
|
transition: all 0.3s;
|
|
12887
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
12888
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
12943
12889
|
display: inline-flex;
|
|
12944
12890
|
}
|
|
12945
12891
|
.ant-input-affix-wrapper::-moz-placeholder {
|
|
@@ -12947,6 +12893,7 @@ nz-empty {
|
|
|
12947
12893
|
}
|
|
12948
12894
|
.ant-input-affix-wrapper::placeholder {
|
|
12949
12895
|
color: #bfbfbf;
|
|
12896
|
+
user-select: none;
|
|
12950
12897
|
}
|
|
12951
12898
|
.ant-input-affix-wrapper:placeholder-shown {
|
|
12952
12899
|
text-overflow: ellipsis;
|
|
@@ -12956,6 +12903,7 @@ nz-empty {
|
|
|
12956
12903
|
}
|
|
12957
12904
|
.ant-input-affix-wrapper::placeholder {
|
|
12958
12905
|
color: #bfbfbf;
|
|
12906
|
+
user-select: none;
|
|
12959
12907
|
}
|
|
12960
12908
|
.ant-input-affix-wrapper:placeholder-shown {
|
|
12961
12909
|
text-overflow: ellipsis;
|
|
@@ -12971,9 +12919,9 @@ nz-empty {
|
|
|
12971
12919
|
.ant-input-affix-wrapper:focus,
|
|
12972
12920
|
.ant-input-affix-wrapper-focused {
|
|
12973
12921
|
border-color: #40a9ff;
|
|
12922
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
12974
12923
|
border-right-width: 1px !important;
|
|
12975
12924
|
outline: 0;
|
|
12976
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
12977
12925
|
}
|
|
12978
12926
|
.ant-input-rtl .ant-input-affix-wrapper:focus,
|
|
12979
12927
|
.ant-input-rtl .ant-input-affix-wrapper-focused {
|
|
@@ -12982,6 +12930,8 @@ nz-empty {
|
|
|
12982
12930
|
}
|
|
12983
12931
|
.ant-input-affix-wrapper-disabled {
|
|
12984
12932
|
background-color: #f5f5f5;
|
|
12933
|
+
border-color: #d9d9d9;
|
|
12934
|
+
box-shadow: none;
|
|
12985
12935
|
cursor: not-allowed;
|
|
12986
12936
|
opacity: 1;
|
|
12987
12937
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -12993,6 +12943,8 @@ nz-empty {
|
|
|
12993
12943
|
}
|
|
12994
12944
|
.ant-input-affix-wrapper[disabled] {
|
|
12995
12945
|
background-color: #f5f5f5;
|
|
12946
|
+
border-color: #d9d9d9;
|
|
12947
|
+
box-shadow: none;
|
|
12996
12948
|
cursor: not-allowed;
|
|
12997
12949
|
opacity: 1;
|
|
12998
12950
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -13055,7 +13007,7 @@ textarea.ant-input-affix-wrapper {
|
|
|
13055
13007
|
outline: none;
|
|
13056
13008
|
}
|
|
13057
13009
|
.ant-input-affix-wrapper > input.ant-input:focus {
|
|
13058
|
-
box-shadow: none;
|
|
13010
|
+
box-shadow: none !important;
|
|
13059
13011
|
}
|
|
13060
13012
|
.ant-input-affix-wrapper::before {
|
|
13061
13013
|
width: 0;
|
|
@@ -13074,25 +13026,25 @@ textarea.ant-input-affix-wrapper {
|
|
|
13074
13026
|
.ant-input-suffix {
|
|
13075
13027
|
margin-left: 4px;
|
|
13076
13028
|
}
|
|
13077
|
-
.ant-input-clear-icon {
|
|
13078
|
-
margin: 0
|
|
13029
|
+
.anticon.ant-input-clear-icon {
|
|
13030
|
+
margin: 0;
|
|
13079
13031
|
color: rgba(0, 0, 0, 0.25);
|
|
13080
13032
|
font-size: 12px;
|
|
13081
13033
|
vertical-align: -1px;
|
|
13082
13034
|
cursor: pointer;
|
|
13083
13035
|
transition: color 0.3s;
|
|
13084
13036
|
}
|
|
13085
|
-
.ant-input-clear-icon:hover {
|
|
13037
|
+
.anticon.ant-input-clear-icon:hover {
|
|
13086
13038
|
color: rgba(0, 0, 0, 0.45);
|
|
13087
13039
|
}
|
|
13088
|
-
.ant-input-clear-icon:active {
|
|
13040
|
+
.anticon.ant-input-clear-icon:active {
|
|
13089
13041
|
color: rgba(0, 0, 0, 0.85);
|
|
13090
13042
|
}
|
|
13091
|
-
.ant-input-clear-icon-hidden {
|
|
13043
|
+
.anticon.ant-input-clear-icon-hidden {
|
|
13092
13044
|
visibility: hidden;
|
|
13093
13045
|
}
|
|
13094
|
-
.ant-input-clear-icon
|
|
13095
|
-
margin
|
|
13046
|
+
.anticon.ant-input-clear-icon-has-suffix {
|
|
13047
|
+
margin: 0 4px;
|
|
13096
13048
|
}
|
|
13097
13049
|
.ant-input-affix-wrapper-textarea-with-clear-btn {
|
|
13098
13050
|
padding: 0 !important;
|
|
@@ -13124,12 +13076,15 @@ textarea.ant-input-affix-wrapper {
|
|
|
13124
13076
|
border: 1px solid #d9d9d9;
|
|
13125
13077
|
border-radius: 2px;
|
|
13126
13078
|
transition: all 0.3s;
|
|
13079
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13080
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13127
13081
|
}
|
|
13128
13082
|
.ant-input::-moz-placeholder {
|
|
13129
13083
|
opacity: 1;
|
|
13130
13084
|
}
|
|
13131
13085
|
.ant-input::placeholder {
|
|
13132
13086
|
color: #bfbfbf;
|
|
13087
|
+
user-select: none;
|
|
13133
13088
|
}
|
|
13134
13089
|
.ant-input:placeholder-shown {
|
|
13135
13090
|
text-overflow: ellipsis;
|
|
@@ -13139,6 +13094,7 @@ textarea.ant-input-affix-wrapper {
|
|
|
13139
13094
|
}
|
|
13140
13095
|
.ant-input::placeholder {
|
|
13141
13096
|
color: #bfbfbf;
|
|
13097
|
+
user-select: none;
|
|
13142
13098
|
}
|
|
13143
13099
|
.ant-input:placeholder-shown {
|
|
13144
13100
|
text-overflow: ellipsis;
|
|
@@ -13154,9 +13110,9 @@ textarea.ant-input-affix-wrapper {
|
|
|
13154
13110
|
.ant-input:focus,
|
|
13155
13111
|
.ant-input-focused {
|
|
13156
13112
|
border-color: #40a9ff;
|
|
13113
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
13157
13114
|
border-right-width: 1px !important;
|
|
13158
13115
|
outline: 0;
|
|
13159
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
13160
13116
|
}
|
|
13161
13117
|
.ant-input-rtl .ant-input:focus,
|
|
13162
13118
|
.ant-input-rtl .ant-input-focused {
|
|
@@ -13165,6 +13121,8 @@ textarea.ant-input-affix-wrapper {
|
|
|
13165
13121
|
}
|
|
13166
13122
|
.ant-input-disabled {
|
|
13167
13123
|
background-color: #f5f5f5;
|
|
13124
|
+
border-color: #d9d9d9;
|
|
13125
|
+
box-shadow: none;
|
|
13168
13126
|
cursor: not-allowed;
|
|
13169
13127
|
opacity: 1;
|
|
13170
13128
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -13176,6 +13134,8 @@ textarea.ant-input-affix-wrapper {
|
|
|
13176
13134
|
}
|
|
13177
13135
|
.ant-input[disabled] {
|
|
13178
13136
|
background-color: #f5f5f5;
|
|
13137
|
+
border-color: #d9d9d9;
|
|
13138
|
+
box-shadow: none;
|
|
13179
13139
|
cursor: not-allowed;
|
|
13180
13140
|
opacity: 1;
|
|
13181
13141
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -13300,6 +13260,15 @@ textarea.ant-input {
|
|
|
13300
13260
|
.ant-input-group-addon .ant-select-focused .ant-select-selector {
|
|
13301
13261
|
color: #1890ff;
|
|
13302
13262
|
}
|
|
13263
|
+
.ant-input-group-addon .ant-cascader-picker {
|
|
13264
|
+
margin: -9px -8px;
|
|
13265
|
+
background-color: transparent;
|
|
13266
|
+
}
|
|
13267
|
+
.ant-input-group-addon .ant-cascader-picker .ant-cascader-input {
|
|
13268
|
+
text-align: left;
|
|
13269
|
+
border: 0;
|
|
13270
|
+
box-shadow: none;
|
|
13271
|
+
}
|
|
13303
13272
|
.ant-input-group > .ant-input:first-child,
|
|
13304
13273
|
.ant-input-group-addon:first-child {
|
|
13305
13274
|
border-top-right-radius: 0;
|
|
@@ -13349,10 +13318,6 @@ textarea.ant-input {
|
|
|
13349
13318
|
.ant-input-group-sm .ant-select-single .ant-select-selector {
|
|
13350
13319
|
height: 22px;
|
|
13351
13320
|
}
|
|
13352
|
-
.ant-input-group .ant-input-affix-wrapper:not(:first-child) {
|
|
13353
|
-
border-top-left-radius: 0;
|
|
13354
|
-
border-bottom-left-radius: 0;
|
|
13355
|
-
}
|
|
13356
13321
|
.ant-input-group .ant-input-affix-wrapper:not(:last-child) {
|
|
13357
13322
|
border-top-right-radius: 0;
|
|
13358
13323
|
border-bottom-right-radius: 0;
|
|
@@ -13361,6 +13326,11 @@ textarea.ant-input {
|
|
|
13361
13326
|
border-top-left-radius: 2px;
|
|
13362
13327
|
border-bottom-left-radius: 2px;
|
|
13363
13328
|
}
|
|
13329
|
+
.ant-input-group .ant-input-affix-wrapper:not(:first-child),
|
|
13330
|
+
.ant-input-search .ant-input-group .ant-input-affix-wrapper:not(:first-child) {
|
|
13331
|
+
border-top-left-radius: 0;
|
|
13332
|
+
border-bottom-left-radius: 0;
|
|
13333
|
+
}
|
|
13364
13334
|
.ant-input-group.ant-input-group-compact {
|
|
13365
13335
|
display: block;
|
|
13366
13336
|
}
|
|
@@ -13562,6 +13532,9 @@ textarea.ant-input {
|
|
|
13562
13532
|
padding-top: 3px;
|
|
13563
13533
|
padding-bottom: 3px;
|
|
13564
13534
|
}
|
|
13535
|
+
.ant-input-textarea-show-count > .ant-input {
|
|
13536
|
+
height: 100%;
|
|
13537
|
+
}
|
|
13565
13538
|
.ant-input-textarea-show-count::after {
|
|
13566
13539
|
float: right;
|
|
13567
13540
|
color: rgba(0, 0, 0, 0.45);
|
|
@@ -13637,9 +13610,9 @@ textarea.ant-input {
|
|
|
13637
13610
|
.ant-input-textarea-rtl.ant-input-textarea-show-count::after {
|
|
13638
13611
|
text-align: left;
|
|
13639
13612
|
}
|
|
13640
|
-
.ant-input-affix-wrapper-rtl .ant-input-clear-icon
|
|
13641
|
-
margin-right:
|
|
13642
|
-
margin-left:
|
|
13613
|
+
.ant-input-affix-wrapper-rtl .ant-input-clear-icon-has-suffix {
|
|
13614
|
+
margin-right: 0;
|
|
13615
|
+
margin-left: 4px;
|
|
13643
13616
|
}
|
|
13644
13617
|
.ant-input-affix-wrapper-rtl .ant-input-clear-icon {
|
|
13645
13618
|
right: auto;
|
|
@@ -13714,6 +13687,8 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13714
13687
|
background-color: #fff;
|
|
13715
13688
|
background-image: none;
|
|
13716
13689
|
transition: all 0.3s;
|
|
13690
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13691
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13717
13692
|
display: inline-block;
|
|
13718
13693
|
width: 90px;
|
|
13719
13694
|
margin: 0;
|
|
@@ -13726,6 +13701,7 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13726
13701
|
}
|
|
13727
13702
|
.ant-input-number::placeholder {
|
|
13728
13703
|
color: #bfbfbf;
|
|
13704
|
+
user-select: none;
|
|
13729
13705
|
}
|
|
13730
13706
|
.ant-input-number:placeholder-shown {
|
|
13731
13707
|
text-overflow: ellipsis;
|
|
@@ -13735,6 +13711,7 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13735
13711
|
}
|
|
13736
13712
|
.ant-input-number::placeholder {
|
|
13737
13713
|
color: #bfbfbf;
|
|
13714
|
+
user-select: none;
|
|
13738
13715
|
}
|
|
13739
13716
|
.ant-input-number:placeholder-shown {
|
|
13740
13717
|
text-overflow: ellipsis;
|
|
@@ -13750,9 +13727,9 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13750
13727
|
.ant-input-number:focus,
|
|
13751
13728
|
.ant-input-number-focused {
|
|
13752
13729
|
border-color: #40a9ff;
|
|
13730
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
13753
13731
|
border-right-width: 1px !important;
|
|
13754
13732
|
outline: 0;
|
|
13755
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
13756
13733
|
}
|
|
13757
13734
|
.ant-input-rtl .ant-input-number:focus,
|
|
13758
13735
|
.ant-input-rtl .ant-input-number-focused {
|
|
@@ -13761,6 +13738,8 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13761
13738
|
}
|
|
13762
13739
|
.ant-input-number-disabled {
|
|
13763
13740
|
background-color: #f5f5f5;
|
|
13741
|
+
border-color: #d9d9d9;
|
|
13742
|
+
box-shadow: none;
|
|
13764
13743
|
cursor: not-allowed;
|
|
13765
13744
|
opacity: 1;
|
|
13766
13745
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -13772,6 +13751,8 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
13772
13751
|
}
|
|
13773
13752
|
.ant-input-number[disabled] {
|
|
13774
13753
|
background-color: #f5f5f5;
|
|
13754
|
+
border-color: #d9d9d9;
|
|
13755
|
+
box-shadow: none;
|
|
13775
13756
|
cursor: not-allowed;
|
|
13776
13757
|
opacity: 1;
|
|
13777
13758
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -13809,121 +13790,463 @@ textarea.ant-input-number {
|
|
|
13809
13790
|
.ant-input-number-rtl {
|
|
13810
13791
|
direction: rtl;
|
|
13811
13792
|
}
|
|
13812
|
-
.ant-input-number-
|
|
13793
|
+
.ant-input-number-group {
|
|
13794
|
+
box-sizing: border-box;
|
|
13795
|
+
margin: 0;
|
|
13796
|
+
padding: 0;
|
|
13797
|
+
color: rgba(0, 0, 0, 0.85);
|
|
13798
|
+
font-size: 12px;
|
|
13799
|
+
font-variant: tabular-nums;
|
|
13800
|
+
line-height: 1.66667;
|
|
13801
|
+
list-style: none;
|
|
13802
|
+
font-feature-settings: 'tnum';
|
|
13813
13803
|
position: relative;
|
|
13814
|
-
display:
|
|
13804
|
+
display: table;
|
|
13815
13805
|
width: 100%;
|
|
13816
|
-
|
|
13817
|
-
|
|
13818
|
-
color: rgba(0, 0, 0, 0.45);
|
|
13819
|
-
font-weight: bold;
|
|
13820
|
-
line-height: 0;
|
|
13821
|
-
text-align: center;
|
|
13822
|
-
transition: all 0.1s linear;
|
|
13806
|
+
border-collapse: separate;
|
|
13807
|
+
border-spacing: 0;
|
|
13823
13808
|
}
|
|
13824
|
-
.ant-input-number-
|
|
13825
|
-
|
|
13809
|
+
.ant-input-number-group[class*='col-'] {
|
|
13810
|
+
float: none;
|
|
13811
|
+
padding-right: 0;
|
|
13812
|
+
padding-left: 0;
|
|
13826
13813
|
}
|
|
13827
|
-
.ant-input-number-
|
|
13828
|
-
|
|
13829
|
-
color: #40a9ff;
|
|
13814
|
+
.ant-input-number-group > [class*='col-'] {
|
|
13815
|
+
padding-right: 8px;
|
|
13830
13816
|
}
|
|
13831
|
-
.ant-input-number-
|
|
13832
|
-
|
|
13833
|
-
display: inline-block;
|
|
13834
|
-
color: inherit;
|
|
13835
|
-
font-style: normal;
|
|
13836
|
-
line-height: 0;
|
|
13837
|
-
text-align: center;
|
|
13838
|
-
text-transform: none;
|
|
13839
|
-
vertical-align: -0.125em;
|
|
13840
|
-
text-rendering: optimizeLegibility;
|
|
13841
|
-
-webkit-font-smoothing: antialiased;
|
|
13842
|
-
-moz-osx-font-smoothing: grayscale;
|
|
13843
|
-
position: absolute;
|
|
13844
|
-
right: 4px;
|
|
13845
|
-
width: 12px;
|
|
13846
|
-
height: 12px;
|
|
13847
|
-
color: rgba(0, 0, 0, 0.45);
|
|
13848
|
-
line-height: 12px;
|
|
13849
|
-
transition: all 0.1s linear;
|
|
13850
|
-
user-select: none;
|
|
13817
|
+
.ant-input-number-group > [class*='col-']:last-child {
|
|
13818
|
+
padding-right: 0;
|
|
13851
13819
|
}
|
|
13852
|
-
.ant-input-number-
|
|
13853
|
-
.ant-input-number-
|
|
13854
|
-
|
|
13820
|
+
.ant-input-number-group-addon,
|
|
13821
|
+
.ant-input-number-group-wrap,
|
|
13822
|
+
.ant-input-number-group > .ant-input-number {
|
|
13823
|
+
display: table-cell;
|
|
13855
13824
|
}
|
|
13856
|
-
.ant-input-number-
|
|
13857
|
-
.ant-input-number-
|
|
13858
|
-
|
|
13825
|
+
.ant-input-number-group-addon:not(:first-child):not(:last-child),
|
|
13826
|
+
.ant-input-number-group-wrap:not(:first-child):not(:last-child),
|
|
13827
|
+
.ant-input-number-group > .ant-input-number:not(:first-child):not(:last-child) {
|
|
13828
|
+
border-radius: 0;
|
|
13859
13829
|
}
|
|
13860
|
-
.ant-input-number-
|
|
13861
|
-
.ant-input-number-
|
|
13862
|
-
|
|
13830
|
+
.ant-input-number-group-addon,
|
|
13831
|
+
.ant-input-number-group-wrap {
|
|
13832
|
+
width: 1px;
|
|
13833
|
+
white-space: nowrap;
|
|
13834
|
+
vertical-align: middle;
|
|
13863
13835
|
}
|
|
13864
|
-
.ant-input-number-
|
|
13865
|
-
|
|
13866
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
13867
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
13868
|
-
display: block;
|
|
13836
|
+
.ant-input-number-group-wrap > * {
|
|
13837
|
+
display: block !important;
|
|
13869
13838
|
}
|
|
13870
|
-
.ant-input-number-
|
|
13871
|
-
|
|
13872
|
-
|
|
13839
|
+
.ant-input-number-group .ant-input-number {
|
|
13840
|
+
float: left;
|
|
13841
|
+
width: 100%;
|
|
13842
|
+
margin-bottom: 0;
|
|
13843
|
+
text-align: inherit;
|
|
13873
13844
|
}
|
|
13874
|
-
.ant-input-number-
|
|
13875
|
-
|
|
13876
|
-
|
|
13845
|
+
.ant-input-number-group .ant-input-number:focus {
|
|
13846
|
+
z-index: 1;
|
|
13847
|
+
border-right-width: 1px;
|
|
13877
13848
|
}
|
|
13878
|
-
.ant-input-number-
|
|
13879
|
-
|
|
13880
|
-
|
|
13849
|
+
.ant-input-number-group .ant-input-number:hover {
|
|
13850
|
+
z-index: 1;
|
|
13851
|
+
border-right-width: 1px;
|
|
13881
13852
|
}
|
|
13882
|
-
.ant-input-
|
|
13883
|
-
|
|
13884
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
13885
|
-
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
13886
|
-
display: block;
|
|
13853
|
+
.ant-input-search-with-button .ant-input-number-group .ant-input-number:hover {
|
|
13854
|
+
z-index: 0;
|
|
13887
13855
|
}
|
|
13888
|
-
.ant-input-number
|
|
13889
|
-
|
|
13890
|
-
|
|
13856
|
+
.ant-input-number-group-addon {
|
|
13857
|
+
position: relative;
|
|
13858
|
+
padding: 0 7px;
|
|
13859
|
+
color: rgba(0, 0, 0, 0.85);
|
|
13860
|
+
font-weight: normal;
|
|
13861
|
+
font-size: 12px;
|
|
13862
|
+
text-align: center;
|
|
13863
|
+
background-color: #fafafa;
|
|
13864
|
+
border: 1px solid #d9d9d9;
|
|
13865
|
+
border-radius: 2px;
|
|
13866
|
+
transition: all 0.3s;
|
|
13891
13867
|
}
|
|
13892
|
-
.ant-input-number
|
|
13893
|
-
|
|
13894
|
-
transition: opacity 0.24s linear 0.24s;
|
|
13868
|
+
.ant-input-number-group-addon .ant-select {
|
|
13869
|
+
margin: -4px -7px;
|
|
13895
13870
|
}
|
|
13896
|
-
.ant-input-number-
|
|
13897
|
-
|
|
13898
|
-
border
|
|
13899
|
-
|
|
13900
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
13871
|
+
.ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
|
|
13872
|
+
background-color: inherit;
|
|
13873
|
+
border: 1px solid transparent;
|
|
13874
|
+
box-shadow: none;
|
|
13901
13875
|
}
|
|
13902
|
-
.ant-input-
|
|
13903
|
-
|
|
13904
|
-
|
|
13876
|
+
.ant-input-number-group-addon .ant-select-open .ant-select-selector,
|
|
13877
|
+
.ant-input-number-group-addon .ant-select-focused .ant-select-selector {
|
|
13878
|
+
color: #1890ff;
|
|
13905
13879
|
}
|
|
13906
|
-
.ant-input-number-
|
|
13907
|
-
|
|
13908
|
-
|
|
13909
|
-
opacity: 1;
|
|
13910
|
-
color: rgba(0, 0, 0, 0.25);
|
|
13911
|
-
pointer-events: none;
|
|
13880
|
+
.ant-input-number-group-addon .ant-cascader-picker {
|
|
13881
|
+
margin: -9px -8px;
|
|
13882
|
+
background-color: transparent;
|
|
13912
13883
|
}
|
|
13913
|
-
.ant-input-number-
|
|
13914
|
-
|
|
13915
|
-
border
|
|
13884
|
+
.ant-input-number-group-addon .ant-cascader-picker .ant-cascader-input {
|
|
13885
|
+
text-align: left;
|
|
13886
|
+
border: 0;
|
|
13887
|
+
box-shadow: none;
|
|
13916
13888
|
}
|
|
13917
|
-
.ant-input-number-
|
|
13918
|
-
|
|
13889
|
+
.ant-input-number-group > .ant-input-number:first-child,
|
|
13890
|
+
.ant-input-number-group-addon:first-child {
|
|
13891
|
+
border-top-right-radius: 0;
|
|
13892
|
+
border-bottom-right-radius: 0;
|
|
13919
13893
|
}
|
|
13920
|
-
.ant-input-number-
|
|
13921
|
-
|
|
13894
|
+
.ant-input-number-group > .ant-input-number:first-child .ant-select .ant-select-selector,
|
|
13895
|
+
.ant-input-number-group-addon:first-child .ant-select .ant-select-selector {
|
|
13896
|
+
border-top-right-radius: 0;
|
|
13897
|
+
border-bottom-right-radius: 0;
|
|
13922
13898
|
}
|
|
13923
|
-
.ant-input-number-
|
|
13924
|
-
|
|
13899
|
+
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:first-child) .ant-input-number {
|
|
13900
|
+
border-top-left-radius: 0;
|
|
13901
|
+
border-bottom-left-radius: 0;
|
|
13925
13902
|
}
|
|
13926
|
-
.ant-input-number-input {
|
|
13903
|
+
.ant-input-number-group > .ant-input-number-affix-wrapper:not(:last-child) .ant-input-number {
|
|
13904
|
+
border-top-right-radius: 0;
|
|
13905
|
+
border-bottom-right-radius: 0;
|
|
13906
|
+
}
|
|
13907
|
+
.ant-input-number-group-addon:first-child {
|
|
13908
|
+
border-right: 0;
|
|
13909
|
+
}
|
|
13910
|
+
.ant-input-number-group-addon:last-child {
|
|
13911
|
+
border-left: 0;
|
|
13912
|
+
}
|
|
13913
|
+
.ant-input-number-group > .ant-input-number:last-child,
|
|
13914
|
+
.ant-input-number-group-addon:last-child {
|
|
13915
|
+
border-top-left-radius: 0;
|
|
13916
|
+
border-bottom-left-radius: 0;
|
|
13917
|
+
}
|
|
13918
|
+
.ant-input-number-group > .ant-input-number:last-child .ant-select .ant-select-selector,
|
|
13919
|
+
.ant-input-number-group-addon:last-child .ant-select .ant-select-selector {
|
|
13920
|
+
border-top-left-radius: 0;
|
|
13921
|
+
border-bottom-left-radius: 0;
|
|
13922
|
+
}
|
|
13923
|
+
.ant-input-number-group-lg .ant-input-number,
|
|
13924
|
+
.ant-input-number-group-lg > .ant-input-number-group-addon {
|
|
13925
|
+
padding: 3.4px 11px;
|
|
13926
|
+
font-size: 14px;
|
|
13927
|
+
}
|
|
13928
|
+
.ant-input-number-group-sm .ant-input-number,
|
|
13929
|
+
.ant-input-number-group-sm > .ant-input-number-group-addon {
|
|
13930
|
+
padding: 0px 7px;
|
|
13931
|
+
}
|
|
13932
|
+
.ant-input-number-group-lg .ant-select-single .ant-select-selector {
|
|
13933
|
+
height: 32px;
|
|
13934
|
+
}
|
|
13935
|
+
.ant-input-number-group-sm .ant-select-single .ant-select-selector {
|
|
13936
|
+
height: 22px;
|
|
13937
|
+
}
|
|
13938
|
+
.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
|
13939
|
+
border-top-right-radius: 0;
|
|
13940
|
+
border-bottom-right-radius: 0;
|
|
13941
|
+
}
|
|
13942
|
+
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
|
13943
|
+
border-top-left-radius: 2px;
|
|
13944
|
+
border-bottom-left-radius: 2px;
|
|
13945
|
+
}
|
|
13946
|
+
.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child),
|
|
13947
|
+
.ant-input-search .ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
|
|
13948
|
+
border-top-left-radius: 0;
|
|
13949
|
+
border-bottom-left-radius: 0;
|
|
13950
|
+
}
|
|
13951
|
+
.ant-input-number-group.ant-input-number-group-compact {
|
|
13952
|
+
display: block;
|
|
13953
|
+
}
|
|
13954
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
13955
|
+
display: table;
|
|
13956
|
+
content: '';
|
|
13957
|
+
}
|
|
13958
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
13959
|
+
display: table;
|
|
13960
|
+
clear: both;
|
|
13961
|
+
content: '';
|
|
13962
|
+
}
|
|
13963
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
13964
|
+
display: table;
|
|
13965
|
+
content: '';
|
|
13966
|
+
}
|
|
13967
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
13968
|
+
display: table;
|
|
13969
|
+
clear: both;
|
|
13970
|
+
content: '';
|
|
13971
|
+
}
|
|
13972
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
13973
|
+
display: table;
|
|
13974
|
+
content: '';
|
|
13975
|
+
}
|
|
13976
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
13977
|
+
display: table;
|
|
13978
|
+
clear: both;
|
|
13979
|
+
content: '';
|
|
13980
|
+
}
|
|
13981
|
+
.ant-input-number-group.ant-input-number-group-compact::before {
|
|
13982
|
+
display: table;
|
|
13983
|
+
content: '';
|
|
13984
|
+
}
|
|
13985
|
+
.ant-input-number-group.ant-input-number-group-compact::after {
|
|
13986
|
+
display: table;
|
|
13987
|
+
clear: both;
|
|
13988
|
+
content: '';
|
|
13989
|
+
}
|
|
13990
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child),
|
|
13991
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child),
|
|
13992
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child) {
|
|
13993
|
+
border-right-width: 1px;
|
|
13994
|
+
}
|
|
13995
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):hover,
|
|
13996
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):hover,
|
|
13997
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):hover {
|
|
13998
|
+
z-index: 1;
|
|
13999
|
+
}
|
|
14000
|
+
.ant-input-number-group.ant-input-number-group-compact-addon:not(:first-child):not(:last-child):focus,
|
|
14001
|
+
.ant-input-number-group.ant-input-number-group-compact-wrap:not(:first-child):not(:last-child):focus,
|
|
14002
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number:not(:first-child):not(:last-child):focus {
|
|
14003
|
+
z-index: 1;
|
|
14004
|
+
}
|
|
14005
|
+
.ant-input-number-group.ant-input-number-group-compact > * {
|
|
14006
|
+
display: inline-block;
|
|
14007
|
+
float: none;
|
|
14008
|
+
vertical-align: top;
|
|
14009
|
+
border-radius: 0;
|
|
14010
|
+
}
|
|
14011
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-number-affix-wrapper {
|
|
14012
|
+
display: inline-flex;
|
|
14013
|
+
}
|
|
14014
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-picker-range {
|
|
14015
|
+
display: inline-flex;
|
|
14016
|
+
}
|
|
14017
|
+
.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
|
|
14018
|
+
margin-right: -1px;
|
|
14019
|
+
border-right-width: 1px;
|
|
14020
|
+
}
|
|
14021
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-number {
|
|
14022
|
+
float: none;
|
|
14023
|
+
}
|
|
14024
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector,
|
|
14025
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input,
|
|
14026
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input,
|
|
14027
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input {
|
|
14028
|
+
border-right-width: 1px;
|
|
14029
|
+
border-radius: 0;
|
|
14030
|
+
}
|
|
14031
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:hover,
|
|
14032
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:hover,
|
|
14033
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:hover,
|
|
14034
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:hover {
|
|
14035
|
+
z-index: 1;
|
|
14036
|
+
}
|
|
14037
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-selector:focus,
|
|
14038
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input:focus,
|
|
14039
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker .ant-input:focus,
|
|
14040
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-input-group-wrapper .ant-input:focus {
|
|
14041
|
+
z-index: 1;
|
|
14042
|
+
}
|
|
14043
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-focused {
|
|
14044
|
+
z-index: 1;
|
|
14045
|
+
}
|
|
14046
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select > .ant-select-arrow {
|
|
14047
|
+
z-index: 1;
|
|
14048
|
+
}
|
|
14049
|
+
.ant-input-number-group.ant-input-number-group-compact > *:first-child,
|
|
14050
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
|
|
14051
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
|
14052
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
|
14053
|
+
border-top-left-radius: 2px;
|
|
14054
|
+
border-bottom-left-radius: 2px;
|
|
14055
|
+
}
|
|
14056
|
+
.ant-input-number-group.ant-input-number-group-compact > *:last-child,
|
|
14057
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
|
14058
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
|
14059
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
|
14060
|
+
border-right-width: 1px;
|
|
14061
|
+
border-top-right-radius: 2px;
|
|
14062
|
+
border-bottom-right-radius: 2px;
|
|
14063
|
+
}
|
|
14064
|
+
.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete .ant-input {
|
|
14065
|
+
vertical-align: top;
|
|
14066
|
+
}
|
|
14067
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper {
|
|
14068
|
+
margin-left: -1px;
|
|
14069
|
+
}
|
|
14070
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper + .ant-input-group-wrapper .ant-input-affix-wrapper {
|
|
14071
|
+
border-radius: 0;
|
|
14072
|
+
}
|
|
14073
|
+
.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 {
|
|
14074
|
+
border-radius: 0;
|
|
14075
|
+
}
|
|
14076
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper:not(:last-child).ant-input-search > .ant-input-group > .ant-input {
|
|
14077
|
+
border-radius: 2px 0 0 2px;
|
|
14078
|
+
}
|
|
14079
|
+
.ant-input-number-group > .ant-input-number-rtl:first-child,
|
|
14080
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
|
|
14081
|
+
border-radius: 0 2px 2px 0;
|
|
14082
|
+
}
|
|
14083
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:first-child {
|
|
14084
|
+
border-right: 1px solid #d9d9d9;
|
|
14085
|
+
border-left: 0;
|
|
14086
|
+
}
|
|
14087
|
+
.ant-input-number-group-rtl .ant-input-number-group-addon:last-child {
|
|
14088
|
+
border-right: 0;
|
|
14089
|
+
border-left: 1px solid #d9d9d9;
|
|
14090
|
+
}
|
|
14091
|
+
.ant-input-number-group-rtl.ant-input-number-group > .ant-input-number:last-child,
|
|
14092
|
+
.ant-input-number-group-rtl.ant-input-number-group-addon:last-child {
|
|
14093
|
+
border-radius: 2px 0 0 2px;
|
|
14094
|
+
}
|
|
14095
|
+
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:first-child) {
|
|
14096
|
+
border-radius: 2px 0 0 2px;
|
|
14097
|
+
}
|
|
14098
|
+
.ant-input-number-group-rtl.ant-input-number-group .ant-input-number-affix-wrapper:not(:last-child) {
|
|
14099
|
+
border-radius: 0 2px 2px 0;
|
|
14100
|
+
}
|
|
14101
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:not(:last-child) {
|
|
14102
|
+
margin-right: 0;
|
|
14103
|
+
margin-left: -1px;
|
|
14104
|
+
border-left-width: 1px;
|
|
14105
|
+
}
|
|
14106
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:first-child,
|
|
14107
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:first-child > .ant-select-selector,
|
|
14108
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:first-child .ant-input,
|
|
14109
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:first-child .ant-input {
|
|
14110
|
+
border-radius: 0 2px 2px 0;
|
|
14111
|
+
}
|
|
14112
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > *:last-child,
|
|
14113
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select:last-child > .ant-select-selector,
|
|
14114
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-select-auto-complete:last-child .ant-input,
|
|
14115
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker:last-child .ant-input,
|
|
14116
|
+
.ant-input-number-group-rtl.ant-input-number-group.ant-input-number-group-compact > .ant-cascader-picker-focused:last-child .ant-input {
|
|
14117
|
+
border-left-width: 1px;
|
|
14118
|
+
border-radius: 2px 0 0 2px;
|
|
14119
|
+
}
|
|
14120
|
+
.ant-input-number-group.ant-input-number-group-compact .ant-input-group-wrapper-rtl + .ant-input-group-wrapper-rtl {
|
|
14121
|
+
margin-right: -1px;
|
|
14122
|
+
margin-left: 0;
|
|
14123
|
+
}
|
|
14124
|
+
.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 {
|
|
14125
|
+
border-radius: 0 2px 2px 0;
|
|
14126
|
+
}
|
|
14127
|
+
.ant-input-number-group-wrapper {
|
|
14128
|
+
display: inline-block;
|
|
14129
|
+
text-align: start;
|
|
14130
|
+
vertical-align: top;
|
|
14131
|
+
}
|
|
14132
|
+
.ant-input-number-handler {
|
|
14133
|
+
position: relative;
|
|
14134
|
+
display: block;
|
|
14135
|
+
width: 100%;
|
|
14136
|
+
height: 50%;
|
|
14137
|
+
overflow: hidden;
|
|
14138
|
+
color: rgba(0, 0, 0, 0.45);
|
|
14139
|
+
font-weight: bold;
|
|
14140
|
+
line-height: 0;
|
|
14141
|
+
text-align: center;
|
|
14142
|
+
border-left: 1px solid #d9d9d9;
|
|
14143
|
+
transition: all 0.1s linear;
|
|
14144
|
+
}
|
|
14145
|
+
.ant-input-number-handler:active {
|
|
14146
|
+
background: #f4f4f4;
|
|
14147
|
+
}
|
|
14148
|
+
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
|
|
14149
|
+
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
|
|
14150
|
+
color: #40a9ff;
|
|
14151
|
+
}
|
|
14152
|
+
.ant-input-number-handler-up-inner,
|
|
14153
|
+
.ant-input-number-handler-down-inner {
|
|
14154
|
+
display: inline-block;
|
|
14155
|
+
color: inherit;
|
|
14156
|
+
font-style: normal;
|
|
14157
|
+
line-height: 0;
|
|
14158
|
+
text-align: center;
|
|
14159
|
+
text-transform: none;
|
|
14160
|
+
vertical-align: -0.125em;
|
|
14161
|
+
text-rendering: optimizeLegibility;
|
|
14162
|
+
-webkit-font-smoothing: antialiased;
|
|
14163
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14164
|
+
position: absolute;
|
|
14165
|
+
right: 4px;
|
|
14166
|
+
width: 12px;
|
|
14167
|
+
height: 12px;
|
|
14168
|
+
color: rgba(0, 0, 0, 0.45);
|
|
14169
|
+
line-height: 12px;
|
|
14170
|
+
transition: all 0.1s linear;
|
|
14171
|
+
user-select: none;
|
|
14172
|
+
}
|
|
14173
|
+
.ant-input-number-handler-up-inner > *,
|
|
14174
|
+
.ant-input-number-handler-down-inner > * {
|
|
14175
|
+
line-height: 1;
|
|
14176
|
+
}
|
|
14177
|
+
.ant-input-number-handler-up-inner svg,
|
|
14178
|
+
.ant-input-number-handler-down-inner svg {
|
|
14179
|
+
display: inline-block;
|
|
14180
|
+
}
|
|
14181
|
+
.ant-input-number-handler-up-inner::before,
|
|
14182
|
+
.ant-input-number-handler-down-inner::before {
|
|
14183
|
+
display: none;
|
|
14184
|
+
}
|
|
14185
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
|
|
14186
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
|
|
14187
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
14188
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
14189
|
+
display: block;
|
|
14190
|
+
}
|
|
14191
|
+
.ant-input-number-handler-up-inner > *,
|
|
14192
|
+
.ant-input-number-handler-down-inner > * {
|
|
14193
|
+
line-height: 1;
|
|
14194
|
+
}
|
|
14195
|
+
.ant-input-number-handler-up-inner svg,
|
|
14196
|
+
.ant-input-number-handler-down-inner svg {
|
|
14197
|
+
display: inline-block;
|
|
14198
|
+
}
|
|
14199
|
+
.ant-input-number-handler-up-inner::before,
|
|
14200
|
+
.ant-input-number-handler-down-inner::before {
|
|
14201
|
+
display: none;
|
|
14202
|
+
}
|
|
14203
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
|
|
14204
|
+
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
|
|
14205
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
|
|
14206
|
+
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
|
|
14207
|
+
display: block;
|
|
14208
|
+
}
|
|
14209
|
+
.ant-input-number:hover {
|
|
14210
|
+
border-color: #40a9ff;
|
|
14211
|
+
border-right-width: 1px !important;
|
|
14212
|
+
}
|
|
14213
|
+
.ant-input-number:hover + .ant-form-item-children-icon {
|
|
14214
|
+
opacity: 0;
|
|
14215
|
+
transition: opacity 0.24s linear 0.24s;
|
|
14216
|
+
}
|
|
14217
|
+
.ant-input-number-focused {
|
|
14218
|
+
border-color: #40a9ff;
|
|
14219
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
14220
|
+
border-right-width: 1px !important;
|
|
14221
|
+
outline: 0;
|
|
14222
|
+
}
|
|
14223
|
+
.ant-input-rtl .ant-input-number-focused {
|
|
14224
|
+
border-right-width: 0;
|
|
14225
|
+
border-left-width: 1px !important;
|
|
14226
|
+
}
|
|
14227
|
+
.ant-input-number-disabled {
|
|
14228
|
+
background-color: #f5f5f5;
|
|
14229
|
+
border-color: #d9d9d9;
|
|
14230
|
+
box-shadow: none;
|
|
14231
|
+
cursor: not-allowed;
|
|
14232
|
+
opacity: 1;
|
|
14233
|
+
color: rgba(0, 0, 0, 0.25);
|
|
14234
|
+
pointer-events: none;
|
|
14235
|
+
}
|
|
14236
|
+
.ant-input-number-disabled:hover {
|
|
14237
|
+
border-color: #d9d9d9;
|
|
14238
|
+
border-right-width: 1px !important;
|
|
14239
|
+
}
|
|
14240
|
+
.ant-input-number-disabled .ant-input-number-input {
|
|
14241
|
+
cursor: not-allowed;
|
|
14242
|
+
}
|
|
14243
|
+
.ant-input-number-disabled .ant-input-number-handler-wrap {
|
|
14244
|
+
display: none;
|
|
14245
|
+
}
|
|
14246
|
+
.ant-input-number-readonly .ant-input-number-handler-wrap {
|
|
14247
|
+
display: none;
|
|
14248
|
+
}
|
|
14249
|
+
.ant-input-number-input {
|
|
13927
14250
|
width: 100%;
|
|
13928
14251
|
height: 26px;
|
|
13929
14252
|
padding: 0 7px;
|
|
@@ -13933,13 +14256,16 @@ textarea.ant-input-number {
|
|
|
13933
14256
|
border-radius: 2px;
|
|
13934
14257
|
outline: 0;
|
|
13935
14258
|
transition: all 0.3s linear;
|
|
13936
|
-
|
|
14259
|
+
appearance: textfield !important;
|
|
14260
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
14261
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
13937
14262
|
}
|
|
13938
14263
|
.ant-input-number-input::-moz-placeholder {
|
|
13939
14264
|
opacity: 1;
|
|
13940
14265
|
}
|
|
13941
14266
|
.ant-input-number-input::placeholder {
|
|
13942
14267
|
color: #bfbfbf;
|
|
14268
|
+
user-select: none;
|
|
13943
14269
|
}
|
|
13944
14270
|
.ant-input-number-input:placeholder-shown {
|
|
13945
14271
|
text-overflow: ellipsis;
|
|
@@ -13949,6 +14275,7 @@ textarea.ant-input-number {
|
|
|
13949
14275
|
}
|
|
13950
14276
|
.ant-input-number-input::placeholder {
|
|
13951
14277
|
color: #bfbfbf;
|
|
14278
|
+
user-select: none;
|
|
13952
14279
|
}
|
|
13953
14280
|
.ant-input-number-input:placeholder-shown {
|
|
13954
14281
|
text-overflow: ellipsis;
|
|
@@ -13956,7 +14283,9 @@ textarea.ant-input-number {
|
|
|
13956
14283
|
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
|
|
13957
14284
|
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
|
|
13958
14285
|
margin: 0;
|
|
14286
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13959
14287
|
-webkit-appearance: none;
|
|
14288
|
+
appearance: none;
|
|
13960
14289
|
}
|
|
13961
14290
|
.ant-input-number-lg {
|
|
13962
14291
|
padding: 0;
|
|
@@ -13979,13 +14308,15 @@ textarea.ant-input-number {
|
|
|
13979
14308
|
width: 22px;
|
|
13980
14309
|
height: 100%;
|
|
13981
14310
|
background: #fff;
|
|
13982
|
-
border-left: 1px solid #d9d9d9;
|
|
13983
14311
|
border-radius: 0 2px 2px 0;
|
|
13984
14312
|
opacity: 0;
|
|
13985
14313
|
transition: opacity 0.24s linear 0.1s;
|
|
13986
14314
|
}
|
|
13987
14315
|
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
|
|
13988
14316
|
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
|
|
14317
|
+
display: flex;
|
|
14318
|
+
align-items: center;
|
|
14319
|
+
justify-content: center;
|
|
13989
14320
|
min-width: auto;
|
|
13990
14321
|
margin-right: 0;
|
|
13991
14322
|
font-size: 7px;
|
|
@@ -13996,7 +14327,8 @@ textarea.ant-input-number {
|
|
|
13996
14327
|
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
|
|
13997
14328
|
height: 40%;
|
|
13998
14329
|
}
|
|
13999
|
-
.ant-input-number:hover .ant-input-number-handler-wrap
|
|
14330
|
+
.ant-input-number:hover .ant-input-number-handler-wrap,
|
|
14331
|
+
.ant-input-number-focused .ant-input-number-handler-wrap {
|
|
14000
14332
|
opacity: 1;
|
|
14001
14333
|
}
|
|
14002
14334
|
.ant-input-number-handler-up {
|
|
@@ -14045,16 +14377,23 @@ textarea.ant-input-number {
|
|
|
14045
14377
|
.ant-input-number-rtl {
|
|
14046
14378
|
direction: rtl;
|
|
14047
14379
|
}
|
|
14380
|
+
.ant-input-number-rtl .ant-input-number-handler {
|
|
14381
|
+
border-right: 1px solid #d9d9d9;
|
|
14382
|
+
border-left: 0;
|
|
14383
|
+
}
|
|
14048
14384
|
.ant-input-number-rtl .ant-input-number-handler-wrap {
|
|
14049
14385
|
right: auto;
|
|
14050
14386
|
left: 0;
|
|
14051
|
-
border-right: 1px solid #d9d9d9;
|
|
14052
|
-
border-left: 0;
|
|
14053
|
-
border-radius: 2px 0 0 2px;
|
|
14054
14387
|
}
|
|
14055
14388
|
.ant-input-number-rtl.ant-input-number-borderless .ant-input-number-handler-wrap {
|
|
14056
14389
|
border-right-width: 0;
|
|
14057
14390
|
}
|
|
14391
|
+
.ant-input-number-rtl .ant-input-number-handler-up {
|
|
14392
|
+
border-top-right-radius: 0;
|
|
14393
|
+
}
|
|
14394
|
+
.ant-input-number-rtl .ant-input-number-handler-down {
|
|
14395
|
+
border-bottom-right-radius: 0;
|
|
14396
|
+
}
|
|
14058
14397
|
.ant-input-number-rtl .ant-input-number-input {
|
|
14059
14398
|
direction: ltr;
|
|
14060
14399
|
text-align: right;
|
|
@@ -14192,10 +14531,6 @@ nz-footer {
|
|
|
14192
14531
|
nz-header {
|
|
14193
14532
|
display: block;
|
|
14194
14533
|
}
|
|
14195
|
-
.ant-form-item .ant-mentions,
|
|
14196
|
-
.ant-form-item textarea.ant-input {
|
|
14197
|
-
height: auto;
|
|
14198
|
-
}
|
|
14199
14534
|
.ant-form-item .ant-upload {
|
|
14200
14535
|
background: transparent;
|
|
14201
14536
|
}
|
|
@@ -14240,7 +14575,9 @@ nz-header {
|
|
|
14240
14575
|
.ant-form-item .ant-picker-calendar-year-select,
|
|
14241
14576
|
.ant-form-item .ant-picker-calendar-month-select,
|
|
14242
14577
|
.ant-form-item .ant-input-group .ant-select,
|
|
14243
|
-
.ant-form-item .ant-input-group .ant-cascader-picker
|
|
14578
|
+
.ant-form-item .ant-input-group .ant-cascader-picker,
|
|
14579
|
+
.ant-form-item .ant-input-number-group .ant-select,
|
|
14580
|
+
.ant-form-item .ant-input-number-group .ant-cascader-picker {
|
|
14244
14581
|
width: auto;
|
|
14245
14582
|
}
|
|
14246
14583
|
.ant-form-inline {
|
|
@@ -14276,6 +14613,9 @@ nz-header {
|
|
|
14276
14613
|
.ant-form-horizontal .ant-form-item-control {
|
|
14277
14614
|
flex: 1 1 0;
|
|
14278
14615
|
}
|
|
14616
|
+
.ant-form-horizontal .ant-form-item-control:not(.ant-col) {
|
|
14617
|
+
min-width: 0;
|
|
14618
|
+
}
|
|
14279
14619
|
.ant-form-vertical .ant-form-item {
|
|
14280
14620
|
flex-direction: column;
|
|
14281
14621
|
}
|
|
@@ -14417,10 +14757,10 @@ nz-header {
|
|
|
14417
14757
|
/* Some non-status related component style is in `components.less` */
|
|
14418
14758
|
/* To support leave along ErrorList. We add additional className to handle explain style */
|
|
14419
14759
|
}
|
|
14420
|
-
.ant-form-item-explain
|
|
14760
|
+
.ant-form-item-explain-error {
|
|
14421
14761
|
color: #ff4d4f;
|
|
14422
14762
|
}
|
|
14423
|
-
.ant-form-item-explain
|
|
14763
|
+
.ant-form-item-explain-warning {
|
|
14424
14764
|
color: #faad14;
|
|
14425
14765
|
}
|
|
14426
14766
|
.ant-form-item-has-feedback .ant-input {
|
|
@@ -14438,11 +14778,14 @@ nz-header {
|
|
|
14438
14778
|
.ant-form-item-has-feedback > .ant-select .ant-select-arrow,
|
|
14439
14779
|
.ant-form-item-has-feedback > .ant-select .ant-select-clear,
|
|
14440
14780
|
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
|
|
14441
|
-
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear
|
|
14781
|
+
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear,
|
|
14782
|
+
.ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow,
|
|
14783
|
+
.ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear {
|
|
14442
14784
|
right: 32px;
|
|
14443
14785
|
}
|
|
14444
14786
|
.ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value,
|
|
14445
|
-
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value
|
|
14787
|
+
.ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value,
|
|
14788
|
+
.ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value {
|
|
14446
14789
|
padding-right: 42px;
|
|
14447
14790
|
}
|
|
14448
14791
|
.ant-form-item-has-feedback .ant-cascader-picker-arrow {
|
|
@@ -14485,32 +14828,33 @@ nz-header {
|
|
|
14485
14828
|
.ant-form-item-has-warning .ant-form-item-split {
|
|
14486
14829
|
color: #faad14;
|
|
14487
14830
|
}
|
|
14488
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14489
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14490
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14491
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14831
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
|
|
14832
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
|
|
14833
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
|
|
14834
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
|
|
14492
14835
|
background-color: #fff;
|
|
14493
14836
|
border-color: #faad14;
|
|
14494
14837
|
}
|
|
14495
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14496
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14497
|
-
.ant-form-item-has-warning .ant-input:not(.ant-input-
|
|
14498
|
-
.ant-form-item-has-warning .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14838
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
|
|
14839
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
|
|
14840
|
+
.ant-form-item-has-warning :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
|
|
14841
|
+
.ant-form-item-has-warning :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
|
|
14499
14842
|
border-color: #ffc53d;
|
|
14843
|
+
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14500
14844
|
border-right-width: 1px !important;
|
|
14501
14845
|
outline: 0;
|
|
14502
|
-
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14503
14846
|
}
|
|
14504
14847
|
.ant-form-item-has-warning .ant-calendar-picker-open .ant-calendar-picker-input {
|
|
14505
14848
|
border-color: #ffc53d;
|
|
14849
|
+
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14506
14850
|
border-right-width: 1px !important;
|
|
14507
14851
|
outline: 0;
|
|
14508
|
-
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14509
14852
|
}
|
|
14510
14853
|
.ant-form-item-has-warning .ant-input-prefix {
|
|
14511
14854
|
color: #faad14;
|
|
14512
14855
|
}
|
|
14513
|
-
.ant-form-item-has-warning .ant-input-group-addon
|
|
14856
|
+
.ant-form-item-has-warning .ant-input-group-addon,
|
|
14857
|
+
.ant-form-item-has-warning .ant-input-number-group-addon {
|
|
14514
14858
|
color: #faad14;
|
|
14515
14859
|
border-color: #faad14;
|
|
14516
14860
|
}
|
|
@@ -14528,9 +14872,9 @@ nz-header {
|
|
|
14528
14872
|
.ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector,
|
|
14529
14873
|
.ant-form-item-has-warning .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector {
|
|
14530
14874
|
border-color: #ffc53d;
|
|
14875
|
+
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14531
14876
|
border-right-width: 1px !important;
|
|
14532
14877
|
outline: 0;
|
|
14533
|
-
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14534
14878
|
}
|
|
14535
14879
|
.ant-form-item-has-warning .ant-input-number,
|
|
14536
14880
|
.ant-form-item-has-warning .ant-picker {
|
|
@@ -14542,9 +14886,9 @@ nz-header {
|
|
|
14542
14886
|
.ant-form-item-has-warning .ant-input-number:focus,
|
|
14543
14887
|
.ant-form-item-has-warning .ant-picker:focus {
|
|
14544
14888
|
border-color: #ffc53d;
|
|
14889
|
+
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14545
14890
|
border-right-width: 1px !important;
|
|
14546
14891
|
outline: 0;
|
|
14547
|
-
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14548
14892
|
}
|
|
14549
14893
|
.ant-form-item-has-warning .ant-input-number:not([disabled]):hover,
|
|
14550
14894
|
.ant-form-item-has-warning .ant-picker:not([disabled]):hover {
|
|
@@ -14553,39 +14897,40 @@ nz-header {
|
|
|
14553
14897
|
}
|
|
14554
14898
|
.ant-form-item-has-warning .ant-cascader-picker:focus .ant-cascader-input {
|
|
14555
14899
|
border-color: #ffc53d;
|
|
14900
|
+
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14556
14901
|
border-right-width: 1px !important;
|
|
14557
14902
|
outline: 0;
|
|
14558
|
-
box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
|
|
14559
14903
|
}
|
|
14560
14904
|
.ant-form-item-has-error .ant-form-item-split {
|
|
14561
14905
|
color: #ff4d4f;
|
|
14562
14906
|
}
|
|
14563
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14564
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14565
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14566
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14907
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
|
|
14908
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper,
|
|
14909
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:hover,
|
|
14910
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:hover {
|
|
14567
14911
|
background-color: #fff;
|
|
14568
14912
|
border-color: #ff4d4f;
|
|
14569
14913
|
}
|
|
14570
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14571
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14572
|
-
.ant-form-item-has-error .ant-input:not(.ant-input-
|
|
14573
|
-
.ant-form-item-has-error .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-
|
|
14914
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input:focus,
|
|
14915
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper:focus,
|
|
14916
|
+
.ant-form-item-has-error :not(.ant-input-disabled):not(.ant-input-borderless).ant-input-focused,
|
|
14917
|
+
.ant-form-item-has-error :not(.ant-input-affix-wrapper-disabled):not(.ant-input-affix-wrapper-borderless).ant-input-affix-wrapper-focused {
|
|
14574
14918
|
border-color: #ff7875;
|
|
14919
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14575
14920
|
border-right-width: 1px !important;
|
|
14576
14921
|
outline: 0;
|
|
14577
|
-
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14578
14922
|
}
|
|
14579
14923
|
.ant-form-item-has-error .ant-calendar-picker-open .ant-calendar-picker-input {
|
|
14580
14924
|
border-color: #ff7875;
|
|
14925
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14581
14926
|
border-right-width: 1px !important;
|
|
14582
14927
|
outline: 0;
|
|
14583
|
-
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14584
14928
|
}
|
|
14585
14929
|
.ant-form-item-has-error .ant-input-prefix {
|
|
14586
14930
|
color: #ff4d4f;
|
|
14587
14931
|
}
|
|
14588
|
-
.ant-form-item-has-error .ant-input-group-addon
|
|
14932
|
+
.ant-form-item-has-error .ant-input-group-addon,
|
|
14933
|
+
.ant-form-item-has-error .ant-input-number-group-addon {
|
|
14589
14934
|
color: #ff4d4f;
|
|
14590
14935
|
border-color: #ff4d4f;
|
|
14591
14936
|
}
|
|
@@ -14603,11 +14948,12 @@ nz-header {
|
|
|
14603
14948
|
.ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-open .ant-select-selector,
|
|
14604
14949
|
.ant-form-item-has-error .ant-select:not(.ant-select-disabled):not(.ant-select-customize-input).ant-select-focused .ant-select-selector {
|
|
14605
14950
|
border-color: #ff7875;
|
|
14951
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14606
14952
|
border-right-width: 1px !important;
|
|
14607
14953
|
outline: 0;
|
|
14608
|
-
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14609
14954
|
}
|
|
14610
|
-
.ant-form-item-has-error .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector
|
|
14955
|
+
.ant-form-item-has-error .ant-input-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector,
|
|
14956
|
+
.ant-form-item-has-error .ant-input-number-group-addon .ant-select.ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
|
|
14611
14957
|
background-color: inherit;
|
|
14612
14958
|
border: 0;
|
|
14613
14959
|
box-shadow: none;
|
|
@@ -14625,9 +14971,9 @@ nz-header {
|
|
|
14625
14971
|
.ant-form-item-has-error .ant-input-number:focus,
|
|
14626
14972
|
.ant-form-item-has-error .ant-picker:focus {
|
|
14627
14973
|
border-color: #ff7875;
|
|
14974
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14628
14975
|
border-right-width: 1px !important;
|
|
14629
14976
|
outline: 0;
|
|
14630
|
-
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14631
14977
|
}
|
|
14632
14978
|
.ant-form-item-has-error .ant-input-number:not([disabled]):hover,
|
|
14633
14979
|
.ant-form-item-has-error .ant-picker:not([disabled]):hover {
|
|
@@ -14642,9 +14988,9 @@ nz-header {
|
|
|
14642
14988
|
.ant-form-item-has-error .ant-mention-wrapper.ant-mention-active:not([disabled]) .ant-mention-editor,
|
|
14643
14989
|
.ant-form-item-has-error .ant-mention-wrapper .ant-mention-editor:not([disabled]):focus {
|
|
14644
14990
|
border-color: #ff7875;
|
|
14991
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14645
14992
|
border-right-width: 1px !important;
|
|
14646
14993
|
outline: 0;
|
|
14647
|
-
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14648
14994
|
}
|
|
14649
14995
|
.ant-form-item-has-error .ant-cascader-picker:hover .ant-cascader-picker-label:hover + .ant-cascader-input.ant-input {
|
|
14650
14996
|
border-color: #ff4d4f;
|
|
@@ -14652,9 +14998,9 @@ nz-header {
|
|
|
14652
14998
|
.ant-form-item-has-error .ant-cascader-picker:focus .ant-cascader-input {
|
|
14653
14999
|
background-color: #fff;
|
|
14654
15000
|
border-color: #ff7875;
|
|
15001
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14655
15002
|
border-right-width: 1px !important;
|
|
14656
15003
|
outline: 0;
|
|
14657
|
-
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
14658
15004
|
}
|
|
14659
15005
|
.ant-form-item-has-error .ant-transfer-list {
|
|
14660
15006
|
border-color: #ff4d4f;
|
|
@@ -14672,9 +15018,9 @@ nz-header {
|
|
|
14672
15018
|
}
|
|
14673
15019
|
.ant-form-item-has-error .ant-transfer-list-search:not([disabled]):focus {
|
|
14674
15020
|
border-color: #40a9ff;
|
|
15021
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
14675
15022
|
border-right-width: 1px !important;
|
|
14676
15023
|
outline: 0;
|
|
14677
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
14678
15024
|
}
|
|
14679
15025
|
.ant-input-rtl .ant-form-item-has-error .ant-transfer-list-search:not([disabled]):focus {
|
|
14680
15026
|
border-right-width: 0;
|
|
@@ -14686,6 +15032,16 @@ nz-header {
|
|
|
14686
15032
|
.ant-form-item-has-error .ant-radio-button-wrapper:not(:first-child)::before {
|
|
14687
15033
|
background-color: #ff4d4f;
|
|
14688
15034
|
}
|
|
15035
|
+
.ant-form-item-has-error .ant-mentions {
|
|
15036
|
+
border-color: #ff4d4f !important;
|
|
15037
|
+
}
|
|
15038
|
+
.ant-form-item-has-error .ant-mentions-focused,
|
|
15039
|
+
.ant-form-item-has-error .ant-mentions:focus {
|
|
15040
|
+
border-color: #ff7875;
|
|
15041
|
+
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
|
|
15042
|
+
border-right-width: 1px !important;
|
|
15043
|
+
outline: 0;
|
|
15044
|
+
}
|
|
14689
15045
|
.ant-form-item-is-validating.ant-form-item-has-feedback .ant-form-item-children-icon {
|
|
14690
15046
|
display: inline-block;
|
|
14691
15047
|
color: #1890ff;
|
|
@@ -14775,9 +15131,11 @@ nz-header {
|
|
|
14775
15131
|
font-feature-settings: 'tnum';
|
|
14776
15132
|
margin-bottom: 16px;
|
|
14777
15133
|
vertical-align: top;
|
|
15134
|
+
transition: margin-bottom 0.3s 0.017s linear;
|
|
14778
15135
|
}
|
|
14779
15136
|
.ant-form-item-with-help {
|
|
14780
15137
|
margin-bottom: 0;
|
|
15138
|
+
transition: none;
|
|
14781
15139
|
}
|
|
14782
15140
|
.ant-form-item-hidden,
|
|
14783
15141
|
.ant-form-item-hidden.ant-row {
|
|
@@ -14798,6 +15156,7 @@ nz-header {
|
|
|
14798
15156
|
position: relative;
|
|
14799
15157
|
display: inline-flex;
|
|
14800
15158
|
align-items: center;
|
|
15159
|
+
max-width: 100%;
|
|
14801
15160
|
height: 28px;
|
|
14802
15161
|
color: rgba(0, 0, 0, 0.85);
|
|
14803
15162
|
font-size: 12px;
|
|
@@ -14862,80 +15221,52 @@ nz-header {
|
|
|
14862
15221
|
.ant-form-item-explain,
|
|
14863
15222
|
.ant-form-item-extra {
|
|
14864
15223
|
clear: both;
|
|
14865
|
-
min-height: 16px;
|
|
14866
15224
|
color: rgba(0, 0, 0, 0.45);
|
|
14867
15225
|
font-size: 12px;
|
|
14868
15226
|
line-height: 1.66667;
|
|
14869
15227
|
transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
14870
15228
|
}
|
|
14871
|
-
.ant-form-item
|
|
14872
|
-
|
|
14873
|
-
|
|
14874
|
-
|
|
14875
|
-
.ant-show-help-appear {
|
|
14876
|
-
animation-duration: 0.3s;
|
|
14877
|
-
animation-fill-mode: both;
|
|
14878
|
-
animation-play-state: paused;
|
|
15229
|
+
.ant-form-item-explain-connected {
|
|
15230
|
+
height: 0;
|
|
15231
|
+
min-height: 0;
|
|
15232
|
+
opacity: 0;
|
|
14879
15233
|
}
|
|
14880
|
-
.ant-
|
|
14881
|
-
|
|
14882
|
-
animation-fill-mode: both;
|
|
14883
|
-
animation-play-state: paused;
|
|
15234
|
+
.ant-form-item-extra {
|
|
15235
|
+
min-height: 16px;
|
|
14884
15236
|
}
|
|
14885
|
-
.ant-
|
|
14886
|
-
|
|
14887
|
-
animation-name: antShowHelpIn;
|
|
14888
|
-
animation-play-state: running;
|
|
15237
|
+
.ant-form-item .ant-input-textarea-show-count::after {
|
|
15238
|
+
margin-bottom: -22px;
|
|
14889
15239
|
}
|
|
14890
|
-
.ant-
|
|
14891
|
-
|
|
14892
|
-
|
|
14893
|
-
|
|
15240
|
+
.ant-form-item-with-help .ant-form-item-explain {
|
|
15241
|
+
height: auto;
|
|
15242
|
+
min-height: 16px;
|
|
15243
|
+
opacity: 1;
|
|
14894
15244
|
}
|
|
14895
|
-
.ant-show-help
|
|
14896
|
-
.
|
|
14897
|
-
animation-duration: 0.3s;
|
|
14898
|
-
animation-fill-mode: both;
|
|
14899
|
-
animation-play-state: paused;
|
|
15245
|
+
.ant-show-help {
|
|
15246
|
+
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);
|
|
14900
15247
|
}
|
|
14901
15248
|
.ant-show-help-leave {
|
|
14902
|
-
|
|
14903
|
-
animation-fill-mode: both;
|
|
14904
|
-
animation-play-state: paused;
|
|
15249
|
+
min-height: 16px;
|
|
14905
15250
|
}
|
|
14906
|
-
.ant-show-help-
|
|
14907
|
-
|
|
14908
|
-
animation-name: antShowHelpIn;
|
|
14909
|
-
animation-play-state: running;
|
|
15251
|
+
.ant-show-help-leave-active {
|
|
15252
|
+
min-height: 0;
|
|
14910
15253
|
}
|
|
14911
|
-
.ant-show-help-
|
|
14912
|
-
|
|
14913
|
-
|
|
14914
|
-
pointer-events: none;
|
|
15254
|
+
.ant-show-help-item {
|
|
15255
|
+
overflow: hidden;
|
|
15256
|
+
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;
|
|
14915
15257
|
}
|
|
14916
|
-
.ant-show-help-
|
|
14917
|
-
.ant-show-help-
|
|
15258
|
+
.ant-show-help-item-appear,
|
|
15259
|
+
.ant-show-help-item-enter {
|
|
15260
|
+
transform: translateY(-5px);
|
|
14918
15261
|
opacity: 0;
|
|
14919
|
-
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
14920
|
-
}
|
|
14921
|
-
.ant-show-help-leave {
|
|
14922
|
-
animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
14923
15262
|
}
|
|
14924
|
-
|
|
14925
|
-
|
|
14926
|
-
|
|
14927
|
-
|
|
14928
|
-
}
|
|
14929
|
-
100% {
|
|
14930
|
-
transform: translateY(0);
|
|
14931
|
-
opacity: 1;
|
|
14932
|
-
}
|
|
15263
|
+
.ant-show-help-item-appear-active,
|
|
15264
|
+
.ant-show-help-item-enter-active {
|
|
15265
|
+
transform: translateY(0);
|
|
15266
|
+
opacity: 1;
|
|
14933
15267
|
}
|
|
14934
|
-
|
|
14935
|
-
|
|
14936
|
-
transform: translateY(-5px);
|
|
14937
|
-
opacity: 0;
|
|
14938
|
-
}
|
|
15268
|
+
.ant-show-help-item-leave-active {
|
|
15269
|
+
transform: translateY(-5px);
|
|
14939
15270
|
}
|
|
14940
15271
|
@keyframes diffZoomIn1 {
|
|
14941
15272
|
0% {
|
|
@@ -15008,12 +15339,15 @@ nz-header {
|
|
|
15008
15339
|
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-arrow,
|
|
15009
15340
|
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-clear,
|
|
15010
15341
|
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-arrow,
|
|
15011
|
-
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear
|
|
15342
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-clear,
|
|
15343
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-arrow,
|
|
15344
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-clear {
|
|
15012
15345
|
right: auto;
|
|
15013
15346
|
left: 32px;
|
|
15014
15347
|
}
|
|
15015
15348
|
.ant-form-rtl .ant-form-item-has-feedback > .ant-select .ant-select-selection-selected-value,
|
|
15016
|
-
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value
|
|
15349
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-group-addon) > .ant-select .ant-select-selection-selected-value,
|
|
15350
|
+
.ant-form-rtl .ant-form-item-has-feedback :not(.ant-input-number-group-addon) > .ant-select .ant-select-selection-selected-value {
|
|
15017
15351
|
padding-right: 0;
|
|
15018
15352
|
padding-left: 42px;
|
|
15019
15353
|
}
|
|
@@ -15048,6 +15382,9 @@ nz-header {
|
|
|
15048
15382
|
margin-right: 0;
|
|
15049
15383
|
margin-left: 16px;
|
|
15050
15384
|
}
|
|
15385
|
+
nz-form-item.ant-form-item {
|
|
15386
|
+
transition: none;
|
|
15387
|
+
}
|
|
15051
15388
|
.ant-list {
|
|
15052
15389
|
box-sizing: border-box;
|
|
15053
15390
|
margin: 0;
|
|
@@ -15458,7 +15795,7 @@ nz-list-item-extra {
|
|
|
15458
15795
|
content: '';
|
|
15459
15796
|
}
|
|
15460
15797
|
.ant-menu.ant-menu-root:focus-visible {
|
|
15461
|
-
box-shadow: 0 0 0 2px
|
|
15798
|
+
box-shadow: 0 0 0 2px #e6f7ff;
|
|
15462
15799
|
}
|
|
15463
15800
|
.ant-menu ul,
|
|
15464
15801
|
.ant-menu ol {
|
|
@@ -15502,6 +15839,9 @@ nz-list-item-extra {
|
|
|
15502
15839
|
cursor: initial;
|
|
15503
15840
|
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);
|
|
15504
15841
|
}
|
|
15842
|
+
.ant-menu-title-content {
|
|
15843
|
+
transition: color 0.3s;
|
|
15844
|
+
}
|
|
15505
15845
|
.ant-menu-item a {
|
|
15506
15846
|
color: rgba(0, 0, 0, 0.85);
|
|
15507
15847
|
}
|
|
@@ -15524,10 +15864,14 @@ nz-list-item-extra {
|
|
|
15524
15864
|
color: #1890ff;
|
|
15525
15865
|
}
|
|
15526
15866
|
.ant-menu-item-divider {
|
|
15527
|
-
height: 1px;
|
|
15528
15867
|
overflow: hidden;
|
|
15529
15868
|
line-height: 0;
|
|
15530
|
-
|
|
15869
|
+
border-color: #f0f0f0;
|
|
15870
|
+
border-style: solid;
|
|
15871
|
+
border-width: 1px 0 0;
|
|
15872
|
+
}
|
|
15873
|
+
.ant-menu-item-divider-dashed {
|
|
15874
|
+
border-style: dashed;
|
|
15531
15875
|
}
|
|
15532
15876
|
.ant-menu-horizontal .ant-menu-item,
|
|
15533
15877
|
.ant-menu-horizontal .ant-menu-submenu {
|
|
@@ -15636,15 +15980,11 @@ nz-list-item-extra {
|
|
|
15636
15980
|
}
|
|
15637
15981
|
.ant-menu-item:focus-visible,
|
|
15638
15982
|
.ant-menu-submenu-title:focus-visible {
|
|
15639
|
-
box-shadow: 0 0 0 2px
|
|
15983
|
+
box-shadow: 0 0 0 2px #e6f7ff;
|
|
15640
15984
|
}
|
|
15641
15985
|
.ant-menu > .ant-menu-item-divider {
|
|
15642
|
-
height: 1px;
|
|
15643
15986
|
margin: 1px 0;
|
|
15644
15987
|
padding: 0;
|
|
15645
|
-
overflow: hidden;
|
|
15646
|
-
line-height: 0;
|
|
15647
|
-
background-color: #f0f0f0;
|
|
15648
15988
|
}
|
|
15649
15989
|
.ant-menu-submenu-popup {
|
|
15650
15990
|
position: absolute;
|
|
@@ -16028,6 +16368,10 @@ nz-list-item-extra {
|
|
|
16028
16368
|
.ant-layout-header .ant-menu {
|
|
16029
16369
|
line-height: inherit;
|
|
16030
16370
|
}
|
|
16371
|
+
.ant-menu-inline-collapsed-tooltip a,
|
|
16372
|
+
.ant-menu-inline-collapsed-tooltip a:hover {
|
|
16373
|
+
color: #fff;
|
|
16374
|
+
}
|
|
16031
16375
|
.ant-menu-light .ant-menu-item:hover,
|
|
16032
16376
|
.ant-menu-light .ant-menu-item-active,
|
|
16033
16377
|
.ant-menu-light .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
|
|
@@ -16347,6 +16691,8 @@ nz-list-item-extra {
|
|
|
16347
16691
|
border: 1px solid #d9d9d9;
|
|
16348
16692
|
border-radius: 2px;
|
|
16349
16693
|
transition: all 0.3s;
|
|
16694
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
16695
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
16350
16696
|
display: block;
|
|
16351
16697
|
height: auto;
|
|
16352
16698
|
min-height: 28px;
|
|
@@ -16358,6 +16704,7 @@ nz-list-item-extra {
|
|
|
16358
16704
|
}
|
|
16359
16705
|
.ant-mention-wrapper .ant-mention-editor::placeholder {
|
|
16360
16706
|
color: #bfbfbf;
|
|
16707
|
+
user-select: none;
|
|
16361
16708
|
}
|
|
16362
16709
|
.ant-mention-wrapper .ant-mention-editor:placeholder-shown {
|
|
16363
16710
|
text-overflow: ellipsis;
|
|
@@ -16367,6 +16714,7 @@ nz-list-item-extra {
|
|
|
16367
16714
|
}
|
|
16368
16715
|
.ant-mention-wrapper .ant-mention-editor::placeholder {
|
|
16369
16716
|
color: #bfbfbf;
|
|
16717
|
+
user-select: none;
|
|
16370
16718
|
}
|
|
16371
16719
|
.ant-mention-wrapper .ant-mention-editor:placeholder-shown {
|
|
16372
16720
|
text-overflow: ellipsis;
|
|
@@ -16382,9 +16730,9 @@ nz-list-item-extra {
|
|
|
16382
16730
|
.ant-mention-wrapper .ant-mention-editor:focus,
|
|
16383
16731
|
.ant-mention-wrapper .ant-mention-editor-focused {
|
|
16384
16732
|
border-color: #40a9ff;
|
|
16733
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
16385
16734
|
border-right-width: 1px !important;
|
|
16386
16735
|
outline: 0;
|
|
16387
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
16388
16736
|
}
|
|
16389
16737
|
.ant-input-rtl .ant-mention-wrapper .ant-mention-editor:focus,
|
|
16390
16738
|
.ant-input-rtl .ant-mention-wrapper .ant-mention-editor-focused {
|
|
@@ -16393,6 +16741,8 @@ nz-list-item-extra {
|
|
|
16393
16741
|
}
|
|
16394
16742
|
.ant-mention-wrapper .ant-mention-editor-disabled {
|
|
16395
16743
|
background-color: #f5f5f5;
|
|
16744
|
+
border-color: #d9d9d9;
|
|
16745
|
+
box-shadow: none;
|
|
16396
16746
|
cursor: not-allowed;
|
|
16397
16747
|
opacity: 1;
|
|
16398
16748
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -16404,6 +16754,8 @@ nz-list-item-extra {
|
|
|
16404
16754
|
}
|
|
16405
16755
|
.ant-mention-wrapper .ant-mention-editor[disabled] {
|
|
16406
16756
|
background-color: #f5f5f5;
|
|
16757
|
+
border-color: #d9d9d9;
|
|
16758
|
+
box-shadow: none;
|
|
16407
16759
|
cursor: not-allowed;
|
|
16408
16760
|
opacity: 1;
|
|
16409
16761
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -16447,9 +16799,9 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
16447
16799
|
}
|
|
16448
16800
|
.ant-mention-wrapper.ant-mention-active:not(.disabled) .ant-mention-editor {
|
|
16449
16801
|
border-color: #40a9ff;
|
|
16802
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
16450
16803
|
border-right-width: 1px !important;
|
|
16451
16804
|
outline: 0;
|
|
16452
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
16453
16805
|
}
|
|
16454
16806
|
.ant-input-rtl .ant-mention-wrapper.ant-mention-active:not(.disabled) .ant-mention-editor {
|
|
16455
16807
|
border-right-width: 0;
|
|
@@ -16457,6 +16809,8 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
16457
16809
|
}
|
|
16458
16810
|
.ant-mention-wrapper.disabled .ant-mention-editor {
|
|
16459
16811
|
background-color: #f5f5f5;
|
|
16812
|
+
border-color: #d9d9d9;
|
|
16813
|
+
box-shadow: none;
|
|
16460
16814
|
cursor: not-allowed;
|
|
16461
16815
|
opacity: 1;
|
|
16462
16816
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -16812,6 +17166,7 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
16812
17166
|
.ant-modal-centered .ant-modal {
|
|
16813
17167
|
top: 0;
|
|
16814
17168
|
display: inline-block;
|
|
17169
|
+
padding-bottom: 0;
|
|
16815
17170
|
text-align: left;
|
|
16816
17171
|
vertical-align: middle;
|
|
16817
17172
|
}
|
|
@@ -17222,7 +17577,7 @@ textarea.ant-mention-wrapper .ant-mention-editor {
|
|
|
17222
17577
|
color: rgba(0, 0, 0, 0.85);
|
|
17223
17578
|
font-weight: 600;
|
|
17224
17579
|
font-size: 16px;
|
|
17225
|
-
line-height:
|
|
17580
|
+
line-height: 28px;
|
|
17226
17581
|
overflow: hidden;
|
|
17227
17582
|
white-space: nowrap;
|
|
17228
17583
|
text-overflow: ellipsis;
|
|
@@ -17564,6 +17919,8 @@ nz-page-header-footer {
|
|
|
17564
17919
|
border: 1px solid #d9d9d9;
|
|
17565
17920
|
border-radius: 2px;
|
|
17566
17921
|
transition: all 0.3s;
|
|
17922
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
17923
|
+
/* stylelint-disable-next-line selector-no-vendor-prefix */
|
|
17567
17924
|
width: 50px;
|
|
17568
17925
|
height: 28px;
|
|
17569
17926
|
margin: 0 8px;
|
|
@@ -17573,6 +17930,7 @@ nz-page-header-footer {
|
|
|
17573
17930
|
}
|
|
17574
17931
|
.ant-pagination-options-quick-jumper input::placeholder {
|
|
17575
17932
|
color: #bfbfbf;
|
|
17933
|
+
user-select: none;
|
|
17576
17934
|
}
|
|
17577
17935
|
.ant-pagination-options-quick-jumper input:placeholder-shown {
|
|
17578
17936
|
text-overflow: ellipsis;
|
|
@@ -17582,6 +17940,7 @@ nz-page-header-footer {
|
|
|
17582
17940
|
}
|
|
17583
17941
|
.ant-pagination-options-quick-jumper input::placeholder {
|
|
17584
17942
|
color: #bfbfbf;
|
|
17943
|
+
user-select: none;
|
|
17585
17944
|
}
|
|
17586
17945
|
.ant-pagination-options-quick-jumper input:placeholder-shown {
|
|
17587
17946
|
text-overflow: ellipsis;
|
|
@@ -17597,9 +17956,9 @@ nz-page-header-footer {
|
|
|
17597
17956
|
.ant-pagination-options-quick-jumper input:focus,
|
|
17598
17957
|
.ant-pagination-options-quick-jumper input-focused {
|
|
17599
17958
|
border-color: #40a9ff;
|
|
17959
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
17600
17960
|
border-right-width: 1px !important;
|
|
17601
17961
|
outline: 0;
|
|
17602
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
17603
17962
|
}
|
|
17604
17963
|
.ant-input-rtl .ant-pagination-options-quick-jumper input:focus,
|
|
17605
17964
|
.ant-input-rtl .ant-pagination-options-quick-jumper input-focused {
|
|
@@ -17608,6 +17967,8 @@ nz-page-header-footer {
|
|
|
17608
17967
|
}
|
|
17609
17968
|
.ant-pagination-options-quick-jumper input-disabled {
|
|
17610
17969
|
background-color: #f5f5f5;
|
|
17970
|
+
border-color: #d9d9d9;
|
|
17971
|
+
box-shadow: none;
|
|
17611
17972
|
cursor: not-allowed;
|
|
17612
17973
|
opacity: 1;
|
|
17613
17974
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -17619,6 +17980,8 @@ nz-page-header-footer {
|
|
|
17619
17980
|
}
|
|
17620
17981
|
.ant-pagination-options-quick-jumper input[disabled] {
|
|
17621
17982
|
background-color: #f5f5f5;
|
|
17983
|
+
border-color: #d9d9d9;
|
|
17984
|
+
box-shadow: none;
|
|
17622
17985
|
cursor: not-allowed;
|
|
17623
17986
|
opacity: 1;
|
|
17624
17987
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -17693,6 +18056,10 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
17693
18056
|
.ant-pagination-simple .ant-pagination-simple-pager input:hover {
|
|
17694
18057
|
border-color: #1890ff;
|
|
17695
18058
|
}
|
|
18059
|
+
.ant-pagination-simple .ant-pagination-simple-pager input:focus {
|
|
18060
|
+
border-color: #40a9ff;
|
|
18061
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
18062
|
+
}
|
|
17696
18063
|
.ant-pagination-simple .ant-pagination-simple-pager input[disabled] {
|
|
17697
18064
|
color: rgba(0, 0, 0, 0.25);
|
|
17698
18065
|
background: #f5f5f5;
|
|
@@ -17767,11 +18134,10 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
17767
18134
|
cursor: not-allowed;
|
|
17768
18135
|
}
|
|
17769
18136
|
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active {
|
|
17770
|
-
background: #
|
|
17771
|
-
border-color: transparent;
|
|
18137
|
+
background: #e6e6e6;
|
|
17772
18138
|
}
|
|
17773
18139
|
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {
|
|
17774
|
-
color:
|
|
18140
|
+
color: rgba(0, 0, 0, 0.25);
|
|
17775
18141
|
}
|
|
17776
18142
|
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link {
|
|
17777
18143
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -18344,7 +18710,6 @@ nz-pagination {
|
|
|
18344
18710
|
font-feature-settings: 'tnum';
|
|
18345
18711
|
display: inline-block;
|
|
18346
18712
|
font-size: 0;
|
|
18347
|
-
line-height: unset;
|
|
18348
18713
|
}
|
|
18349
18714
|
.ant-radio-group .ant-badge-count {
|
|
18350
18715
|
z-index: 1;
|
|
@@ -18368,6 +18733,9 @@ nz-pagination {
|
|
|
18368
18733
|
margin-right: 6px;
|
|
18369
18734
|
cursor: pointer;
|
|
18370
18735
|
}
|
|
18736
|
+
.ant-radio-wrapper-disabled {
|
|
18737
|
+
cursor: not-allowed;
|
|
18738
|
+
}
|
|
18371
18739
|
.ant-radio-wrapper::after {
|
|
18372
18740
|
display: inline-block;
|
|
18373
18741
|
width: 0;
|
|
@@ -18396,7 +18764,7 @@ nz-pagination {
|
|
|
18396
18764
|
border-color: #1890ff;
|
|
18397
18765
|
}
|
|
18398
18766
|
.ant-radio-input:focus + .ant-radio-inner {
|
|
18399
|
-
box-shadow: 0 0 0 3px
|
|
18767
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
|
18400
18768
|
}
|
|
18401
18769
|
.ant-radio-checked::after {
|
|
18402
18770
|
position: absolute;
|
|
@@ -18431,15 +18799,17 @@ nz-pagination {
|
|
|
18431
18799
|
}
|
|
18432
18800
|
.ant-radio-inner::after {
|
|
18433
18801
|
position: absolute;
|
|
18434
|
-
top:
|
|
18435
|
-
left:
|
|
18802
|
+
top: 50%;
|
|
18803
|
+
left: 50%;
|
|
18436
18804
|
display: block;
|
|
18437
|
-
width:
|
|
18438
|
-
height:
|
|
18805
|
+
width: 14px;
|
|
18806
|
+
height: 14px;
|
|
18807
|
+
margin-top: -7px;
|
|
18808
|
+
margin-left: -7px;
|
|
18439
18809
|
background-color: #1890ff;
|
|
18440
18810
|
border-top: 0;
|
|
18441
18811
|
border-left: 0;
|
|
18442
|
-
border-radius:
|
|
18812
|
+
border-radius: 14px;
|
|
18443
18813
|
transform: scale(0);
|
|
18444
18814
|
opacity: 0;
|
|
18445
18815
|
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
@@ -18459,7 +18829,7 @@ nz-pagination {
|
|
|
18459
18829
|
border-color: #1890ff;
|
|
18460
18830
|
}
|
|
18461
18831
|
.ant-radio-checked .ant-radio-inner::after {
|
|
18462
|
-
transform: scale(
|
|
18832
|
+
transform: scale(0.42857143);
|
|
18463
18833
|
opacity: 1;
|
|
18464
18834
|
transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
18465
18835
|
}
|
|
@@ -18550,7 +18920,7 @@ span.ant-radio + * {
|
|
|
18550
18920
|
color: #1890ff;
|
|
18551
18921
|
}
|
|
18552
18922
|
.ant-radio-button-wrapper:focus-within {
|
|
18553
|
-
box-shadow: 0 0 0 3px
|
|
18923
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
|
18554
18924
|
}
|
|
18555
18925
|
.ant-radio-button-wrapper .ant-radio-inner,
|
|
18556
18926
|
.ant-radio-button-wrapper input[type='checkbox'],
|
|
@@ -18587,7 +18957,7 @@ span.ant-radio + * {
|
|
|
18587
18957
|
background-color: #096dd9;
|
|
18588
18958
|
}
|
|
18589
18959
|
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
|
18590
|
-
box-shadow: 0 0 0 3px
|
|
18960
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
|
18591
18961
|
}
|
|
18592
18962
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
|
|
18593
18963
|
color: #fff;
|
|
@@ -18605,7 +18975,7 @@ span.ant-radio + * {
|
|
|
18605
18975
|
border-color: #096dd9;
|
|
18606
18976
|
}
|
|
18607
18977
|
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
|
|
18608
|
-
box-shadow: 0 0 0 3px
|
|
18978
|
+
box-shadow: 0 0 0 3px #e6f7ff;
|
|
18609
18979
|
}
|
|
18610
18980
|
.ant-radio-button-wrapper-disabled {
|
|
18611
18981
|
color: rgba(0, 0, 0, 0.25);
|
|
@@ -18702,15 +19072,18 @@ span.ant-radio + * {
|
|
|
18702
19072
|
margin-right: 8px;
|
|
18703
19073
|
}
|
|
18704
19074
|
.ant-rate-star > div {
|
|
18705
|
-
transition: all 0.3s;
|
|
19075
|
+
transition: all 0.3s, outline 0s;
|
|
18706
19076
|
}
|
|
18707
19077
|
.ant-rate-star > div:hover,
|
|
18708
19078
|
.ant-rate-star > div:focus-visible {
|
|
18709
19079
|
transform: scale(1.1);
|
|
18710
19080
|
}
|
|
18711
|
-
.ant-rate-star > div:focus
|
|
19081
|
+
.ant-rate-star > div:focus {
|
|
18712
19082
|
outline: 0;
|
|
18713
19083
|
}
|
|
19084
|
+
.ant-rate-star > div:focus-visible {
|
|
19085
|
+
outline: 1px dashed #fadb14;
|
|
19086
|
+
}
|
|
18714
19087
|
.ant-rate-star-first,
|
|
18715
19088
|
.ant-rate-star-second {
|
|
18716
19089
|
color: #f0f0f0;
|
|
@@ -18784,6 +19157,7 @@ span.ant-radio + * {
|
|
|
18784
19157
|
user-select: none;
|
|
18785
19158
|
}
|
|
18786
19159
|
.ant-select-single .ant-select-selector .ant-select-selection-placeholder {
|
|
19160
|
+
transition: none;
|
|
18787
19161
|
pointer-events: none;
|
|
18788
19162
|
}
|
|
18789
19163
|
.ant-select-single .ant-select-selector::after,
|
|
@@ -19104,9 +19478,9 @@ span.ant-radio + * {
|
|
|
19104
19478
|
}
|
|
19105
19479
|
.ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
19106
19480
|
border-color: #40a9ff;
|
|
19481
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
19107
19482
|
border-right-width: 1px !important;
|
|
19108
19483
|
outline: 0;
|
|
19109
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
19110
19484
|
}
|
|
19111
19485
|
.ant-input-rtl .ant-select-focused:not(.ant-select-disabled).ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
19112
19486
|
border-right-width: 0;
|
|
@@ -19133,6 +19507,7 @@ span.ant-radio + * {
|
|
|
19133
19507
|
}
|
|
19134
19508
|
.ant-select:not(.ant-select-customize-input) .ant-select-selector .ant-select-selection-search-input::-webkit-search-cancel-button {
|
|
19135
19509
|
display: none;
|
|
19510
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
19136
19511
|
-webkit-appearance: none;
|
|
19137
19512
|
}
|
|
19138
19513
|
.ant-select:not(.ant-select-disabled):hover .ant-select-selector {
|
|
@@ -19146,6 +19521,7 @@ span.ant-radio + * {
|
|
|
19146
19521
|
.ant-select-selection-item {
|
|
19147
19522
|
flex: 1;
|
|
19148
19523
|
overflow: hidden;
|
|
19524
|
+
font-weight: normal;
|
|
19149
19525
|
white-space: nowrap;
|
|
19150
19526
|
text-overflow: ellipsis;
|
|
19151
19527
|
}
|
|
@@ -19180,7 +19556,7 @@ span.ant-radio + * {
|
|
|
19180
19556
|
-webkit-font-smoothing: antialiased;
|
|
19181
19557
|
-moz-osx-font-smoothing: grayscale;
|
|
19182
19558
|
position: absolute;
|
|
19183
|
-
top:
|
|
19559
|
+
top: 50%;
|
|
19184
19560
|
right: 7px;
|
|
19185
19561
|
width: 12px;
|
|
19186
19562
|
height: 12px;
|
|
@@ -19355,6 +19731,9 @@ span.ant-radio + * {
|
|
|
19355
19731
|
color: rgba(0, 0, 0, 0.25);
|
|
19356
19732
|
cursor: not-allowed;
|
|
19357
19733
|
}
|
|
19734
|
+
.ant-select-item-option-disabled.ant-select-item-option-selected {
|
|
19735
|
+
background-color: #f5f5f5;
|
|
19736
|
+
}
|
|
19358
19737
|
.ant-select-item-option-grouped {
|
|
19359
19738
|
padding-left: 16px;
|
|
19360
19739
|
}
|
|
@@ -19552,6 +19931,12 @@ span.ant-radio + * {
|
|
|
19552
19931
|
background-size: 400% 100%;
|
|
19553
19932
|
animation: ant-skeleton-loading 1.4s ease infinite;
|
|
19554
19933
|
}
|
|
19934
|
+
.ant-skeleton.ant-skeleton-block {
|
|
19935
|
+
width: 100%;
|
|
19936
|
+
}
|
|
19937
|
+
.ant-skeleton.ant-skeleton-block .ant-skeleton-button {
|
|
19938
|
+
width: 100%;
|
|
19939
|
+
}
|
|
19555
19940
|
.ant-skeleton-element {
|
|
19556
19941
|
display: inline-block;
|
|
19557
19942
|
width: auto;
|
|
@@ -19562,11 +19947,13 @@ span.ant-radio + * {
|
|
|
19562
19947
|
background: rgba(190, 190, 190, 0.2);
|
|
19563
19948
|
border-radius: 2px;
|
|
19564
19949
|
width: 56px;
|
|
19950
|
+
min-width: 56px;
|
|
19565
19951
|
height: 28px;
|
|
19566
19952
|
line-height: 28px;
|
|
19567
19953
|
}
|
|
19568
19954
|
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-circle {
|
|
19569
19955
|
width: 28px;
|
|
19956
|
+
min-width: 28px;
|
|
19570
19957
|
border-radius: 50%;
|
|
19571
19958
|
}
|
|
19572
19959
|
.ant-skeleton-element .ant-skeleton-button.ant-skeleton-button-round {
|
|
@@ -19574,11 +19961,13 @@ span.ant-radio + * {
|
|
|
19574
19961
|
}
|
|
19575
19962
|
.ant-skeleton-element .ant-skeleton-button-lg {
|
|
19576
19963
|
width: 64px;
|
|
19964
|
+
min-width: 64px;
|
|
19577
19965
|
height: 32px;
|
|
19578
19966
|
line-height: 32px;
|
|
19579
19967
|
}
|
|
19580
19968
|
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-circle {
|
|
19581
19969
|
width: 32px;
|
|
19970
|
+
min-width: 32px;
|
|
19582
19971
|
border-radius: 50%;
|
|
19583
19972
|
}
|
|
19584
19973
|
.ant-skeleton-element .ant-skeleton-button-lg.ant-skeleton-button-round {
|
|
@@ -19586,11 +19975,13 @@ span.ant-radio + * {
|
|
|
19586
19975
|
}
|
|
19587
19976
|
.ant-skeleton-element .ant-skeleton-button-sm {
|
|
19588
19977
|
width: 44px;
|
|
19978
|
+
min-width: 44px;
|
|
19589
19979
|
height: 22px;
|
|
19590
19980
|
line-height: 22px;
|
|
19591
19981
|
}
|
|
19592
19982
|
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-circle {
|
|
19593
19983
|
width: 22px;
|
|
19984
|
+
min-width: 22px;
|
|
19594
19985
|
border-radius: 50%;
|
|
19595
19986
|
}
|
|
19596
19987
|
.ant-skeleton-element .ant-skeleton-button-sm.ant-skeleton-button-round {
|
|
@@ -19993,7 +20384,6 @@ span.ant-radio + * {
|
|
|
19993
20384
|
}
|
|
19994
20385
|
.ant-spin-blur {
|
|
19995
20386
|
clear: both;
|
|
19996
|
-
overflow: hidden;
|
|
19997
20387
|
opacity: 0.5;
|
|
19998
20388
|
user-select: none;
|
|
19999
20389
|
pointer-events: none;
|
|
@@ -20599,12 +20989,12 @@ nz-spin {
|
|
|
20599
20989
|
left: 0;
|
|
20600
20990
|
}
|
|
20601
20991
|
.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
|
|
20602
|
-
margin-top:
|
|
20992
|
+
margin-top: 13px;
|
|
20603
20993
|
margin-left: 0;
|
|
20604
20994
|
background: none;
|
|
20605
20995
|
}
|
|
20606
20996
|
.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
|
|
20607
|
-
top:
|
|
20997
|
+
top: 6.5px;
|
|
20608
20998
|
left: -9px;
|
|
20609
20999
|
margin: 0;
|
|
20610
21000
|
padding: 22px 0 4px;
|
|
@@ -20616,7 +21006,8 @@ nz-spin {
|
|
|
20616
21006
|
width: inherit;
|
|
20617
21007
|
}
|
|
20618
21008
|
.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-item-container .ant-steps-item-icon .ant-steps-icon-dot {
|
|
20619
|
-
|
|
21009
|
+
top: -1px;
|
|
21010
|
+
left: -1px;
|
|
20620
21011
|
}
|
|
20621
21012
|
.ant-steps-navigation {
|
|
20622
21013
|
padding-top: 12px;
|
|
@@ -20898,7 +21289,7 @@ nz-spin {
|
|
|
20898
21289
|
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
|
|
20899
21290
|
}
|
|
20900
21291
|
.ant-switch-checked:focus {
|
|
20901
|
-
box-shadow: 0 0 0 2px
|
|
21292
|
+
box-shadow: 0 0 0 2px #e6f7ff;
|
|
20902
21293
|
}
|
|
20903
21294
|
.ant-switch:focus:hover {
|
|
20904
21295
|
box-shadow: none;
|
|
@@ -20957,7 +21348,7 @@ nz-spin {
|
|
|
20957
21348
|
right: 0;
|
|
20958
21349
|
left: -30%;
|
|
20959
21350
|
}
|
|
20960
|
-
.ant-switch-loading-icon {
|
|
21351
|
+
.ant-switch-loading-icon.anticon {
|
|
20961
21352
|
position: relative;
|
|
20962
21353
|
top: 2px;
|
|
20963
21354
|
color: rgba(0, 0, 0, 0.65);
|
|
@@ -21071,9 +21462,7 @@ nz-switch {
|
|
|
21071
21462
|
border-bottom: 0;
|
|
21072
21463
|
}
|
|
21073
21464
|
.ant-table.ant-table-bordered > .ant-table-container {
|
|
21074
|
-
border: 1px solid #f0f0f0;
|
|
21075
|
-
border-right: 0;
|
|
21076
|
-
border-bottom: 0;
|
|
21465
|
+
border-left: 1px solid #f0f0f0;
|
|
21077
21466
|
}
|
|
21078
21467
|
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table > thead > tr > th,
|
|
21079
21468
|
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr > th,
|
|
@@ -21136,6 +21525,10 @@ nz-switch {
|
|
|
21136
21525
|
border-right: 1px solid #f0f0f0;
|
|
21137
21526
|
content: '';
|
|
21138
21527
|
}
|
|
21528
|
+
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-content > table,
|
|
21529
|
+
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table {
|
|
21530
|
+
border-top: 1px solid #f0f0f0;
|
|
21531
|
+
}
|
|
21139
21532
|
.ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-expanded-row > td,
|
|
21140
21533
|
.ant-table.ant-table-bordered.ant-table-scroll-horizontal > .ant-table-container > .ant-table-body > table > tbody > tr.ant-table-placeholder > td {
|
|
21141
21534
|
border-right: 0;
|
|
@@ -21300,7 +21693,8 @@ nz-switch {
|
|
|
21300
21693
|
.ant-table-tbody > tr > td > .ant-table-expanded-row-fixed > .ant-table-wrapper:only-child .ant-table-tbody > tr:last-child > td:last-child {
|
|
21301
21694
|
border-radius: 0;
|
|
21302
21695
|
}
|
|
21303
|
-
.ant-table-tbody > tr.ant-table-row:hover > td
|
|
21696
|
+
.ant-table-tbody > tr.ant-table-row:hover > td,
|
|
21697
|
+
.ant-table-tbody > tr > td.ant-table-cell-row-hover {
|
|
21304
21698
|
background: #fafafa;
|
|
21305
21699
|
}
|
|
21306
21700
|
.ant-table-tbody > tr.ant-table-row-selected > td {
|
|
@@ -21311,6 +21705,8 @@ nz-switch {
|
|
|
21311
21705
|
background: #dcf4ff;
|
|
21312
21706
|
}
|
|
21313
21707
|
.ant-table-summary {
|
|
21708
|
+
position: relative;
|
|
21709
|
+
z-index: 2;
|
|
21314
21710
|
background: #fff;
|
|
21315
21711
|
}
|
|
21316
21712
|
div.ant-table-summary {
|
|
@@ -21385,6 +21781,7 @@ td.ant-table-column-sort {
|
|
|
21385
21781
|
content: '';
|
|
21386
21782
|
}
|
|
21387
21783
|
.ant-table-column-sorter {
|
|
21784
|
+
margin-left: 4px;
|
|
21388
21785
|
color: #bfbfbf;
|
|
21389
21786
|
font-size: 0;
|
|
21390
21787
|
transition: color 0.3s;
|
|
@@ -21452,6 +21849,39 @@ td.ant-table-column-sort {
|
|
|
21452
21849
|
border: 0;
|
|
21453
21850
|
box-shadow: none;
|
|
21454
21851
|
}
|
|
21852
|
+
.ant-table-filter-dropdown .ant-dropdown-menu:empty::after {
|
|
21853
|
+
display: block;
|
|
21854
|
+
padding: 8px 0;
|
|
21855
|
+
color: rgba(0, 0, 0, 0.25);
|
|
21856
|
+
font-size: 12px;
|
|
21857
|
+
text-align: center;
|
|
21858
|
+
content: 'Not Found';
|
|
21859
|
+
}
|
|
21860
|
+
.ant-table-filter-dropdown-tree {
|
|
21861
|
+
padding: 8px 8px 0;
|
|
21862
|
+
}
|
|
21863
|
+
.ant-table-filter-dropdown-tree .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
|
|
21864
|
+
background-color: #f5f5f5;
|
|
21865
|
+
}
|
|
21866
|
+
.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper,
|
|
21867
|
+
.ant-table-filter-dropdown-tree .ant-tree-treenode-checkbox-checked .ant-tree-node-content-wrapper:hover {
|
|
21868
|
+
background-color: #bae7ff;
|
|
21869
|
+
}
|
|
21870
|
+
.ant-table-filter-dropdown-search {
|
|
21871
|
+
padding: 8px;
|
|
21872
|
+
border-bottom: 1px #f0f0f0 solid;
|
|
21873
|
+
}
|
|
21874
|
+
.ant-table-filter-dropdown-search-input input {
|
|
21875
|
+
min-width: 140px;
|
|
21876
|
+
}
|
|
21877
|
+
.ant-table-filter-dropdown-search-input .anticon {
|
|
21878
|
+
color: rgba(0, 0, 0, 0.25);
|
|
21879
|
+
}
|
|
21880
|
+
.ant-table-filter-dropdown-checkall {
|
|
21881
|
+
width: 100%;
|
|
21882
|
+
margin-bottom: 4px;
|
|
21883
|
+
margin-left: 4px;
|
|
21884
|
+
}
|
|
21455
21885
|
.ant-table-filter-dropdown-submenu > ul {
|
|
21456
21886
|
max-height: calc(100vh - 130px);
|
|
21457
21887
|
overflow-x: hidden;
|
|
@@ -21464,7 +21894,7 @@ td.ant-table-column-sort {
|
|
|
21464
21894
|
.ant-table-filter-dropdown-btns {
|
|
21465
21895
|
display: flex;
|
|
21466
21896
|
justify-content: space-between;
|
|
21467
|
-
padding: 7px 8px
|
|
21897
|
+
padding: 7px 8px;
|
|
21468
21898
|
overflow: hidden;
|
|
21469
21899
|
background-color: inherit;
|
|
21470
21900
|
border-top: 1px solid #f0f0f0;
|
|
@@ -21485,6 +21915,9 @@ table tr th.ant-table-selection-column .ant-radio-wrapper,
|
|
|
21485
21915
|
table tr td.ant-table-selection-column .ant-radio-wrapper {
|
|
21486
21916
|
margin-right: 0;
|
|
21487
21917
|
}
|
|
21918
|
+
table tr th.ant-table-selection-column.ant-table-cell-fix-left {
|
|
21919
|
+
z-index: 3;
|
|
21920
|
+
}
|
|
21488
21921
|
table tr th.ant-table-selection-column::after {
|
|
21489
21922
|
background-color: transparent !important;
|
|
21490
21923
|
}
|
|
@@ -21627,7 +22060,6 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
21627
22060
|
}
|
|
21628
22061
|
.ant-table-cell-fix-left,
|
|
21629
22062
|
.ant-table-cell-fix-right {
|
|
21630
|
-
position: -webkit-sticky !important;
|
|
21631
22063
|
position: sticky !important;
|
|
21632
22064
|
z-index: 2;
|
|
21633
22065
|
background: #fff;
|
|
@@ -21698,12 +22130,13 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
21698
22130
|
}
|
|
21699
22131
|
.ant-table-sticky-holder {
|
|
21700
22132
|
position: sticky;
|
|
21701
|
-
z-index:
|
|
22133
|
+
z-index: calc(2 + 1);
|
|
22134
|
+
background: #fff;
|
|
21702
22135
|
}
|
|
21703
22136
|
.ant-table-sticky-scroll {
|
|
21704
22137
|
position: sticky;
|
|
21705
22138
|
bottom: 0;
|
|
21706
|
-
z-index:
|
|
22139
|
+
z-index: calc(2 + 1);
|
|
21707
22140
|
display: flex;
|
|
21708
22141
|
align-items: center;
|
|
21709
22142
|
background: #ffffff;
|
|
@@ -21775,6 +22208,10 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
21775
22208
|
.ant-table-wrapper-rtl .ant-table-thead > tr > th[colspan]:not([colspan='1']) {
|
|
21776
22209
|
text-align: center;
|
|
21777
22210
|
}
|
|
22211
|
+
.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 {
|
|
22212
|
+
right: auto;
|
|
22213
|
+
left: 0;
|
|
22214
|
+
}
|
|
21778
22215
|
.ant-table-wrapper-rtl .ant-table-thead > tr > th {
|
|
21779
22216
|
text-align: right;
|
|
21780
22217
|
}
|
|
@@ -21797,9 +22234,8 @@ tr.ant-table-expanded-row .ant-descriptions-view table {
|
|
|
21797
22234
|
.ant-table-rtl .ant-table-thead tr th.ant-table-column-has-sorters .ant-table-filter-column-title {
|
|
21798
22235
|
padding: 0 0 0 2.3em;
|
|
21799
22236
|
}
|
|
21800
|
-
.ant-table-wrapper-rtl .ant-table-filter-trigger
|
|
21801
|
-
|
|
21802
|
-
left: 0;
|
|
22237
|
+
.ant-table-wrapper-rtl .ant-table-filter-trigger {
|
|
22238
|
+
margin: -4px 4px -4px -4px;
|
|
21803
22239
|
}
|
|
21804
22240
|
.ant-dropdown-rtl .ant-table-filter-dropdown .ant-checkbox-wrapper + span,
|
|
21805
22241
|
.ant-dropdown-rtl .ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span,
|
|
@@ -21955,8 +22391,15 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
21955
22391
|
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
|
|
21956
22392
|
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
|
|
21957
22393
|
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
|
|
21958
|
-
margin-right:
|
|
21959
|
-
margin-left:
|
|
22394
|
+
margin-right: 2px;
|
|
22395
|
+
margin-left: 0;
|
|
22396
|
+
}
|
|
22397
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22398
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22399
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22400
|
+
.ant-tabs-rtl.ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
22401
|
+
margin-right: 2px;
|
|
22402
|
+
margin-left: 0;
|
|
21960
22403
|
}
|
|
21961
22404
|
.ant-tabs-dropdown-rtl {
|
|
21962
22405
|
direction: rtl;
|
|
@@ -22212,6 +22655,8 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22212
22655
|
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
22213
22656
|
}
|
|
22214
22657
|
.ant-tabs-dropdown-menu-item {
|
|
22658
|
+
display: flex;
|
|
22659
|
+
align-items: center;
|
|
22215
22660
|
min-width: 120px;
|
|
22216
22661
|
margin: 0;
|
|
22217
22662
|
padding: 5px 8px;
|
|
@@ -22225,6 +22670,22 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22225
22670
|
cursor: pointer;
|
|
22226
22671
|
transition: all 0.3s;
|
|
22227
22672
|
}
|
|
22673
|
+
.ant-tabs-dropdown-menu-item > span {
|
|
22674
|
+
flex: 1;
|
|
22675
|
+
white-space: nowrap;
|
|
22676
|
+
}
|
|
22677
|
+
.ant-tabs-dropdown-menu-item-remove {
|
|
22678
|
+
flex: none;
|
|
22679
|
+
margin-left: 8px;
|
|
22680
|
+
color: rgba(0, 0, 0, 0.45);
|
|
22681
|
+
font-size: 12px;
|
|
22682
|
+
background: transparent;
|
|
22683
|
+
border: 0;
|
|
22684
|
+
cursor: pointer;
|
|
22685
|
+
}
|
|
22686
|
+
.ant-tabs-dropdown-menu-item-remove:hover {
|
|
22687
|
+
color: #40a9ff;
|
|
22688
|
+
}
|
|
22228
22689
|
.ant-tabs-dropdown-menu-item:hover {
|
|
22229
22690
|
background: #f5f5f5;
|
|
22230
22691
|
}
|
|
@@ -22374,6 +22835,7 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
22374
22835
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
|
|
22375
22836
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
22376
22837
|
min-width: 40px;
|
|
22838
|
+
margin-left: 2px;
|
|
22377
22839
|
padding: 0 4px;
|
|
22378
22840
|
background: #fafafa;
|
|
22379
22841
|
border: 1px solid #f0f0f0;
|
|
@@ -22553,6 +23015,10 @@ nz-tabs-nav {
|
|
|
22553
23015
|
pointer-events: none;
|
|
22554
23016
|
color: rgba(0, 0, 0, 0.25);
|
|
22555
23017
|
}
|
|
23018
|
+
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
|
|
23019
|
+
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
23020
|
+
min-height: 40px;
|
|
23021
|
+
}
|
|
22556
23022
|
.ant-tag {
|
|
22557
23023
|
box-sizing: border-box;
|
|
22558
23024
|
margin: 0;
|
|
@@ -22767,14 +23233,14 @@ nz-tabs-nav {
|
|
|
22767
23233
|
border-color: #91d5ff;
|
|
22768
23234
|
}
|
|
22769
23235
|
.ant-tag-error {
|
|
22770
|
-
color: #
|
|
22771
|
-
background: #
|
|
22772
|
-
border-color: #
|
|
23236
|
+
color: #ff4d4f;
|
|
23237
|
+
background: #fff2f0;
|
|
23238
|
+
border-color: #ffccc7;
|
|
22773
23239
|
}
|
|
22774
23240
|
.ant-tag-warning {
|
|
22775
|
-
color: #
|
|
22776
|
-
background: #
|
|
22777
|
-
border-color: #
|
|
23241
|
+
color: #faad14;
|
|
23242
|
+
background: #fffbe6;
|
|
23243
|
+
border-color: #ffe58f;
|
|
22778
23244
|
}
|
|
22779
23245
|
.ant-tag > .anticon + span,
|
|
22780
23246
|
.ant-tag > span + .anticon {
|
|
@@ -23283,6 +23749,10 @@ nz-tabs-nav {
|
|
|
23283
23749
|
border: 0;
|
|
23284
23750
|
border-radius: 0;
|
|
23285
23751
|
}
|
|
23752
|
+
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small .ant-table-selection-column {
|
|
23753
|
+
width: 40px;
|
|
23754
|
+
min-width: 40px;
|
|
23755
|
+
}
|
|
23286
23756
|
.ant-transfer-customize-list .ant-table-wrapper .ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th {
|
|
23287
23757
|
background: #fafafa;
|
|
23288
23758
|
}
|
|
@@ -23327,29 +23797,8 @@ nz-tabs-nav {
|
|
|
23327
23797
|
width: 250px;
|
|
23328
23798
|
height: auto;
|
|
23329
23799
|
}
|
|
23330
|
-
.ant-transfer-list-search {
|
|
23331
|
-
padding-right: 24px;
|
|
23332
|
-
padding-left: 8px;
|
|
23333
|
-
}
|
|
23334
|
-
.ant-transfer-list-search-action {
|
|
23335
|
-
position: absolute;
|
|
23336
|
-
top: 8px;
|
|
23337
|
-
right: 12px;
|
|
23338
|
-
bottom: 12px;
|
|
23339
|
-
width: 28px;
|
|
23340
|
-
color: rgba(0, 0, 0, 0.25);
|
|
23341
|
-
line-height: 28px;
|
|
23342
|
-
text-align: center;
|
|
23343
|
-
}
|
|
23344
|
-
.ant-transfer-list-search-action .anticon {
|
|
23800
|
+
.ant-transfer-list-search .anticon-search {
|
|
23345
23801
|
color: rgba(0, 0, 0, 0.25);
|
|
23346
|
-
transition: all 0.3s;
|
|
23347
|
-
}
|
|
23348
|
-
.ant-transfer-list-search-action .anticon:hover {
|
|
23349
|
-
color: rgba(0, 0, 0, 0.45);
|
|
23350
|
-
}
|
|
23351
|
-
span.ant-transfer-list-search-action {
|
|
23352
|
-
pointer-events: none;
|
|
23353
23802
|
}
|
|
23354
23803
|
.ant-transfer-list-header {
|
|
23355
23804
|
display: flex;
|
|
@@ -23669,6 +24118,7 @@ h5.ant-typography,
|
|
|
23669
24118
|
a.ant-typography-ellipsis,
|
|
23670
24119
|
span.ant-typography-ellipsis {
|
|
23671
24120
|
display: inline-block;
|
|
24121
|
+
max-width: 100%;
|
|
23672
24122
|
}
|
|
23673
24123
|
a.ant-typography,
|
|
23674
24124
|
.ant-typography a {
|
|
@@ -23817,11 +24267,12 @@ div.ant-typography-edit-content {
|
|
|
23817
24267
|
pointer-events: none;
|
|
23818
24268
|
}
|
|
23819
24269
|
.ant-typography-edit-content textarea {
|
|
24270
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
23820
24271
|
-moz-transition: none;
|
|
23821
24272
|
}
|
|
23822
24273
|
.ant-typography ul,
|
|
23823
24274
|
.ant-typography ol {
|
|
23824
|
-
margin: 0 0 1em
|
|
24275
|
+
margin: 0 0 1em;
|
|
23825
24276
|
padding: 0;
|
|
23826
24277
|
}
|
|
23827
24278
|
.ant-typography ul li,
|
|
@@ -23876,6 +24327,7 @@ span.ant-typography-ellipsis-single-line {
|
|
|
23876
24327
|
vertical-align: bottom;
|
|
23877
24328
|
}
|
|
23878
24329
|
.ant-typography-ellipsis-multiple-line {
|
|
24330
|
+
/* stylelint-disable-next-line value-no-vendor-prefix */
|
|
23879
24331
|
display: -webkit-box;
|
|
23880
24332
|
overflow: hidden;
|
|
23881
24333
|
-webkit-line-clamp: 3;
|
|
@@ -24235,7 +24687,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24235
24687
|
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
|
|
24236
24688
|
width: 48px;
|
|
24237
24689
|
height: 48px;
|
|
24238
|
-
line-height:
|
|
24690
|
+
line-height: 60px;
|
|
24239
24691
|
text-align: center;
|
|
24240
24692
|
opacity: 0.8;
|
|
24241
24693
|
}
|
|
@@ -24290,7 +24742,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24290
24742
|
}
|
|
24291
24743
|
.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
|
|
24292
24744
|
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
|
|
24293
|
-
|
|
24745
|
+
margin-bottom: 12px;
|
|
24294
24746
|
}
|
|
24295
24747
|
.ant-upload-list-picture .ant-upload-list-item-progress,
|
|
24296
24748
|
.ant-upload-list-picture-card .ant-upload-list-item-progress {
|
|
@@ -24433,6 +24885,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24433
24885
|
.ant-upload-list-text .ant-upload-list-item-name,
|
|
24434
24886
|
.ant-upload-list-picture .ant-upload-list-item-name {
|
|
24435
24887
|
flex: auto;
|
|
24888
|
+
margin: 0;
|
|
24436
24889
|
padding: 0 4px;
|
|
24437
24890
|
}
|
|
24438
24891
|
.ant-upload-list-text .ant-upload-list-item-card-actions,
|
|
@@ -24594,7 +25047,7 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24594
25047
|
.ant-select-dropdown-hidden {
|
|
24595
25048
|
display: none;
|
|
24596
25049
|
}
|
|
24597
|
-
.ant-cascader {
|
|
25050
|
+
.ant-cascader-checkbox {
|
|
24598
25051
|
box-sizing: border-box;
|
|
24599
25052
|
margin: 0;
|
|
24600
25053
|
padding: 0;
|
|
@@ -24604,18 +25057,119 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24604
25057
|
line-height: 1.66667;
|
|
24605
25058
|
list-style: none;
|
|
24606
25059
|
font-feature-settings: 'tnum';
|
|
25060
|
+
position: relative;
|
|
25061
|
+
top: 0.2em;
|
|
25062
|
+
line-height: 1;
|
|
25063
|
+
white-space: nowrap;
|
|
25064
|
+
outline: none;
|
|
25065
|
+
cursor: pointer;
|
|
24607
25066
|
}
|
|
24608
|
-
.ant-cascader-
|
|
24609
|
-
|
|
25067
|
+
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-inner,
|
|
25068
|
+
.ant-cascader-checkbox:hover .ant-cascader-checkbox-inner,
|
|
25069
|
+
.ant-cascader-checkbox-input:focus + .ant-cascader-checkbox-inner {
|
|
25070
|
+
border-color: #1890ff;
|
|
25071
|
+
}
|
|
25072
|
+
.ant-cascader-checkbox-checked::after {
|
|
25073
|
+
position: absolute;
|
|
25074
|
+
top: 0;
|
|
25075
|
+
left: 0;
|
|
24610
25076
|
width: 100%;
|
|
24611
|
-
|
|
24612
|
-
|
|
24613
|
-
|
|
25077
|
+
height: 100%;
|
|
25078
|
+
border: 1px solid #1890ff;
|
|
25079
|
+
border-radius: 2px;
|
|
25080
|
+
visibility: hidden;
|
|
25081
|
+
animation: antCheckboxEffect 0.36s ease-in-out;
|
|
25082
|
+
animation-fill-mode: backwards;
|
|
25083
|
+
content: '';
|
|
25084
|
+
}
|
|
25085
|
+
.ant-cascader-checkbox:hover::after,
|
|
25086
|
+
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox::after {
|
|
25087
|
+
visibility: visible;
|
|
24614
25088
|
}
|
|
24615
|
-
.ant-cascader-
|
|
25089
|
+
.ant-cascader-checkbox-inner {
|
|
24616
25090
|
position: relative;
|
|
25091
|
+
top: 0;
|
|
25092
|
+
left: 0;
|
|
25093
|
+
display: block;
|
|
25094
|
+
width: 14px;
|
|
25095
|
+
height: 14px;
|
|
25096
|
+
direction: ltr;
|
|
25097
|
+
background-color: #fff;
|
|
25098
|
+
border: 1px solid #d9d9d9;
|
|
25099
|
+
border-radius: 2px;
|
|
25100
|
+
border-collapse: separate;
|
|
25101
|
+
transition: all 0.3s;
|
|
25102
|
+
}
|
|
25103
|
+
.ant-cascader-checkbox-inner::after {
|
|
25104
|
+
position: absolute;
|
|
25105
|
+
top: 50%;
|
|
25106
|
+
left: 21.5%;
|
|
25107
|
+
display: table;
|
|
25108
|
+
width: 5px;
|
|
25109
|
+
height: 8px;
|
|
25110
|
+
border: 2px solid #fff;
|
|
25111
|
+
border-top: 0;
|
|
25112
|
+
border-left: 0;
|
|
25113
|
+
transform: rotate(45deg) scale(0) translate(-50%, -50%);
|
|
25114
|
+
opacity: 0;
|
|
25115
|
+
transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
|
|
25116
|
+
content: ' ';
|
|
25117
|
+
}
|
|
25118
|
+
.ant-cascader-checkbox-input {
|
|
25119
|
+
position: absolute;
|
|
25120
|
+
top: 0;
|
|
25121
|
+
right: 0;
|
|
25122
|
+
bottom: 0;
|
|
25123
|
+
left: 0;
|
|
25124
|
+
z-index: 1;
|
|
25125
|
+
width: 100%;
|
|
25126
|
+
height: 100%;
|
|
25127
|
+
cursor: pointer;
|
|
25128
|
+
opacity: 0;
|
|
25129
|
+
}
|
|
25130
|
+
.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
|
|
25131
|
+
position: absolute;
|
|
25132
|
+
display: table;
|
|
25133
|
+
border: 2px solid #fff;
|
|
25134
|
+
border-top: 0;
|
|
25135
|
+
border-left: 0;
|
|
25136
|
+
transform: rotate(45deg) scale(1) translate(-50%, -50%);
|
|
25137
|
+
opacity: 1;
|
|
25138
|
+
transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
|
|
25139
|
+
content: ' ';
|
|
25140
|
+
}
|
|
25141
|
+
.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner {
|
|
25142
|
+
background-color: #1890ff;
|
|
25143
|
+
border-color: #1890ff;
|
|
25144
|
+
}
|
|
25145
|
+
.ant-cascader-checkbox-disabled {
|
|
25146
|
+
cursor: not-allowed;
|
|
25147
|
+
}
|
|
25148
|
+
.ant-cascader-checkbox-disabled.ant-cascader-checkbox-checked .ant-cascader-checkbox-inner::after {
|
|
25149
|
+
border-color: rgba(0, 0, 0, 0.25);
|
|
25150
|
+
animation-name: none;
|
|
25151
|
+
}
|
|
25152
|
+
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-input {
|
|
25153
|
+
cursor: not-allowed;
|
|
25154
|
+
}
|
|
25155
|
+
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner {
|
|
25156
|
+
background-color: #f5f5f5;
|
|
25157
|
+
border-color: #d9d9d9 !important;
|
|
25158
|
+
}
|
|
25159
|
+
.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
|
|
25160
|
+
border-color: #f5f5f5;
|
|
25161
|
+
border-collapse: separate;
|
|
25162
|
+
animation-name: none;
|
|
25163
|
+
}
|
|
25164
|
+
.ant-cascader-checkbox-disabled + span {
|
|
25165
|
+
color: rgba(0, 0, 0, 0.25);
|
|
25166
|
+
cursor: not-allowed;
|
|
25167
|
+
}
|
|
25168
|
+
.ant-cascader-checkbox-disabled:hover::after,
|
|
25169
|
+
.ant-cascader-checkbox-wrapper:hover .ant-cascader-checkbox-disabled::after {
|
|
25170
|
+
visibility: hidden;
|
|
24617
25171
|
}
|
|
24618
|
-
.ant-cascader-
|
|
25172
|
+
.ant-cascader-checkbox-wrapper {
|
|
24619
25173
|
box-sizing: border-box;
|
|
24620
25174
|
margin: 0;
|
|
24621
25175
|
padding: 0;
|
|
@@ -24625,138 +25179,101 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24625
25179
|
line-height: 1.66667;
|
|
24626
25180
|
list-style: none;
|
|
24627
25181
|
font-feature-settings: 'tnum';
|
|
24628
|
-
|
|
24629
|
-
|
|
24630
|
-
|
|
24631
|
-
border-radius: 2px;
|
|
24632
|
-
outline: 0;
|
|
25182
|
+
display: inline-flex;
|
|
25183
|
+
align-items: baseline;
|
|
25184
|
+
line-height: unset;
|
|
24633
25185
|
cursor: pointer;
|
|
24634
|
-
transition: color 0.3s;
|
|
24635
|
-
}
|
|
24636
|
-
.ant-cascader-picker-with-value .ant-cascader-picker-label {
|
|
24637
|
-
color: transparent;
|
|
24638
25186
|
}
|
|
24639
|
-
.ant-cascader-
|
|
24640
|
-
|
|
24641
|
-
|
|
24642
|
-
|
|
25187
|
+
.ant-cascader-checkbox-wrapper::after {
|
|
25188
|
+
display: inline-block;
|
|
25189
|
+
width: 0;
|
|
25190
|
+
overflow: hidden;
|
|
25191
|
+
content: '\a0';
|
|
24643
25192
|
}
|
|
24644
|
-
.ant-cascader-
|
|
25193
|
+
.ant-cascader-checkbox-wrapper.ant-cascader-checkbox-wrapper-disabled {
|
|
24645
25194
|
cursor: not-allowed;
|
|
24646
25195
|
}
|
|
24647
|
-
.ant-cascader-
|
|
24648
|
-
|
|
24649
|
-
border-right-width: 1px !important;
|
|
24650
|
-
outline: 0;
|
|
24651
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
24652
|
-
}
|
|
24653
|
-
.ant-input-rtl .ant-cascader-picker:focus .ant-cascader-input {
|
|
24654
|
-
border-right-width: 0;
|
|
24655
|
-
border-left-width: 1px !important;
|
|
25196
|
+
.ant-cascader-checkbox-wrapper + .ant-cascader-checkbox-wrapper {
|
|
25197
|
+
margin-left: 8px;
|
|
24656
25198
|
}
|
|
24657
|
-
.ant-cascader-
|
|
24658
|
-
|
|
24659
|
-
|
|
25199
|
+
.ant-cascader-checkbox + span {
|
|
25200
|
+
padding-right: 8px;
|
|
25201
|
+
padding-left: 8px;
|
|
24660
25202
|
}
|
|
24661
|
-
.ant-cascader-
|
|
24662
|
-
|
|
25203
|
+
.ant-cascader-checkbox-group {
|
|
25204
|
+
box-sizing: border-box;
|
|
25205
|
+
margin: 0;
|
|
25206
|
+
padding: 0;
|
|
25207
|
+
color: rgba(0, 0, 0, 0.85);
|
|
25208
|
+
font-size: 12px;
|
|
25209
|
+
font-variant: tabular-nums;
|
|
25210
|
+
line-height: 1.66667;
|
|
25211
|
+
list-style: none;
|
|
25212
|
+
font-feature-settings: 'tnum';
|
|
25213
|
+
display: inline-block;
|
|
24663
25214
|
}
|
|
24664
|
-
.ant-cascader-
|
|
24665
|
-
|
|
24666
|
-
top: 50%;
|
|
24667
|
-
left: 0;
|
|
24668
|
-
width: 100%;
|
|
24669
|
-
height: 20px;
|
|
24670
|
-
margin-top: -10px;
|
|
24671
|
-
padding: 0 20px 0 8px;
|
|
24672
|
-
overflow: hidden;
|
|
24673
|
-
line-height: 20px;
|
|
24674
|
-
white-space: nowrap;
|
|
24675
|
-
text-overflow: ellipsis;
|
|
25215
|
+
.ant-cascader-checkbox-group-item {
|
|
25216
|
+
margin-right: 6px;
|
|
24676
25217
|
}
|
|
24677
|
-
.ant-cascader-
|
|
24678
|
-
|
|
24679
|
-
top: 50%;
|
|
24680
|
-
right: 8px;
|
|
24681
|
-
z-index: 2;
|
|
24682
|
-
width: 12px;
|
|
24683
|
-
height: 12px;
|
|
24684
|
-
margin-top: -6px;
|
|
24685
|
-
color: rgba(0, 0, 0, 0.25);
|
|
24686
|
-
font-size: 12px;
|
|
24687
|
-
line-height: 12px;
|
|
24688
|
-
background: #fff;
|
|
24689
|
-
cursor: pointer;
|
|
24690
|
-
opacity: 0;
|
|
24691
|
-
transition: color 0.3s ease, opacity 0.15s ease;
|
|
25218
|
+
.ant-cascader-checkbox-group-item:last-child {
|
|
25219
|
+
margin-right: 0;
|
|
24692
25220
|
}
|
|
24693
|
-
.ant-cascader-
|
|
24694
|
-
|
|
25221
|
+
.ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item {
|
|
25222
|
+
margin-left: 0;
|
|
24695
25223
|
}
|
|
24696
|
-
.ant-cascader-
|
|
24697
|
-
|
|
25224
|
+
.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner {
|
|
25225
|
+
background-color: #fff;
|
|
25226
|
+
border-color: #d9d9d9;
|
|
24698
25227
|
}
|
|
24699
|
-
.ant-cascader-
|
|
24700
|
-
position: absolute;
|
|
25228
|
+
.ant-cascader-checkbox-indeterminate .ant-cascader-checkbox-inner::after {
|
|
24701
25229
|
top: 50%;
|
|
24702
|
-
|
|
24703
|
-
|
|
24704
|
-
|
|
24705
|
-
|
|
24706
|
-
|
|
24707
|
-
|
|
24708
|
-
|
|
24709
|
-
|
|
24710
|
-
}
|
|
24711
|
-
.ant-cascader-picker-label:hover + .ant-cascader-input:not(.ant-cascader-picker-disabled .ant-cascader-picker-label:hover + .ant-cascader-input) {
|
|
24712
|
-
border-color: #40a9ff;
|
|
24713
|
-
border-right-width: 1px !important;
|
|
25230
|
+
left: 50%;
|
|
25231
|
+
width: 6px;
|
|
25232
|
+
height: 6px;
|
|
25233
|
+
background-color: #1890ff;
|
|
25234
|
+
border: 0;
|
|
25235
|
+
transform: translate(-50%, -50%) scale(1);
|
|
25236
|
+
opacity: 1;
|
|
25237
|
+
content: ' ';
|
|
24714
25238
|
}
|
|
24715
|
-
.ant-
|
|
24716
|
-
|
|
24717
|
-
border-
|
|
25239
|
+
.ant-cascader-checkbox-indeterminate.ant-cascader-checkbox-disabled .ant-cascader-checkbox-inner::after {
|
|
25240
|
+
background-color: rgba(0, 0, 0, 0.25);
|
|
25241
|
+
border-color: rgba(0, 0, 0, 0.25);
|
|
24718
25242
|
}
|
|
24719
|
-
.ant-cascader-
|
|
24720
|
-
|
|
24721
|
-
right: 8px;
|
|
25243
|
+
.ant-cascader-checkbox-rtl {
|
|
25244
|
+
direction: rtl;
|
|
24722
25245
|
}
|
|
24723
|
-
.ant-cascader-
|
|
24724
|
-
|
|
24725
|
-
|
|
24726
|
-
font-size: 12px;
|
|
24727
|
-
white-space: nowrap;
|
|
24728
|
-
background: #fff;
|
|
24729
|
-
border-radius: 2px;
|
|
24730
|
-
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
25246
|
+
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item {
|
|
25247
|
+
margin-right: 0;
|
|
25248
|
+
margin-left: 6px;
|
|
24731
25249
|
}
|
|
24732
|
-
.ant-cascader-
|
|
24733
|
-
|
|
24734
|
-
margin: 0;
|
|
24735
|
-
list-style: none;
|
|
25250
|
+
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item:last-child {
|
|
25251
|
+
margin-left: 0 !important;
|
|
24736
25252
|
}
|
|
24737
|
-
.ant-cascader-
|
|
24738
|
-
|
|
24739
|
-
display: none;
|
|
25253
|
+
.ant-cascader-checkbox-group-rtl .ant-cascader-checkbox-group-item + .ant-cascader-checkbox-group-item {
|
|
25254
|
+
margin-left: 6px;
|
|
24740
25255
|
}
|
|
24741
|
-
.ant-cascader
|
|
24742
|
-
|
|
24743
|
-
animation-name: antSlideUpIn;
|
|
25256
|
+
.ant-cascader {
|
|
25257
|
+
width: 184px;
|
|
24744
25258
|
}
|
|
24745
|
-
.ant-cascader-
|
|
24746
|
-
|
|
24747
|
-
|
|
25259
|
+
.ant-cascader-checkbox {
|
|
25260
|
+
top: 0;
|
|
25261
|
+
margin-right: 4px;
|
|
24748
25262
|
}
|
|
24749
|
-
.ant-cascader-menus
|
|
24750
|
-
|
|
25263
|
+
.ant-cascader-menus {
|
|
25264
|
+
display: flex;
|
|
25265
|
+
flex-wrap: nowrap;
|
|
25266
|
+
align-items: flex-start;
|
|
24751
25267
|
}
|
|
24752
|
-
.ant-cascader-menus.ant-
|
|
24753
|
-
|
|
25268
|
+
.ant-cascader-menus.ant-cascader-menu-empty .ant-cascader-menu {
|
|
25269
|
+
width: 100%;
|
|
25270
|
+
height: auto;
|
|
24754
25271
|
}
|
|
24755
25272
|
.ant-cascader-menu {
|
|
24756
|
-
display: inline-block;
|
|
24757
25273
|
min-width: 111px;
|
|
24758
25274
|
height: 180px;
|
|
24759
25275
|
margin: 0;
|
|
25276
|
+
margin: -4px 0;
|
|
24760
25277
|
padding: 4px 0;
|
|
24761
25278
|
overflow: auto;
|
|
24762
25279
|
vertical-align: top;
|
|
@@ -24764,18 +25281,10 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24764
25281
|
border-right: 1px solid #f0f0f0;
|
|
24765
25282
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
|
24766
25283
|
}
|
|
24767
|
-
.ant-cascader-menu:first-child {
|
|
24768
|
-
border-radius: 2px 0 0 2px;
|
|
24769
|
-
}
|
|
24770
|
-
.ant-cascader-menu:last-child {
|
|
24771
|
-
margin-right: -1px;
|
|
24772
|
-
border-right-color: transparent;
|
|
24773
|
-
border-radius: 0 2px 2px 0;
|
|
24774
|
-
}
|
|
24775
|
-
.ant-cascader-menu:only-child {
|
|
24776
|
-
border-radius: 2px;
|
|
24777
|
-
}
|
|
24778
25284
|
.ant-cascader-menu-item {
|
|
25285
|
+
display: flex;
|
|
25286
|
+
flex-wrap: nowrap;
|
|
25287
|
+
align-items: center;
|
|
24779
25288
|
padding: 5px 8px;
|
|
24780
25289
|
overflow: hidden;
|
|
24781
25290
|
line-height: 18px;
|
|
@@ -24804,14 +25313,12 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24804
25313
|
font-weight: 600;
|
|
24805
25314
|
background-color: #e6f7ff;
|
|
24806
25315
|
}
|
|
24807
|
-
.ant-cascader-menu-item-
|
|
24808
|
-
|
|
24809
|
-
padding-right: 24px;
|
|
25316
|
+
.ant-cascader-menu-item-content {
|
|
25317
|
+
flex: auto;
|
|
24810
25318
|
}
|
|
24811
25319
|
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
|
|
24812
25320
|
.ant-cascader-menu-item-loading-icon {
|
|
24813
|
-
|
|
24814
|
-
right: 8px;
|
|
25321
|
+
margin-left: 0px;
|
|
24815
25322
|
color: rgba(0, 0, 0, 0.45);
|
|
24816
25323
|
font-size: 10px;
|
|
24817
25324
|
}
|
|
@@ -24819,62 +25326,18 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
24819
25326
|
.ant-cascader-menu-item-disabled.ant-cascader-menu-item-loading-icon {
|
|
24820
25327
|
color: rgba(0, 0, 0, 0.25);
|
|
24821
25328
|
}
|
|
24822
|
-
.ant-cascader-menu-item
|
|
25329
|
+
.ant-cascader-menu-item-keyword {
|
|
24823
25330
|
color: #ff4d4f;
|
|
24824
25331
|
}
|
|
24825
|
-
.ant-cascader-
|
|
24826
|
-
|
|
24827
|
-
|
|
24828
|
-
|
|
24829
|
-
}
|
|
24830
|
-
.ant-cascader-picker-rtl {
|
|
24831
|
-
direction: rtl;
|
|
24832
|
-
}
|
|
24833
|
-
.ant-cascader-picker-rtl .ant-cascader-picker-label {
|
|
24834
|
-
padding: 0 8px 0 20px;
|
|
24835
|
-
text-align: right;
|
|
24836
|
-
}
|
|
24837
|
-
.ant-cascader-picker-rtl .ant-cascader-picker-clear {
|
|
24838
|
-
right: auto;
|
|
24839
|
-
left: 8px;
|
|
24840
|
-
}
|
|
24841
|
-
.ant-cascader-picker-rtl .ant-cascader-picker-arrow {
|
|
24842
|
-
right: auto;
|
|
24843
|
-
left: 8px;
|
|
24844
|
-
}
|
|
24845
|
-
.ant-cascader-picker-rtl.ant-cascader-picker-small .ant-cascader-picker-clear,
|
|
24846
|
-
.ant-cascader-picker-rtl.ant-cascader-picker-small .ant-cascader-picker-arrow {
|
|
24847
|
-
right: auto;
|
|
24848
|
-
left: 8px;
|
|
24849
|
-
}
|
|
24850
|
-
.ant-cascader-menu-rtl .ant-cascader-menu {
|
|
24851
|
-
direction: rtl;
|
|
24852
|
-
border-right: none;
|
|
24853
|
-
border-left: 1px solid #f0f0f0;
|
|
24854
|
-
}
|
|
24855
|
-
.ant-cascader-menu-rtl .ant-cascader-menu:first-child {
|
|
24856
|
-
border-radius: 0 2px 2px 0;
|
|
25332
|
+
.ant-cascader-rtl .ant-cascader-menu-item-expand-icon,
|
|
25333
|
+
.ant-cascader-rtl .ant-cascader-menu-item-loading-icon {
|
|
25334
|
+
margin-right: 0px;
|
|
25335
|
+
margin-left: 0;
|
|
24857
25336
|
}
|
|
24858
|
-
.ant-cascader-
|
|
25337
|
+
.ant-cascader-rtl .ant-cascader-checkbox {
|
|
25338
|
+
top: 0;
|
|
24859
25339
|
margin-right: 0;
|
|
24860
|
-
margin-left:
|
|
24861
|
-
border-left-color: transparent;
|
|
24862
|
-
border-radius: 2px 0 0 2px;
|
|
24863
|
-
}
|
|
24864
|
-
.ant-cascader-menu-rtl .ant-cascader-menu:only-child {
|
|
24865
|
-
border-radius: 2px;
|
|
24866
|
-
}
|
|
24867
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-expand {
|
|
24868
|
-
padding-right: 8px;
|
|
24869
|
-
padding-left: 24px;
|
|
24870
|
-
}
|
|
24871
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
|
|
24872
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-loading-icon {
|
|
24873
|
-
right: auto;
|
|
24874
|
-
left: 8px;
|
|
24875
|
-
}
|
|
24876
|
-
.ant-cascader-menu-rtl .ant-cascader-menu-item-loading-icon {
|
|
24877
|
-
transform: scaleY(-1);
|
|
25340
|
+
margin-left: 4px;
|
|
24878
25341
|
}
|
|
24879
25342
|
.ant-cascader-menus {
|
|
24880
25343
|
position: relative;
|
|
@@ -24910,10 +25373,13 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
24910
25373
|
display: flex;
|
|
24911
25374
|
flex-direction: column;
|
|
24912
25375
|
}
|
|
24913
|
-
|
|
24914
|
-
|
|
24915
|
-
|
|
24916
|
-
|
|
25376
|
+
@keyframes ant-tree-node-fx-do-not-use {
|
|
25377
|
+
0% {
|
|
25378
|
+
opacity: 0;
|
|
25379
|
+
}
|
|
25380
|
+
100% {
|
|
25381
|
+
opacity: 1;
|
|
25382
|
+
}
|
|
24917
25383
|
}
|
|
24918
25384
|
.ant-tree.ant-tree-directory .ant-tree-treenode {
|
|
24919
25385
|
position: relative;
|
|
@@ -25015,7 +25481,7 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25015
25481
|
.ant-tree-checkbox-inner::after {
|
|
25016
25482
|
position: absolute;
|
|
25017
25483
|
top: 50%;
|
|
25018
|
-
left:
|
|
25484
|
+
left: 21.5%;
|
|
25019
25485
|
display: table;
|
|
25020
25486
|
width: 5px;
|
|
25021
25487
|
height: 8px;
|
|
@@ -25191,6 +25657,23 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25191
25657
|
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-node-content-wrapper {
|
|
25192
25658
|
flex: auto;
|
|
25193
25659
|
}
|
|
25660
|
+
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging {
|
|
25661
|
+
position: relative;
|
|
25662
|
+
}
|
|
25663
|
+
.ant-tree.ant-tree-block-node .ant-tree-list-holder-inner .ant-tree-treenode.dragging::after {
|
|
25664
|
+
position: absolute;
|
|
25665
|
+
top: 0;
|
|
25666
|
+
right: 0;
|
|
25667
|
+
bottom: 2px;
|
|
25668
|
+
left: 0;
|
|
25669
|
+
border: 1px solid #1890ff;
|
|
25670
|
+
opacity: 0;
|
|
25671
|
+
animation: ant-tree-node-fx-do-not-use 0.3s;
|
|
25672
|
+
animation-play-state: running;
|
|
25673
|
+
animation-fill-mode: forwards;
|
|
25674
|
+
content: '';
|
|
25675
|
+
pointer-events: none;
|
|
25676
|
+
}
|
|
25194
25677
|
.ant-tree .ant-tree-treenode {
|
|
25195
25678
|
display: flex;
|
|
25196
25679
|
align-items: flex-start;
|
|
@@ -25220,6 +25703,16 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25220
25703
|
display: inline-block;
|
|
25221
25704
|
width: 20px;
|
|
25222
25705
|
}
|
|
25706
|
+
.ant-tree-draggable-icon {
|
|
25707
|
+
width: 20px;
|
|
25708
|
+
line-height: 20px;
|
|
25709
|
+
text-align: center;
|
|
25710
|
+
opacity: 0.2;
|
|
25711
|
+
transition: opacity 0.3s;
|
|
25712
|
+
}
|
|
25713
|
+
.ant-tree-treenode:hover .ant-tree-draggable-icon {
|
|
25714
|
+
opacity: 0.45;
|
|
25715
|
+
}
|
|
25223
25716
|
.ant-tree-switcher {
|
|
25224
25717
|
position: relative;
|
|
25225
25718
|
flex: none;
|
|
@@ -25260,16 +25753,16 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25260
25753
|
.ant-tree-switcher-leaf-line::before {
|
|
25261
25754
|
position: absolute;
|
|
25262
25755
|
top: 0;
|
|
25756
|
+
right: 12px;
|
|
25263
25757
|
bottom: -2px;
|
|
25264
25758
|
margin-left: -1px;
|
|
25265
|
-
border-
|
|
25759
|
+
border-right: 1px solid #d9d9d9;
|
|
25266
25760
|
content: ' ';
|
|
25267
25761
|
}
|
|
25268
25762
|
.ant-tree-switcher-leaf-line::after {
|
|
25269
25763
|
position: absolute;
|
|
25270
25764
|
width: 6px;
|
|
25271
25765
|
height: 10px;
|
|
25272
|
-
margin-left: -1px;
|
|
25273
25766
|
border-bottom: 1px solid #d9d9d9;
|
|
25274
25767
|
content: ' ';
|
|
25275
25768
|
}
|
|
@@ -25310,11 +25803,11 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25310
25803
|
.ant-tree-unselectable .ant-tree-node-content-wrapper:hover {
|
|
25311
25804
|
background-color: transparent;
|
|
25312
25805
|
}
|
|
25313
|
-
.ant-tree-node-content-wrapper
|
|
25806
|
+
.ant-tree-node-content-wrapper {
|
|
25314
25807
|
line-height: 20px;
|
|
25315
25808
|
user-select: none;
|
|
25316
25809
|
}
|
|
25317
|
-
.ant-tree-node-content-wrapper
|
|
25810
|
+
.ant-tree-node-content-wrapper .ant-tree-drop-indicator {
|
|
25318
25811
|
position: absolute;
|
|
25319
25812
|
z-index: 1;
|
|
25320
25813
|
height: 2px;
|
|
@@ -25322,7 +25815,7 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25322
25815
|
border-radius: 1px;
|
|
25323
25816
|
pointer-events: none;
|
|
25324
25817
|
}
|
|
25325
|
-
.ant-tree-node-content-wrapper
|
|
25818
|
+
.ant-tree-node-content-wrapper .ant-tree-drop-indicator::after {
|
|
25326
25819
|
position: absolute;
|
|
25327
25820
|
top: -3px;
|
|
25328
25821
|
left: -6px;
|
|
@@ -25355,7 +25848,12 @@ nz-tree-view .ant-tree-list-holder-inner {
|
|
|
25355
25848
|
background: #fff;
|
|
25356
25849
|
}
|
|
25357
25850
|
.ant-tree-show-line .ant-tree-switcher-line-icon {
|
|
25358
|
-
vertical-align: -0.
|
|
25851
|
+
vertical-align: -0.15em;
|
|
25852
|
+
}
|
|
25853
|
+
.ant-tree .ant-tree-treenode-leaf-last .ant-tree-switcher-leaf-line::before {
|
|
25854
|
+
top: auto !important;
|
|
25855
|
+
bottom: auto !important;
|
|
25856
|
+
height: 10px !important;
|
|
25359
25857
|
}
|
|
25360
25858
|
.ant-tree-rtl {
|
|
25361
25859
|
direction: rtl;
|
|
@@ -25451,7 +25949,7 @@ nz-tree {
|
|
|
25451
25949
|
.ant-select-tree-checkbox-inner::after {
|
|
25452
25950
|
position: absolute;
|
|
25453
25951
|
top: 50%;
|
|
25454
|
-
left:
|
|
25952
|
+
left: 21.5%;
|
|
25455
25953
|
display: table;
|
|
25456
25954
|
width: 5px;
|
|
25457
25955
|
height: 8px;
|
|
@@ -25602,7 +26100,7 @@ nz-tree {
|
|
|
25602
26100
|
margin-left: 6px;
|
|
25603
26101
|
}
|
|
25604
26102
|
.ant-tree-select-dropdown {
|
|
25605
|
-
padding: 4px 2px
|
|
26103
|
+
padding: 4px 2px;
|
|
25606
26104
|
}
|
|
25607
26105
|
.ant-tree-select-dropdown-rtl {
|
|
25608
26106
|
direction: rtl;
|
|
@@ -25613,9 +26111,6 @@ nz-tree {
|
|
|
25613
26111
|
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner {
|
|
25614
26112
|
align-items: stretch;
|
|
25615
26113
|
}
|
|
25616
|
-
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode {
|
|
25617
|
-
padding-bottom: 4px;
|
|
25618
|
-
}
|
|
25619
26114
|
.ant-tree-select-dropdown .ant-select-tree-list-holder-inner .ant-select-tree-treenode .ant-select-tree-node-content-wrapper {
|
|
25620
26115
|
flex: auto;
|
|
25621
26116
|
}
|
|
@@ -25645,6 +26140,23 @@ nz-tree {
|
|
|
25645
26140
|
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-node-content-wrapper {
|
|
25646
26141
|
flex: auto;
|
|
25647
26142
|
}
|
|
26143
|
+
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging {
|
|
26144
|
+
position: relative;
|
|
26145
|
+
}
|
|
26146
|
+
.ant-select-tree.ant-select-tree-block-node .ant-select-tree-list-holder-inner .ant-select-tree-treenode.dragging::after {
|
|
26147
|
+
position: absolute;
|
|
26148
|
+
top: 0;
|
|
26149
|
+
right: 0;
|
|
26150
|
+
bottom: 2px;
|
|
26151
|
+
left: 0;
|
|
26152
|
+
border: 1px solid #1890ff;
|
|
26153
|
+
opacity: 0;
|
|
26154
|
+
animation: ant-tree-node-fx-do-not-use 0.3s;
|
|
26155
|
+
animation-play-state: running;
|
|
26156
|
+
animation-fill-mode: forwards;
|
|
26157
|
+
content: '';
|
|
26158
|
+
pointer-events: none;
|
|
26159
|
+
}
|
|
25648
26160
|
.ant-select-tree .ant-select-tree-treenode {
|
|
25649
26161
|
display: flex;
|
|
25650
26162
|
align-items: flex-start;
|
|
@@ -25674,6 +26186,16 @@ nz-tree {
|
|
|
25674
26186
|
display: inline-block;
|
|
25675
26187
|
width: 20px;
|
|
25676
26188
|
}
|
|
26189
|
+
.ant-select-tree-draggable-icon {
|
|
26190
|
+
width: 20px;
|
|
26191
|
+
line-height: 20px;
|
|
26192
|
+
text-align: center;
|
|
26193
|
+
opacity: 0.2;
|
|
26194
|
+
transition: opacity 0.3s;
|
|
26195
|
+
}
|
|
26196
|
+
.ant-select-tree-treenode:hover .ant-select-tree-draggable-icon {
|
|
26197
|
+
opacity: 0.45;
|
|
26198
|
+
}
|
|
25677
26199
|
.ant-select-tree-switcher {
|
|
25678
26200
|
position: relative;
|
|
25679
26201
|
flex: none;
|
|
@@ -25714,16 +26236,16 @@ nz-tree {
|
|
|
25714
26236
|
.ant-select-tree-switcher-leaf-line::before {
|
|
25715
26237
|
position: absolute;
|
|
25716
26238
|
top: 0;
|
|
26239
|
+
right: 12px;
|
|
25717
26240
|
bottom: -2px;
|
|
25718
26241
|
margin-left: -1px;
|
|
25719
|
-
border-
|
|
26242
|
+
border-right: 1px solid #d9d9d9;
|
|
25720
26243
|
content: ' ';
|
|
25721
26244
|
}
|
|
25722
26245
|
.ant-select-tree-switcher-leaf-line::after {
|
|
25723
26246
|
position: absolute;
|
|
25724
26247
|
width: 6px;
|
|
25725
26248
|
height: 10px;
|
|
25726
|
-
margin-left: -1px;
|
|
25727
26249
|
border-bottom: 1px solid #d9d9d9;
|
|
25728
26250
|
content: ' ';
|
|
25729
26251
|
}
|
|
@@ -25764,11 +26286,11 @@ nz-tree {
|
|
|
25764
26286
|
.ant-select-tree-unselectable .ant-select-tree-node-content-wrapper:hover {
|
|
25765
26287
|
background-color: transparent;
|
|
25766
26288
|
}
|
|
25767
|
-
.ant-select-tree-node-content-wrapper
|
|
26289
|
+
.ant-select-tree-node-content-wrapper {
|
|
25768
26290
|
line-height: 20px;
|
|
25769
26291
|
user-select: none;
|
|
25770
26292
|
}
|
|
25771
|
-
.ant-select-tree-node-content-wrapper
|
|
26293
|
+
.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator {
|
|
25772
26294
|
position: absolute;
|
|
25773
26295
|
z-index: 1;
|
|
25774
26296
|
height: 2px;
|
|
@@ -25776,7 +26298,7 @@ nz-tree {
|
|
|
25776
26298
|
border-radius: 1px;
|
|
25777
26299
|
pointer-events: none;
|
|
25778
26300
|
}
|
|
25779
|
-
.ant-select-tree-node-content-wrapper
|
|
26301
|
+
.ant-select-tree-node-content-wrapper .ant-tree-drop-indicator::after {
|
|
25780
26302
|
position: absolute;
|
|
25781
26303
|
top: -3px;
|
|
25782
26304
|
left: -6px;
|
|
@@ -25809,7 +26331,12 @@ nz-tree {
|
|
|
25809
26331
|
background: #fff;
|
|
25810
26332
|
}
|
|
25811
26333
|
.ant-select-tree-show-line .ant-select-tree-switcher-line-icon {
|
|
25812
|
-
vertical-align: -0.
|
|
26334
|
+
vertical-align: -0.15em;
|
|
26335
|
+
}
|
|
26336
|
+
.ant-select-tree .ant-select-tree-treenode-leaf-last .ant-select-tree-switcher-leaf-line::before {
|
|
26337
|
+
top: auto !important;
|
|
26338
|
+
bottom: auto !important;
|
|
26339
|
+
height: 10px !important;
|
|
25813
26340
|
}
|
|
25814
26341
|
.ant-tree-select-dropdown-rtl .ant-select-tree .ant-select-tree-switcher_close .ant-select-tree-switcher-icon svg {
|
|
25815
26342
|
transform: rotate(90deg);
|
|
@@ -26108,7 +26635,7 @@ nz-space-item {
|
|
|
26108
26635
|
}
|
|
26109
26636
|
.ant-image-img-placeholder {
|
|
26110
26637
|
background-color: #f5f5f5;
|
|
26111
|
-
background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=);
|
|
26638
|
+
background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=');
|
|
26112
26639
|
background-repeat: no-repeat;
|
|
26113
26640
|
background-position: center center;
|
|
26114
26641
|
background-size: 30%;
|
|
@@ -26128,6 +26655,12 @@ nz-space-item {
|
|
|
26128
26655
|
opacity: 0;
|
|
26129
26656
|
transition: opacity 0.3s;
|
|
26130
26657
|
}
|
|
26658
|
+
.ant-image-mask-info {
|
|
26659
|
+
padding: 0 0px;
|
|
26660
|
+
overflow: hidden;
|
|
26661
|
+
white-space: nowrap;
|
|
26662
|
+
text-overflow: ellipsis;
|
|
26663
|
+
}
|
|
26131
26664
|
.ant-image-mask-info .anticon {
|
|
26132
26665
|
margin-inline-end: 0px;
|
|
26133
26666
|
}
|
|
@@ -30359,14 +30892,8 @@ body {
|
|
|
30359
30892
|
overflow-x: hidden;
|
|
30360
30893
|
overflow-y: scroll;
|
|
30361
30894
|
-webkit-overflow-scrolling: touch;
|
|
30362
|
-
-
|
|
30363
|
-
-
|
|
30364
|
-
-ms-content-zooming: zoom;
|
|
30365
|
-
-ms-scroll-rails: none;
|
|
30366
|
-
-ms-content-zoom-limit-min: 100%;
|
|
30367
|
-
-ms-content-zoom-limit-max: 500%;
|
|
30368
|
-
-ms-scroll-snap-type: proximity;
|
|
30369
|
-
-ms-scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
|
|
30895
|
+
scroll-snap-type: proximity;
|
|
30896
|
+
scroll-snap-points-x: snaplist(100%, 200%, 300%, 400%, 500%);
|
|
30370
30897
|
scrollbar-width: none;
|
|
30371
30898
|
}
|
|
30372
30899
|
.alain-default__aside-inner::-webkit-scrollbar {
|
|
@@ -30374,7 +30901,7 @@ body {
|
|
|
30374
30901
|
height: 0;
|
|
30375
30902
|
}
|
|
30376
30903
|
.alain-default__aside-inner::-webkit-scrollbar-track {
|
|
30377
|
-
|
|
30904
|
+
box-shadow: inset 0 0 0 transparent;
|
|
30378
30905
|
}
|
|
30379
30906
|
.alain-default__aside-inner::-webkit-scrollbar-thumb {
|
|
30380
30907
|
background-color: transparent;
|
|
@@ -31243,6 +31770,7 @@ ellipsis {
|
|
|
31243
31770
|
}
|
|
31244
31771
|
.ellipsis__line-clamp {
|
|
31245
31772
|
position: relative;
|
|
31773
|
+
/* stylelint-disable-next-line value-no-vendor-prefix */
|
|
31246
31774
|
display: -webkit-box;
|
|
31247
31775
|
overflow: hidden;
|
|
31248
31776
|
text-overflow: ellipsis;
|