@delon/theme 17.1.0 → 17.3.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/README.md +1 -1
- package/compact.css +182 -110
- package/compact.min.css +1 -1
- package/dark.css +182 -110
- package/dark.min.css +1 -1
- package/default.css +182 -110
- package/default.min.css +1 -1
- package/esm2022/layout-default/layout-header-item-trigger.directive.mjs +3 -3
- package/esm2022/layout-default/layout-header-item.component.mjs +3 -3
- package/esm2022/layout-default/layout-header.component.mjs +3 -3
- package/esm2022/layout-default/layout-nav.component.mjs +3 -3
- package/esm2022/layout-default/layout-top-menu-item.mjs +3 -3
- package/esm2022/layout-default/layout.component.mjs +3 -3
- package/esm2022/layout-default/layout.module.mjs +4 -4
- package/esm2022/layout-default/layout.service.mjs +3 -3
- package/esm2022/setting-drawer/setting-drawer-item.component.mjs +3 -3
- package/esm2022/setting-drawer/setting-drawer.component.mjs +3 -3
- package/esm2022/setting-drawer/setting-drawer.module.mjs +4 -4
- package/esm2022/src/locale/locale.module.mjs +4 -4
- package/esm2022/src/locale/locale.service.mjs +3 -3
- package/esm2022/src/pipes/date/date.pipe.mjs +3 -3
- package/esm2022/src/pipes/keys/keys.pipe.mjs +3 -3
- package/esm2022/src/pipes/safe/html.pipe.mjs +3 -3
- package/esm2022/src/pipes/safe/url.pipe.mjs +3 -3
- package/esm2022/src/pipes/yn/yn.pipe.mjs +3 -3
- package/esm2022/src/services/drawer/drawer.helper.mjs +3 -3
- package/esm2022/src/services/http/http.client.mjs +3 -3
- package/esm2022/src/services/http/http.decorator.mjs +3 -3
- package/esm2022/src/services/i18n/i18n-url.guard.mjs +3 -3
- package/esm2022/src/services/i18n/i18n.mjs +6 -6
- package/esm2022/src/services/i18n/i18n.pipe.mjs +3 -3
- package/esm2022/src/services/menu/menu.service.mjs +3 -3
- package/esm2022/src/services/modal/modal.helper.mjs +3 -3
- package/esm2022/src/services/responsive/responsive.mjs +3 -3
- package/esm2022/src/services/rtl/rtl.service.mjs +3 -3
- package/esm2022/src/services/settings/settings.service.mjs +3 -3
- package/esm2022/src/services/title/title.service.mjs +3 -3
- package/esm2022/src/theme.module.mjs +4 -4
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/theme-btn/theme-btn.component.mjs +3 -3
- package/esm2022/theme-btn/theme-btn.module.mjs +4 -4
- package/fesm2022/layout-default.mjs +25 -25
- package/fesm2022/setting-drawer.mjs +11 -11
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme.mjs +67 -67
- package/fesm2022/theme.mjs.map +1 -1
- package/package.json +6 -4
- package/system/theme-default.less +1 -1
- package/system/utils/_scrollbar.less +6 -4
package/dark.css
CHANGED
|
@@ -1598,11 +1598,11 @@ html {
|
|
|
1598
1598
|
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
1599
1599
|
.cdk-overlay-container,
|
|
1600
1600
|
.cdk-global-overlay-wrapper {
|
|
1601
|
-
pointer-events: none;
|
|
1602
1601
|
top: 0;
|
|
1603
1602
|
left: 0;
|
|
1604
|
-
height: 100%;
|
|
1605
1603
|
width: 100%;
|
|
1604
|
+
height: 100%;
|
|
1605
|
+
pointer-events: none;
|
|
1606
1606
|
}
|
|
1607
1607
|
.cdk-overlay-container {
|
|
1608
1608
|
position: fixed;
|
|
@@ -1612,30 +1612,30 @@ html {
|
|
|
1612
1612
|
display: none;
|
|
1613
1613
|
}
|
|
1614
1614
|
.cdk-global-overlay-wrapper {
|
|
1615
|
-
display: flex;
|
|
1616
1615
|
position: absolute;
|
|
1617
1616
|
z-index: 1000;
|
|
1617
|
+
display: flex;
|
|
1618
1618
|
}
|
|
1619
1619
|
.cdk-overlay-pane {
|
|
1620
1620
|
position: absolute;
|
|
1621
|
-
pointer-events: auto;
|
|
1622
|
-
box-sizing: border-box;
|
|
1623
1621
|
z-index: 1000;
|
|
1624
1622
|
display: flex;
|
|
1623
|
+
box-sizing: border-box;
|
|
1625
1624
|
max-width: 100%;
|
|
1626
1625
|
max-height: 100%;
|
|
1626
|
+
pointer-events: auto;
|
|
1627
1627
|
}
|
|
1628
1628
|
.cdk-overlay-backdrop {
|
|
1629
1629
|
position: absolute;
|
|
1630
1630
|
top: 0;
|
|
1631
|
+
right: 0;
|
|
1631
1632
|
bottom: 0;
|
|
1632
1633
|
left: 0;
|
|
1633
|
-
right: 0;
|
|
1634
1634
|
z-index: 1000;
|
|
1635
|
+
opacity: 0;
|
|
1636
|
+
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
1635
1637
|
pointer-events: auto;
|
|
1636
1638
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
1637
|
-
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
1638
|
-
opacity: 0;
|
|
1639
1639
|
}
|
|
1640
1640
|
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
|
|
1641
1641
|
opacity: 1;
|
|
@@ -1647,13 +1647,13 @@ html {
|
|
|
1647
1647
|
background: rgba(0, 0, 0, 0.32);
|
|
1648
1648
|
}
|
|
1649
1649
|
.cdk-overlay-transparent-backdrop {
|
|
1650
|
-
transition: visibility 1ms linear, opacity 1ms linear;
|
|
1651
1650
|
visibility: hidden;
|
|
1652
1651
|
opacity: 1;
|
|
1652
|
+
transition: visibility 1ms linear, opacity 1ms linear;
|
|
1653
1653
|
}
|
|
1654
1654
|
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
1655
|
-
opacity: 0;
|
|
1656
1655
|
visibility: visible;
|
|
1656
|
+
opacity: 0;
|
|
1657
1657
|
}
|
|
1658
1658
|
.cdk-overlay-backdrop-noop-animation {
|
|
1659
1659
|
transition: none;
|
|
@@ -1672,37 +1672,38 @@ html {
|
|
|
1672
1672
|
overflow-y: scroll;
|
|
1673
1673
|
}
|
|
1674
1674
|
.cdk-visually-hidden {
|
|
1675
|
-
|
|
1676
|
-
|
|
1675
|
+
position: absolute;
|
|
1676
|
+
width: 1px;
|
|
1677
1677
|
height: 1px;
|
|
1678
1678
|
margin: -1px;
|
|
1679
|
-
overflow: hidden;
|
|
1680
1679
|
padding: 0;
|
|
1681
|
-
|
|
1682
|
-
|
|
1680
|
+
overflow: hidden;
|
|
1681
|
+
border: 0;
|
|
1683
1682
|
outline: 0;
|
|
1683
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1684
1684
|
-webkit-appearance: none;
|
|
1685
1685
|
-moz-appearance: none;
|
|
1686
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
1686
1687
|
}
|
|
1687
1688
|
.nz-overlay-transparent-backdrop,
|
|
1688
1689
|
.nz-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
1689
1690
|
opacity: 0;
|
|
1690
1691
|
}
|
|
1691
1692
|
.nz-animate-disabled.ant-scroll-number-only {
|
|
1692
|
-
animation: none;
|
|
1693
1693
|
transition: none;
|
|
1694
|
+
animation: none;
|
|
1694
1695
|
}
|
|
1695
1696
|
.nz-animate-disabled.ant-drawer.ant-drawer-open .ant-drawer-mask {
|
|
1696
|
-
animation: none;
|
|
1697
1697
|
transition: none;
|
|
1698
|
+
animation: none;
|
|
1698
1699
|
}
|
|
1699
1700
|
.nz-animate-disabled.ant-drawer > * {
|
|
1700
1701
|
transition: none;
|
|
1701
1702
|
}
|
|
1702
1703
|
.nz-animate-disabled .ant-modal-mask,
|
|
1703
1704
|
.nz-animate-disabled .ant-modal {
|
|
1704
|
-
animation: none;
|
|
1705
1705
|
transition: none;
|
|
1706
|
+
animation: none;
|
|
1706
1707
|
}
|
|
1707
1708
|
.nz-animate-disabled .ant-modal-mask.zoom-enter,
|
|
1708
1709
|
.nz-animate-disabled .ant-modal.zoom-enter,
|
|
@@ -1712,8 +1713,8 @@ html {
|
|
|
1712
1713
|
.nz-animate-disabled .ant-modal.zoom-enter-active,
|
|
1713
1714
|
.nz-animate-disabled .ant-modal-mask.zoom-leave-active,
|
|
1714
1715
|
.nz-animate-disabled .ant-modal.zoom-leave-active {
|
|
1715
|
-
animation: none;
|
|
1716
1716
|
transition: none;
|
|
1717
|
+
animation: none;
|
|
1717
1718
|
}
|
|
1718
1719
|
.nz-animate-disabled.ant-menu {
|
|
1719
1720
|
transition: none;
|
|
@@ -1927,6 +1928,31 @@ nz-alert {
|
|
|
1927
1928
|
overflow: auto;
|
|
1928
1929
|
background-color: transparent;
|
|
1929
1930
|
}
|
|
1931
|
+
.ant-anchor-wrapper-horizontal {
|
|
1932
|
+
margin-left: unset;
|
|
1933
|
+
padding-left: unset;
|
|
1934
|
+
margin-bottom: -4px;
|
|
1935
|
+
padding-bottom: 4px;
|
|
1936
|
+
}
|
|
1937
|
+
.ant-anchor-wrapper-horizontal .ant-anchor {
|
|
1938
|
+
display: flex;
|
|
1939
|
+
}
|
|
1940
|
+
.ant-anchor-wrapper-horizontal .ant-anchor-ink {
|
|
1941
|
+
top: unset;
|
|
1942
|
+
bottom: 0;
|
|
1943
|
+
width: 100%;
|
|
1944
|
+
height: unset;
|
|
1945
|
+
}
|
|
1946
|
+
.ant-anchor-wrapper-horizontal .ant-anchor-ink:before {
|
|
1947
|
+
width: 100%;
|
|
1948
|
+
height: 2px;
|
|
1949
|
+
}
|
|
1950
|
+
.ant-anchor-wrapper-horizontal .ant-anchor-ink-ball {
|
|
1951
|
+
transform: translate(-50%, -50%);
|
|
1952
|
+
}
|
|
1953
|
+
.ant-anchor-wrapper-horizontal .ant-anchor-link:first-of-type {
|
|
1954
|
+
padding-inline: 0;
|
|
1955
|
+
}
|
|
1930
1956
|
.ant-anchor-ink {
|
|
1931
1957
|
position: absolute;
|
|
1932
1958
|
top: 0;
|
|
@@ -5292,11 +5318,11 @@ nz-card-loading {
|
|
|
5292
5318
|
flex-direction: column;
|
|
5293
5319
|
}
|
|
5294
5320
|
nz-carousel {
|
|
5295
|
-
display: block;
|
|
5296
5321
|
position: relative;
|
|
5297
|
-
|
|
5322
|
+
display: block;
|
|
5298
5323
|
width: 100%;
|
|
5299
5324
|
height: 100%;
|
|
5325
|
+
overflow: hidden;
|
|
5300
5326
|
}
|
|
5301
5327
|
.slick-dots {
|
|
5302
5328
|
display: block;
|
|
@@ -5995,12 +6021,14 @@ textarea.ant-picker-input > input {
|
|
|
5995
6021
|
direction: rtl;
|
|
5996
6022
|
}
|
|
5997
6023
|
.ant-picker-input > input-stepperless[type='number'] {
|
|
6024
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
5998
6025
|
-moz-appearance: textfield;
|
|
5999
6026
|
}
|
|
6000
6027
|
.ant-picker-input > input-stepperless[type='number']::-webkit-inner-spin-button,
|
|
6001
6028
|
.ant-picker-input > input-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
6002
|
-
-webkit-appearance: none;
|
|
6003
6029
|
margin: 0;
|
|
6030
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
6031
|
+
-webkit-appearance: none;
|
|
6004
6032
|
}
|
|
6005
6033
|
.ant-picker-input > input:focus {
|
|
6006
6034
|
box-shadow: none;
|
|
@@ -6885,8 +6913,8 @@ _:-ms-fullscreen .ant-picker-range-wrapper .ant-picker-year-panel .ant-picker-ce
|
|
|
6885
6913
|
direction: ltr;
|
|
6886
6914
|
}
|
|
6887
6915
|
.ant-picker-inline {
|
|
6888
|
-
border: none;
|
|
6889
6916
|
padding: 0;
|
|
6917
|
+
border: none;
|
|
6890
6918
|
}
|
|
6891
6919
|
.ant-picker-inline .ant-picker-range-arrow {
|
|
6892
6920
|
display: none !important;
|
|
@@ -7963,14 +7991,14 @@ nz-descriptions {
|
|
|
7963
7991
|
margin-left: 0;
|
|
7964
7992
|
}
|
|
7965
7993
|
.ant-dropdown-menu > ul {
|
|
7966
|
-
list-style: inherit;
|
|
7967
7994
|
margin: 0;
|
|
7968
7995
|
padding: 0;
|
|
7996
|
+
list-style: inherit;
|
|
7969
7997
|
}
|
|
7970
7998
|
.ant-dropdown {
|
|
7999
|
+
position: relative;
|
|
7971
8000
|
top: 0;
|
|
7972
8001
|
left: 0;
|
|
7973
|
-
position: relative;
|
|
7974
8002
|
width: 100%;
|
|
7975
8003
|
margin-top: 6px;
|
|
7976
8004
|
margin-bottom: 6px;
|
|
@@ -13417,12 +13445,14 @@ textarea.ant-input-affix-wrapper {
|
|
|
13417
13445
|
direction: rtl;
|
|
13418
13446
|
}
|
|
13419
13447
|
.ant-input-affix-wrapper-stepperless[type='number'] {
|
|
13448
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13420
13449
|
-moz-appearance: textfield;
|
|
13421
13450
|
}
|
|
13422
13451
|
.ant-input-affix-wrapper-stepperless[type='number']::-webkit-inner-spin-button,
|
|
13423
13452
|
.ant-input-affix-wrapper-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
13424
|
-
-webkit-appearance: none;
|
|
13425
13453
|
margin: 0;
|
|
13454
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13455
|
+
-webkit-appearance: none;
|
|
13426
13456
|
}
|
|
13427
13457
|
.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
|
|
13428
13458
|
border-color: #165996;
|
|
@@ -13705,12 +13735,14 @@ textarea.ant-input {
|
|
|
13705
13735
|
direction: rtl;
|
|
13706
13736
|
}
|
|
13707
13737
|
.ant-input-stepperless[type='number'] {
|
|
13738
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13708
13739
|
-moz-appearance: textfield;
|
|
13709
13740
|
}
|
|
13710
13741
|
.ant-input-stepperless[type='number']::-webkit-inner-spin-button,
|
|
13711
13742
|
.ant-input-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
13712
|
-
-webkit-appearance: none;
|
|
13713
13743
|
margin: 0;
|
|
13744
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13745
|
+
-webkit-appearance: none;
|
|
13714
13746
|
}
|
|
13715
13747
|
.ant-input-group {
|
|
13716
13748
|
box-sizing: border-box;
|
|
@@ -14205,8 +14237,8 @@ textarea.ant-input {
|
|
|
14205
14237
|
}
|
|
14206
14238
|
textarea.nz-textarea-autosize-measuring {
|
|
14207
14239
|
height: auto !important;
|
|
14208
|
-
overflow: hidden !important;
|
|
14209
14240
|
padding: 2px 0 !important;
|
|
14241
|
+
overflow: hidden !important;
|
|
14210
14242
|
}
|
|
14211
14243
|
.ant-input-search-rtl.ant-input-search-enter-button + .ant-input-group-addon .ant-input-search-button.ant-btn-icon-only,
|
|
14212
14244
|
.ant-input-search-rtl.ant-input-search-enter-button input + .ant-input-group-addon .ant-input-search-button.ant-btn-icon-only {
|
|
@@ -14226,20 +14258,18 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
14226
14258
|
.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-suffix {
|
|
14227
14259
|
margin-left: 0;
|
|
14228
14260
|
}
|
|
14229
|
-
nz-form-item-feedback-icon.ant-input-suffix {
|
|
14230
|
-
display: flex;
|
|
14231
|
-
flex: none;
|
|
14232
|
-
align-items: center;
|
|
14233
|
-
pointer-events: none;
|
|
14234
|
-
}
|
|
14235
14261
|
nz-form-item-feedback-icon.ant-input-suffix {
|
|
14236
14262
|
position: absolute;
|
|
14237
14263
|
top: 0;
|
|
14238
14264
|
right: 0;
|
|
14239
14265
|
z-index: 1;
|
|
14266
|
+
display: flex;
|
|
14267
|
+
flex: none;
|
|
14268
|
+
align-items: center;
|
|
14240
14269
|
height: 100%;
|
|
14241
14270
|
margin-right: 12px;
|
|
14242
14271
|
margin-left: 4px;
|
|
14272
|
+
pointer-events: none;
|
|
14243
14273
|
}
|
|
14244
14274
|
.ant-input-status-error.ant-input-has-feedback,
|
|
14245
14275
|
.ant-input-status-warning.ant-input-has-feedback,
|
|
@@ -14248,8 +14278,8 @@ nz-form-item-feedback-icon.ant-input-suffix {
|
|
|
14248
14278
|
padding-right: 28px;
|
|
14249
14279
|
}
|
|
14250
14280
|
.ant-input-textarea-show-count {
|
|
14251
|
-
display: block;
|
|
14252
14281
|
position: relative;
|
|
14282
|
+
display: block;
|
|
14253
14283
|
}
|
|
14254
14284
|
.ant-input-number-affix-wrapper {
|
|
14255
14285
|
display: inline-block;
|
|
@@ -14367,12 +14397,14 @@ textarea.ant-input-number-affix-wrapper {
|
|
|
14367
14397
|
direction: rtl;
|
|
14368
14398
|
}
|
|
14369
14399
|
.ant-input-number-affix-wrapper-stepperless[type='number'] {
|
|
14400
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14370
14401
|
-moz-appearance: textfield;
|
|
14371
14402
|
}
|
|
14372
14403
|
.ant-input-number-affix-wrapper-stepperless[type='number']::-webkit-inner-spin-button,
|
|
14373
14404
|
.ant-input-number-affix-wrapper-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
14374
|
-
-webkit-appearance: none;
|
|
14375
14405
|
margin: 0;
|
|
14406
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14407
|
+
-webkit-appearance: none;
|
|
14376
14408
|
}
|
|
14377
14409
|
.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
|
|
14378
14410
|
border-color: #165996;
|
|
@@ -14618,12 +14650,14 @@ textarea.ant-input-number {
|
|
|
14618
14650
|
direction: rtl;
|
|
14619
14651
|
}
|
|
14620
14652
|
.ant-input-number-stepperless[type='number'] {
|
|
14653
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14621
14654
|
-moz-appearance: textfield;
|
|
14622
14655
|
}
|
|
14623
14656
|
.ant-input-number-stepperless[type='number']::-webkit-inner-spin-button,
|
|
14624
14657
|
.ant-input-number-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
14625
|
-
-webkit-appearance: none;
|
|
14626
14658
|
margin: 0;
|
|
14659
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14660
|
+
-webkit-appearance: none;
|
|
14627
14661
|
}
|
|
14628
14662
|
.ant-input-number-group {
|
|
14629
14663
|
box-sizing: border-box;
|
|
@@ -17206,20 +17240,20 @@ nz-list-item-extra {
|
|
|
17206
17240
|
padding-left: 0;
|
|
17207
17241
|
}
|
|
17208
17242
|
.ant-menu-submenu.ant-menu-submenu-placement-bottom {
|
|
17209
|
-
top: 6px;
|
|
17210
17243
|
position: relative;
|
|
17244
|
+
top: 6px;
|
|
17211
17245
|
}
|
|
17212
17246
|
.ant-menu-submenu.ant-menu-submenu-placement-right {
|
|
17213
|
-
left: 4px;
|
|
17214
17247
|
position: relative;
|
|
17248
|
+
left: 4px;
|
|
17215
17249
|
}
|
|
17216
17250
|
.ant-menu-submenu.ant-menu-submenu-placement-right.ant-menu-submenu-rtl {
|
|
17217
|
-
left: auto;
|
|
17218
17251
|
right: 4px;
|
|
17252
|
+
left: auto;
|
|
17219
17253
|
}
|
|
17220
17254
|
.ant-menu-submenu.ant-menu-submenu-placement-left {
|
|
17221
|
-
right: 4px;
|
|
17222
17255
|
position: relative;
|
|
17256
|
+
right: 4px;
|
|
17223
17257
|
}
|
|
17224
17258
|
.ant-menu-submenu.ant-menu-submenu-placement-left.ant-menu-submenu-rtl {
|
|
17225
17259
|
right: auto;
|
|
@@ -17377,12 +17411,14 @@ textarea.ant-mentions {
|
|
|
17377
17411
|
direction: rtl;
|
|
17378
17412
|
}
|
|
17379
17413
|
.ant-mentions-stepperless[type='number'] {
|
|
17414
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
17380
17415
|
-moz-appearance: textfield;
|
|
17381
17416
|
}
|
|
17382
17417
|
.ant-mentions-stepperless[type='number']::-webkit-inner-spin-button,
|
|
17383
17418
|
.ant-mentions-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
17384
|
-
-webkit-appearance: none;
|
|
17385
17419
|
margin: 0;
|
|
17420
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
17421
|
+
-webkit-appearance: none;
|
|
17386
17422
|
}
|
|
17387
17423
|
.ant-mentions-disabled > textarea {
|
|
17388
17424
|
background-color: rgba(255, 255, 255, 0.08);
|
|
@@ -17562,9 +17598,9 @@ textarea.ant-mentions {
|
|
|
17562
17598
|
direction: rtl;
|
|
17563
17599
|
}
|
|
17564
17600
|
.ant-mentions-dropdown {
|
|
17601
|
+
position: relative;
|
|
17565
17602
|
top: 100%;
|
|
17566
17603
|
left: 12px;
|
|
17567
|
-
position: relative;
|
|
17568
17604
|
width: 100%;
|
|
17569
17605
|
margin-top: 8px;
|
|
17570
17606
|
margin-bottom: 4px;
|
|
@@ -18738,11 +18774,11 @@ textarea.ant-mentions {
|
|
|
18738
18774
|
float: right;
|
|
18739
18775
|
}
|
|
18740
18776
|
.ant-page-header-back-button {
|
|
18741
|
-
|
|
18742
|
-
background: transparent;
|
|
18777
|
+
display: inline-block;
|
|
18743
18778
|
padding: 0;
|
|
18744
18779
|
line-height: inherit;
|
|
18745
|
-
|
|
18780
|
+
background: transparent;
|
|
18781
|
+
border: 0;
|
|
18746
18782
|
}
|
|
18747
18783
|
nz-page-header,
|
|
18748
18784
|
nz-page-header-content,
|
|
@@ -19117,12 +19153,14 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
19117
19153
|
direction: rtl;
|
|
19118
19154
|
}
|
|
19119
19155
|
.ant-pagination-options-quick-jumper input-stepperless[type='number'] {
|
|
19156
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
19120
19157
|
-moz-appearance: textfield;
|
|
19121
19158
|
}
|
|
19122
19159
|
.ant-pagination-options-quick-jumper input-stepperless[type='number']::-webkit-inner-spin-button,
|
|
19123
19160
|
.ant-pagination-options-quick-jumper input-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
19124
|
-
-webkit-appearance: none;
|
|
19125
19161
|
margin: 0;
|
|
19162
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
19163
|
+
-webkit-appearance: none;
|
|
19126
19164
|
}
|
|
19127
19165
|
.ant-pagination-simple .ant-pagination-prev,
|
|
19128
19166
|
.ant-pagination-simple .ant-pagination-next {
|
|
@@ -20985,13 +21023,13 @@ span.ant-radio + * {
|
|
|
20985
21023
|
padding-left: 21px;
|
|
20986
21024
|
}
|
|
20987
21025
|
.ant-select-dropdown {
|
|
21026
|
+
position: relative;
|
|
20988
21027
|
top: 100%;
|
|
20989
21028
|
left: 0;
|
|
20990
|
-
|
|
21029
|
+
display: block;
|
|
20991
21030
|
width: 100%;
|
|
20992
21031
|
margin-top: 4px;
|
|
20993
21032
|
margin-bottom: 4px;
|
|
20994
|
-
display: block;
|
|
20995
21033
|
}
|
|
20996
21034
|
.ant-select-dropdown .cdk-virtual-scroll-content-wrapper {
|
|
20997
21035
|
right: 0;
|
|
@@ -23659,15 +23697,15 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
23659
23697
|
margin: -8px -9px;
|
|
23660
23698
|
}
|
|
23661
23699
|
.ant-table-custom-column col {
|
|
23700
|
+
display: none;
|
|
23662
23701
|
width: auto !important;
|
|
23663
23702
|
min-width: auto !important;
|
|
23664
|
-
display: none;
|
|
23665
23703
|
}
|
|
23666
23704
|
.ant-table-custom-column .ant-table-thead .ant-table-row,
|
|
23667
23705
|
.ant-table-custom-column .ant-table-thead tr {
|
|
23668
|
-
width: 100%;
|
|
23669
23706
|
display: flex;
|
|
23670
23707
|
justify-content: space-between;
|
|
23708
|
+
width: 100%;
|
|
23671
23709
|
}
|
|
23672
23710
|
.ant-table-custom-column .ant-table-thead .ant-table-row th,
|
|
23673
23711
|
.ant-table-custom-column .ant-table-thead tr th {
|
|
@@ -23675,9 +23713,9 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
23675
23713
|
}
|
|
23676
23714
|
.ant-table-custom-column .ant-table-tbody .ant-table-row,
|
|
23677
23715
|
.ant-table-custom-column .ant-table-tbody tr {
|
|
23678
|
-
width: 100%;
|
|
23679
23716
|
display: flex;
|
|
23680
23717
|
justify-content: space-between;
|
|
23718
|
+
width: 100%;
|
|
23681
23719
|
}
|
|
23682
23720
|
.ant-table-custom-column .ant-table-tbody .ant-table-row td,
|
|
23683
23721
|
.ant-table-custom-column .ant-table-tbody tr td {
|
|
@@ -24301,27 +24339,22 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
24301
24339
|
position: relative;
|
|
24302
24340
|
}
|
|
24303
24341
|
.ant-tabs-tab-btn {
|
|
24304
|
-
border: none;
|
|
24305
24342
|
background-color: unset;
|
|
24343
|
+
border: none;
|
|
24344
|
+
cursor: pointer;
|
|
24306
24345
|
}
|
|
24307
24346
|
.ant-tabs-tab a[nz-tab-link]::before {
|
|
24308
24347
|
position: absolute;
|
|
24309
24348
|
top: 0;
|
|
24310
|
-
left: 0;
|
|
24311
24349
|
right: 0;
|
|
24312
24350
|
bottom: 0;
|
|
24351
|
+
left: 0;
|
|
24313
24352
|
background-color: transparent;
|
|
24314
24353
|
content: '';
|
|
24315
24354
|
}
|
|
24316
24355
|
.ant-tabs-tab a[nz-tab-link] ~ * {
|
|
24317
24356
|
position: relative;
|
|
24318
24357
|
}
|
|
24319
|
-
nz-tabset,
|
|
24320
|
-
nz-tab-nav-operation,
|
|
24321
|
-
nz-tabs-nav {
|
|
24322
|
-
display: block;
|
|
24323
|
-
overflow: hidden;
|
|
24324
|
-
}
|
|
24325
24358
|
.nz-tabs-dropdown.ant-dropdown .ant-dropdown-menu {
|
|
24326
24359
|
max-height: 200px;
|
|
24327
24360
|
margin: 0;
|
|
@@ -24361,16 +24394,16 @@ nz-tabs-nav {
|
|
|
24361
24394
|
}
|
|
24362
24395
|
.nz-tabs-dropdown.ant-dropdown .ant-dropdown-menu-item-disabled a,
|
|
24363
24396
|
.nz-tabs-dropdown.ant-dropdown .ant-dropdown-menu-item-disabled:hover a {
|
|
24364
|
-
pointer-events: none;
|
|
24365
24397
|
color: rgba(255, 255, 255, 0.3);
|
|
24398
|
+
pointer-events: none;
|
|
24366
24399
|
}
|
|
24367
24400
|
.ant-tabs-rtl .ant-tabs-rtl-tab-next {
|
|
24368
24401
|
right: auto;
|
|
24369
24402
|
left: 2px;
|
|
24370
24403
|
}
|
|
24371
24404
|
.ant-tabs-tab-disabled a {
|
|
24372
|
-
pointer-events: none;
|
|
24373
24405
|
color: rgba(255, 255, 255, 0.3);
|
|
24406
|
+
pointer-events: none;
|
|
24374
24407
|
}
|
|
24375
24408
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
|
|
24376
24409
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
@@ -24455,6 +24488,9 @@ nz-tabs-nav {
|
|
|
24455
24488
|
background: #291321;
|
|
24456
24489
|
border-color: #551c3b;
|
|
24457
24490
|
}
|
|
24491
|
+
.ant-tag-borderless {
|
|
24492
|
+
border-color: transparent;
|
|
24493
|
+
}
|
|
24458
24494
|
.ant-tag-pink-inverse {
|
|
24459
24495
|
color: #fff;
|
|
24460
24496
|
background: #cb2b83;
|
|
@@ -24465,6 +24501,9 @@ nz-tabs-nav {
|
|
|
24465
24501
|
background: #291321;
|
|
24466
24502
|
border-color: #551c3b;
|
|
24467
24503
|
}
|
|
24504
|
+
.ant-tag-borderless {
|
|
24505
|
+
border-color: transparent;
|
|
24506
|
+
}
|
|
24468
24507
|
.ant-tag-magenta-inverse {
|
|
24469
24508
|
color: #fff;
|
|
24470
24509
|
background: #cb2b83;
|
|
@@ -24475,6 +24514,9 @@ nz-tabs-nav {
|
|
|
24475
24514
|
background: #2a1215;
|
|
24476
24515
|
border-color: #58181c;
|
|
24477
24516
|
}
|
|
24517
|
+
.ant-tag-borderless {
|
|
24518
|
+
border-color: transparent;
|
|
24519
|
+
}
|
|
24478
24520
|
.ant-tag-red-inverse {
|
|
24479
24521
|
color: #fff;
|
|
24480
24522
|
background: #d32029;
|
|
@@ -24485,6 +24527,9 @@ nz-tabs-nav {
|
|
|
24485
24527
|
background: #2b1611;
|
|
24486
24528
|
border-color: #592716;
|
|
24487
24529
|
}
|
|
24530
|
+
.ant-tag-borderless {
|
|
24531
|
+
border-color: transparent;
|
|
24532
|
+
}
|
|
24488
24533
|
.ant-tag-volcano-inverse {
|
|
24489
24534
|
color: #fff;
|
|
24490
24535
|
background: #d84a1b;
|
|
@@ -24495,6 +24540,9 @@ nz-tabs-nav {
|
|
|
24495
24540
|
background: #2b1d11;
|
|
24496
24541
|
border-color: #593815;
|
|
24497
24542
|
}
|
|
24543
|
+
.ant-tag-borderless {
|
|
24544
|
+
border-color: transparent;
|
|
24545
|
+
}
|
|
24498
24546
|
.ant-tag-orange-inverse {
|
|
24499
24547
|
color: #fff;
|
|
24500
24548
|
background: #d87a16;
|
|
@@ -24505,6 +24553,9 @@ nz-tabs-nav {
|
|
|
24505
24553
|
background: #2b2611;
|
|
24506
24554
|
border-color: #595014;
|
|
24507
24555
|
}
|
|
24556
|
+
.ant-tag-borderless {
|
|
24557
|
+
border-color: transparent;
|
|
24558
|
+
}
|
|
24508
24559
|
.ant-tag-yellow-inverse {
|
|
24509
24560
|
color: #fff;
|
|
24510
24561
|
background: #d8bd14;
|
|
@@ -24515,6 +24566,9 @@ nz-tabs-nav {
|
|
|
24515
24566
|
background: #2b2111;
|
|
24516
24567
|
border-color: #594214;
|
|
24517
24568
|
}
|
|
24569
|
+
.ant-tag-borderless {
|
|
24570
|
+
border-color: transparent;
|
|
24571
|
+
}
|
|
24518
24572
|
.ant-tag-gold-inverse {
|
|
24519
24573
|
color: #fff;
|
|
24520
24574
|
background: #d89614;
|
|
@@ -24525,6 +24579,9 @@ nz-tabs-nav {
|
|
|
24525
24579
|
background: #112123;
|
|
24526
24580
|
border-color: #144848;
|
|
24527
24581
|
}
|
|
24582
|
+
.ant-tag-borderless {
|
|
24583
|
+
border-color: transparent;
|
|
24584
|
+
}
|
|
24528
24585
|
.ant-tag-cyan-inverse {
|
|
24529
24586
|
color: #fff;
|
|
24530
24587
|
background: #13a8a8;
|
|
@@ -24535,6 +24592,9 @@ nz-tabs-nav {
|
|
|
24535
24592
|
background: #1f2611;
|
|
24536
24593
|
border-color: #3e4f13;
|
|
24537
24594
|
}
|
|
24595
|
+
.ant-tag-borderless {
|
|
24596
|
+
border-color: transparent;
|
|
24597
|
+
}
|
|
24538
24598
|
.ant-tag-lime-inverse {
|
|
24539
24599
|
color: #fff;
|
|
24540
24600
|
background: #8bbb11;
|
|
@@ -24545,6 +24605,9 @@ nz-tabs-nav {
|
|
|
24545
24605
|
background: #162312;
|
|
24546
24606
|
border-color: #274916;
|
|
24547
24607
|
}
|
|
24608
|
+
.ant-tag-borderless {
|
|
24609
|
+
border-color: transparent;
|
|
24610
|
+
}
|
|
24548
24611
|
.ant-tag-green-inverse {
|
|
24549
24612
|
color: #fff;
|
|
24550
24613
|
background: #49aa19;
|
|
@@ -24555,6 +24618,9 @@ nz-tabs-nav {
|
|
|
24555
24618
|
background: #111d2c;
|
|
24556
24619
|
border-color: #15395b;
|
|
24557
24620
|
}
|
|
24621
|
+
.ant-tag-borderless {
|
|
24622
|
+
border-color: transparent;
|
|
24623
|
+
}
|
|
24558
24624
|
.ant-tag-blue-inverse {
|
|
24559
24625
|
color: #fff;
|
|
24560
24626
|
background: #177ddc;
|
|
@@ -24565,6 +24631,9 @@ nz-tabs-nav {
|
|
|
24565
24631
|
background: #131629;
|
|
24566
24632
|
border-color: #1c2755;
|
|
24567
24633
|
}
|
|
24634
|
+
.ant-tag-borderless {
|
|
24635
|
+
border-color: transparent;
|
|
24636
|
+
}
|
|
24568
24637
|
.ant-tag-geekblue-inverse {
|
|
24569
24638
|
color: #fff;
|
|
24570
24639
|
background: #2b4acb;
|
|
@@ -24575,6 +24644,9 @@ nz-tabs-nav {
|
|
|
24575
24644
|
background: #1a1325;
|
|
24576
24645
|
border-color: #301c4d;
|
|
24577
24646
|
}
|
|
24647
|
+
.ant-tag-borderless {
|
|
24648
|
+
border-color: transparent;
|
|
24649
|
+
}
|
|
24578
24650
|
.ant-tag-purple-inverse {
|
|
24579
24651
|
color: #fff;
|
|
24580
24652
|
background: #642ab5;
|
|
@@ -26785,12 +26857,12 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
26785
26857
|
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
|
|
26786
26858
|
*/
|
|
26787
26859
|
nz-tree-virtual-scroll-view {
|
|
26788
|
-
display: block;
|
|
26789
26860
|
position: relative;
|
|
26861
|
+
display: block;
|
|
26790
26862
|
overflow: auto;
|
|
26791
|
-
contain: strict;
|
|
26792
26863
|
transform: translateZ(0);
|
|
26793
26864
|
will-change: scroll-position;
|
|
26865
|
+
contain: strict;
|
|
26794
26866
|
-webkit-overflow-scrolling: touch;
|
|
26795
26867
|
}
|
|
26796
26868
|
nz-tree-virtual-scroll-view .ant-tree-list,
|
|
@@ -27787,18 +27859,18 @@ nz-tree {
|
|
|
27787
27859
|
transform: scaleY(-1);
|
|
27788
27860
|
}
|
|
27789
27861
|
.ant-tree.ant-select-tree.ant-tree-show-line nz-tree-node[builtin]:not(:last-child) > li::before {
|
|
27790
|
-
content: ' ';
|
|
27791
|
-
width: 1px;
|
|
27792
|
-
border-left: 1px solid #d9d9d9;
|
|
27793
|
-
height: calc(100% - 16px);
|
|
27794
27862
|
position: absolute;
|
|
27795
27863
|
left: 12px;
|
|
27864
|
+
width: 1px;
|
|
27865
|
+
height: calc(100% - 16px);
|
|
27796
27866
|
margin: 26px 0;
|
|
27867
|
+
border-left: 1px solid #d9d9d9;
|
|
27868
|
+
content: ' ';
|
|
27797
27869
|
}
|
|
27798
27870
|
.ant-select-dropdown.ant-select-tree-dropdown {
|
|
27871
|
+
position: relative;
|
|
27799
27872
|
top: 100%;
|
|
27800
27873
|
left: 0;
|
|
27801
|
-
position: relative;
|
|
27802
27874
|
width: 100%;
|
|
27803
27875
|
margin-top: 4px;
|
|
27804
27876
|
margin-bottom: 4px;
|
|
@@ -28326,26 +28398,26 @@ nz-space-item {
|
|
|
28326
28398
|
align-items: center;
|
|
28327
28399
|
}
|
|
28328
28400
|
.ant-cron-expression-input-group input {
|
|
28329
|
-
border: none !important;
|
|
28330
|
-
box-shadow: none !important;
|
|
28331
28401
|
width: 100%;
|
|
28332
|
-
outline: none;
|
|
28333
28402
|
padding: 0;
|
|
28403
|
+
border: none !important;
|
|
28334
28404
|
border-radius: 0;
|
|
28405
|
+
outline: none;
|
|
28406
|
+
box-shadow: none !important;
|
|
28335
28407
|
}
|
|
28336
28408
|
.ant-cron-expression-input-group-focus {
|
|
28337
28409
|
border-color: #177ddc;
|
|
28338
|
-
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
28339
28410
|
outline: 0;
|
|
28411
|
+
box-shadow: 0 0 0 2px rgba(23, 125, 220, 0.2);
|
|
28340
28412
|
}
|
|
28341
28413
|
.ant-cron-expression nz-cron-expression-label {
|
|
28342
28414
|
width: 20%;
|
|
28343
28415
|
}
|
|
28344
28416
|
.ant-cron-expression-label-group {
|
|
28345
28417
|
display: flex;
|
|
28346
|
-
width: 100%;
|
|
28347
28418
|
flex-wrap: nowrap;
|
|
28348
28419
|
justify-content: space-around;
|
|
28420
|
+
width: 100%;
|
|
28349
28421
|
padding-top: 0 !important;
|
|
28350
28422
|
padding-bottom: 0 !important;
|
|
28351
28423
|
}
|
|
@@ -28363,54 +28435,54 @@ nz-space-item {
|
|
|
28363
28435
|
padding: 12px;
|
|
28364
28436
|
}
|
|
28365
28437
|
.ant-cron-expression-preview-dateTime {
|
|
28366
|
-
flex: 1 1 auto;
|
|
28367
28438
|
display: flex;
|
|
28439
|
+
flex: 1 1 auto;
|
|
28368
28440
|
align-items: center;
|
|
28369
28441
|
}
|
|
28370
28442
|
.ant-cron-expression-preview-dateTime-center {
|
|
28371
28443
|
justify-content: center;
|
|
28372
28444
|
}
|
|
28373
28445
|
.ant-cron-expression-preview-content {
|
|
28374
|
-
flex: 0 0 220px;
|
|
28375
28446
|
display: flex;
|
|
28447
|
+
flex: 0 0 220px;
|
|
28376
28448
|
align-items: center;
|
|
28377
28449
|
padding-left: 16px;
|
|
28378
28450
|
}
|
|
28379
28451
|
.ant-cron-expression-preview-list,
|
|
28380
28452
|
.ant-cron-expression-preview-icon {
|
|
28381
|
-
list-style: none;
|
|
28382
28453
|
margin: 0;
|
|
28383
28454
|
padding: 0;
|
|
28455
|
+
list-style: none;
|
|
28384
28456
|
}
|
|
28385
28457
|
.ant-cron-expression-preview-list li,
|
|
28386
28458
|
.ant-cron-expression-preview-icon li {
|
|
28387
|
-
list-style: none;
|
|
28388
28459
|
margin: 0;
|
|
28389
28460
|
padding: 0;
|
|
28461
|
+
list-style: none;
|
|
28390
28462
|
}
|
|
28391
28463
|
.ant-cron-expression-preview-list {
|
|
28392
|
-
overflow-y: scroll;
|
|
28393
28464
|
height: 132px;
|
|
28465
|
+
overflow-y: scroll;
|
|
28394
28466
|
}
|
|
28395
28467
|
.ant-cron-expression-preview-icon {
|
|
28396
|
-
flex: 0 0 16px;
|
|
28397
28468
|
display: flex;
|
|
28469
|
+
flex: 0 0 16px;
|
|
28398
28470
|
justify-content: center;
|
|
28399
28471
|
}
|
|
28400
28472
|
.ant-cron-expression-error {
|
|
28401
28473
|
color: #a61d24;
|
|
28402
28474
|
}
|
|
28403
28475
|
.ant-qrcode {
|
|
28404
|
-
display: inline-block;
|
|
28405
28476
|
position: relative;
|
|
28477
|
+
display: inline-block;
|
|
28406
28478
|
padding: 12px;
|
|
28407
28479
|
}
|
|
28408
28480
|
.ant-qrcode > canvas {
|
|
28409
28481
|
display: block;
|
|
28410
28482
|
}
|
|
28411
28483
|
.ant-qrcode-border {
|
|
28412
|
-
border-radius: 2px;
|
|
28413
28484
|
border: 1px solid #303030;
|
|
28485
|
+
border-radius: 2px;
|
|
28414
28486
|
}
|
|
28415
28487
|
.ant-qrcode-mask {
|
|
28416
28488
|
position: absolute;
|
|
@@ -28419,8 +28491,8 @@ nz-space-item {
|
|
|
28419
28491
|
z-index: 10;
|
|
28420
28492
|
display: flex;
|
|
28421
28493
|
flex-direction: column;
|
|
28422
|
-
justify-content: center;
|
|
28423
28494
|
align-items: center;
|
|
28495
|
+
justify-content: center;
|
|
28424
28496
|
width: 100%;
|
|
28425
28497
|
height: 100%;
|
|
28426
28498
|
text-align: center;
|
|
@@ -28430,8 +28502,8 @@ nz-space-item {
|
|
|
28430
28502
|
color: rgba(0, 0, 0, 0.85);
|
|
28431
28503
|
}
|
|
28432
28504
|
.ant-water-mark {
|
|
28433
|
-
display: block;
|
|
28434
28505
|
position: relative;
|
|
28506
|
+
display: block;
|
|
28435
28507
|
}
|
|
28436
28508
|
.ant-color-picker {
|
|
28437
28509
|
position: absolute;
|
|
@@ -28466,11 +28538,11 @@ nz-space-item {
|
|
|
28466
28538
|
}
|
|
28467
28539
|
.ant-color-picker-saturation {
|
|
28468
28540
|
position: absolute;
|
|
28469
|
-
border-radius: inherit;
|
|
28470
28541
|
top: 0;
|
|
28471
|
-
left: 0;
|
|
28472
28542
|
right: 0;
|
|
28473
28543
|
bottom: 0;
|
|
28544
|
+
left: 0;
|
|
28545
|
+
border-radius: inherit;
|
|
28474
28546
|
}
|
|
28475
28547
|
.ant-color-picker-handler {
|
|
28476
28548
|
box-sizing: border-box;
|
|
@@ -28501,16 +28573,16 @@ nz-space-item {
|
|
|
28501
28573
|
background-size: 8px 8px;
|
|
28502
28574
|
}
|
|
28503
28575
|
.ant-color-picker-trigger {
|
|
28576
|
+
display: flex;
|
|
28577
|
+
align-items: center;
|
|
28578
|
+
justify-content: center;
|
|
28504
28579
|
min-width: 32px;
|
|
28505
28580
|
height: 32px;
|
|
28506
|
-
|
|
28581
|
+
padding: 3px;
|
|
28507
28582
|
border: 1px solid #303030;
|
|
28583
|
+
border-radius: 2px;
|
|
28508
28584
|
cursor: pointer;
|
|
28509
|
-
display: flex;
|
|
28510
|
-
align-items: center;
|
|
28511
|
-
justify-content: center;
|
|
28512
28585
|
transition: all 0.2s;
|
|
28513
|
-
padding: 3px;
|
|
28514
28586
|
}
|
|
28515
28587
|
.ant-color-picker-trigger:hover {
|
|
28516
28588
|
border-color: #177ddc;
|
|
@@ -28534,9 +28606,9 @@ nz-space-item {
|
|
|
28534
28606
|
position: relative;
|
|
28535
28607
|
width: 28px;
|
|
28536
28608
|
height: 28px;
|
|
28609
|
+
overflow: hidden;
|
|
28537
28610
|
background-image: conic-gradient(rgba(0, 0, 0, 0.06) 0 25%, transparent 0 50%, rgba(0, 0, 0, 0.06) 0 75%, transparent 0);
|
|
28538
28611
|
background-size: 50% 50%;
|
|
28539
|
-
overflow: hidden;
|
|
28540
28612
|
border-radius: 2px;
|
|
28541
28613
|
}
|
|
28542
28614
|
.ant-color-picker-color-block-inner {
|
|
@@ -28572,26 +28644,26 @@ nz-space-item {
|
|
|
28572
28644
|
margin-left: 8px;
|
|
28573
28645
|
}
|
|
28574
28646
|
.ant-color-picker-clear {
|
|
28647
|
+
position: relative;
|
|
28575
28648
|
width: 18px;
|
|
28576
28649
|
height: 18px;
|
|
28577
|
-
|
|
28650
|
+
margin-bottom: 8px;
|
|
28651
|
+
overflow: hidden;
|
|
28578
28652
|
border: 1px solid #303030;
|
|
28579
|
-
|
|
28653
|
+
border-radius: 2px;
|
|
28580
28654
|
cursor: pointer;
|
|
28581
|
-
overflow: hidden;
|
|
28582
|
-
margin-bottom: 8px;
|
|
28583
28655
|
}
|
|
28584
28656
|
.ant-color-picker-clear::after {
|
|
28585
|
-
content: "";
|
|
28586
28657
|
position: absolute;
|
|
28587
|
-
inset-inline-end: 1px;
|
|
28588
28658
|
top: 0;
|
|
28589
28659
|
display: block;
|
|
28590
28660
|
width: 40px;
|
|
28591
28661
|
height: 2px;
|
|
28592
|
-
transform-origin: right;
|
|
28593
|
-
transform: rotate(-45deg);
|
|
28594
28662
|
background-color: #f5222d;
|
|
28663
|
+
transform: rotate(-45deg);
|
|
28664
|
+
transform-origin: right;
|
|
28665
|
+
content: '';
|
|
28666
|
+
inset-inline-end: 1px;
|
|
28595
28667
|
}
|
|
28596
28668
|
.ant-color-picker-input-container {
|
|
28597
28669
|
display: flex;
|
|
@@ -28603,8 +28675,8 @@ nz-space-item {
|
|
|
28603
28675
|
font-size: 12px;
|
|
28604
28676
|
}
|
|
28605
28677
|
.ant-color-picker-input-container .ant-input-number {
|
|
28606
|
-
font-size: 12px;
|
|
28607
28678
|
width: auto;
|
|
28679
|
+
font-size: 12px;
|
|
28608
28680
|
}
|
|
28609
28681
|
.ant-color-picker-input-container .ant-input-number-sm input {
|
|
28610
28682
|
padding: 0 0 0 4px;
|
|
@@ -28619,8 +28691,8 @@ nz-space-item {
|
|
|
28619
28691
|
flex: 1;
|
|
28620
28692
|
}
|
|
28621
28693
|
.ant-color-picker-input-container .ant-color-picker-input .ant-color-picker-hex-input {
|
|
28622
|
-
padding: 0;
|
|
28623
28694
|
margin-right: 4px;
|
|
28695
|
+
padding: 0;
|
|
28624
28696
|
}
|
|
28625
28697
|
.ant-color-picker-input-container .ant-color-picker-input .ant-color-picker-hsb-input {
|
|
28626
28698
|
display: flex;
|
|
@@ -28654,9 +28726,9 @@ nz-space-item {
|
|
|
28654
28726
|
display: inline-block;
|
|
28655
28727
|
}
|
|
28656
28728
|
.ant-color-picker-inline .ant-color-picker-color-block {
|
|
28657
|
-
margin: 0;
|
|
28658
28729
|
width: 24px;
|
|
28659
28730
|
height: 24px;
|
|
28731
|
+
margin: 0;
|
|
28660
28732
|
}
|
|
28661
28733
|
.ant-color-picker-inline-lg .ant-color-picker-color-block {
|
|
28662
28734
|
width: 32px;
|
|
@@ -28667,6 +28739,10 @@ nz-space-item {
|
|
|
28667
28739
|
height: 16px;
|
|
28668
28740
|
}
|
|
28669
28741
|
.ant-hashCode {
|
|
28742
|
+
display: flex;
|
|
28743
|
+
flex-direction: column;
|
|
28744
|
+
align-items: center;
|
|
28745
|
+
justify-content: center;
|
|
28670
28746
|
box-sizing: border-box;
|
|
28671
28747
|
margin: 0;
|
|
28672
28748
|
padding: 0;
|
|
@@ -28674,10 +28750,6 @@ nz-space-item {
|
|
|
28674
28750
|
font-size: 14px;
|
|
28675
28751
|
line-height: 1.5715;
|
|
28676
28752
|
list-style: none;
|
|
28677
|
-
display: flex;
|
|
28678
|
-
flex-direction: column;
|
|
28679
|
-
align-items: center;
|
|
28680
|
-
justify-content: center;
|
|
28681
28753
|
cursor: pointer;
|
|
28682
28754
|
}
|
|
28683
28755
|
.ant-hashCode-header-copy {
|
|
@@ -28762,7 +28834,7 @@ nz-space-item {
|
|
|
28762
28834
|
.ant-hashCode-code-value-block {
|
|
28763
28835
|
height: 16px;
|
|
28764
28836
|
font-size: 14px;
|
|
28765
|
-
font-family: Menlo;
|
|
28837
|
+
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
28766
28838
|
}
|
|
28767
28839
|
.ant-hashCode-value-primary .ant-hashCode-code-value-block {
|
|
28768
28840
|
color: #fff;
|
|
@@ -32573,7 +32645,7 @@ body,
|
|
|
32573
32645
|
.ant-drawer-wrapper-body,
|
|
32574
32646
|
.ant-anchor-wrapper,
|
|
32575
32647
|
textarea.ant-input {
|
|
32576
|
-
scrollbar-color: rgba(0, 0, 0, 0.3)
|
|
32648
|
+
scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
|
|
32577
32649
|
scrollbar-width: thin;
|
|
32578
32650
|
}
|
|
32579
32651
|
body::-webkit-scrollbar,
|
|
@@ -32602,7 +32674,7 @@ body::-webkit-scrollbar-thumb,
|
|
|
32602
32674
|
.ant-drawer-wrapper-body::-webkit-scrollbar-thumb,
|
|
32603
32675
|
.ant-anchor-wrapper::-webkit-scrollbar-thumb,
|
|
32604
32676
|
textarea.ant-input::-webkit-scrollbar-thumb {
|
|
32605
|
-
background-color:
|
|
32677
|
+
background-color: transparent;
|
|
32606
32678
|
outline: 1px solid #333;
|
|
32607
32679
|
}
|
|
32608
32680
|
html {
|