@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/default.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;
|
|
@@ -7777,14 +7805,14 @@ nz-descriptions {
|
|
|
7777
7805
|
margin-left: 0;
|
|
7778
7806
|
}
|
|
7779
7807
|
.ant-dropdown-menu > ul {
|
|
7780
|
-
list-style: inherit;
|
|
7781
7808
|
margin: 0;
|
|
7782
7809
|
padding: 0;
|
|
7810
|
+
list-style: inherit;
|
|
7783
7811
|
}
|
|
7784
7812
|
.ant-dropdown {
|
|
7813
|
+
position: relative;
|
|
7785
7814
|
top: 0;
|
|
7786
7815
|
left: 0;
|
|
7787
|
-
position: relative;
|
|
7788
7816
|
width: 100%;
|
|
7789
7817
|
margin-top: 6px;
|
|
7790
7818
|
margin-bottom: 6px;
|
|
@@ -13229,12 +13257,14 @@ textarea.ant-input-affix-wrapper {
|
|
|
13229
13257
|
direction: rtl;
|
|
13230
13258
|
}
|
|
13231
13259
|
.ant-input-affix-wrapper-stepperless[type='number'] {
|
|
13260
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13232
13261
|
-moz-appearance: textfield;
|
|
13233
13262
|
}
|
|
13234
13263
|
.ant-input-affix-wrapper-stepperless[type='number']::-webkit-inner-spin-button,
|
|
13235
13264
|
.ant-input-affix-wrapper-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
13236
|
-
-webkit-appearance: none;
|
|
13237
13265
|
margin: 0;
|
|
13266
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13267
|
+
-webkit-appearance: none;
|
|
13238
13268
|
}
|
|
13239
13269
|
.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover {
|
|
13240
13270
|
border-color: #40a9ff;
|
|
@@ -13517,12 +13547,14 @@ textarea.ant-input {
|
|
|
13517
13547
|
direction: rtl;
|
|
13518
13548
|
}
|
|
13519
13549
|
.ant-input-stepperless[type='number'] {
|
|
13550
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13520
13551
|
-moz-appearance: textfield;
|
|
13521
13552
|
}
|
|
13522
13553
|
.ant-input-stepperless[type='number']::-webkit-inner-spin-button,
|
|
13523
13554
|
.ant-input-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
13524
|
-
-webkit-appearance: none;
|
|
13525
13555
|
margin: 0;
|
|
13556
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
13557
|
+
-webkit-appearance: none;
|
|
13526
13558
|
}
|
|
13527
13559
|
.ant-input-group {
|
|
13528
13560
|
box-sizing: border-box;
|
|
@@ -14017,8 +14049,8 @@ textarea.ant-input {
|
|
|
14017
14049
|
}
|
|
14018
14050
|
textarea.nz-textarea-autosize-measuring {
|
|
14019
14051
|
height: auto !important;
|
|
14020
|
-
overflow: hidden !important;
|
|
14021
14052
|
padding: 2px 0 !important;
|
|
14053
|
+
overflow: hidden !important;
|
|
14022
14054
|
}
|
|
14023
14055
|
.ant-input-search-rtl.ant-input-search-enter-button + .ant-input-group-addon .ant-input-search-button.ant-btn-icon-only,
|
|
14024
14056
|
.ant-input-search-rtl.ant-input-search-enter-button input + .ant-input-group-addon .ant-input-search-button.ant-btn-icon-only {
|
|
@@ -14038,20 +14070,18 @@ textarea.nz-textarea-autosize-measuring {
|
|
|
14038
14070
|
.ant-input-affix-wrapper-textarea-with-clear-btn .ant-input-suffix {
|
|
14039
14071
|
margin-left: 0;
|
|
14040
14072
|
}
|
|
14041
|
-
nz-form-item-feedback-icon.ant-input-suffix {
|
|
14042
|
-
display: flex;
|
|
14043
|
-
flex: none;
|
|
14044
|
-
align-items: center;
|
|
14045
|
-
pointer-events: none;
|
|
14046
|
-
}
|
|
14047
14073
|
nz-form-item-feedback-icon.ant-input-suffix {
|
|
14048
14074
|
position: absolute;
|
|
14049
14075
|
top: 0;
|
|
14050
14076
|
right: 0;
|
|
14051
14077
|
z-index: 1;
|
|
14078
|
+
display: flex;
|
|
14079
|
+
flex: none;
|
|
14080
|
+
align-items: center;
|
|
14052
14081
|
height: 100%;
|
|
14053
14082
|
margin-right: 12px;
|
|
14054
14083
|
margin-left: 4px;
|
|
14084
|
+
pointer-events: none;
|
|
14055
14085
|
}
|
|
14056
14086
|
.ant-input-status-error.ant-input-has-feedback,
|
|
14057
14087
|
.ant-input-status-warning.ant-input-has-feedback,
|
|
@@ -14060,8 +14090,8 @@ nz-form-item-feedback-icon.ant-input-suffix {
|
|
|
14060
14090
|
padding-right: 28px;
|
|
14061
14091
|
}
|
|
14062
14092
|
.ant-input-textarea-show-count {
|
|
14063
|
-
display: block;
|
|
14064
14093
|
position: relative;
|
|
14094
|
+
display: block;
|
|
14065
14095
|
}
|
|
14066
14096
|
.ant-input-number-affix-wrapper {
|
|
14067
14097
|
display: inline-block;
|
|
@@ -14179,12 +14209,14 @@ textarea.ant-input-number-affix-wrapper {
|
|
|
14179
14209
|
direction: rtl;
|
|
14180
14210
|
}
|
|
14181
14211
|
.ant-input-number-affix-wrapper-stepperless[type='number'] {
|
|
14212
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14182
14213
|
-moz-appearance: textfield;
|
|
14183
14214
|
}
|
|
14184
14215
|
.ant-input-number-affix-wrapper-stepperless[type='number']::-webkit-inner-spin-button,
|
|
14185
14216
|
.ant-input-number-affix-wrapper-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
14186
|
-
-webkit-appearance: none;
|
|
14187
14217
|
margin: 0;
|
|
14218
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14219
|
+
-webkit-appearance: none;
|
|
14188
14220
|
}
|
|
14189
14221
|
.ant-input-number-affix-wrapper:not(.ant-input-number-affix-wrapper-disabled):hover {
|
|
14190
14222
|
border-color: #40a9ff;
|
|
@@ -14430,12 +14462,14 @@ textarea.ant-input-number {
|
|
|
14430
14462
|
direction: rtl;
|
|
14431
14463
|
}
|
|
14432
14464
|
.ant-input-number-stepperless[type='number'] {
|
|
14465
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14433
14466
|
-moz-appearance: textfield;
|
|
14434
14467
|
}
|
|
14435
14468
|
.ant-input-number-stepperless[type='number']::-webkit-inner-spin-button,
|
|
14436
14469
|
.ant-input-number-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
14437
|
-
-webkit-appearance: none;
|
|
14438
14470
|
margin: 0;
|
|
14471
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
14472
|
+
-webkit-appearance: none;
|
|
14439
14473
|
}
|
|
14440
14474
|
.ant-input-number-group {
|
|
14441
14475
|
box-sizing: border-box;
|
|
@@ -17015,20 +17049,20 @@ nz-list-item-extra {
|
|
|
17015
17049
|
padding-left: 0;
|
|
17016
17050
|
}
|
|
17017
17051
|
.ant-menu-submenu.ant-menu-submenu-placement-bottom {
|
|
17018
|
-
top: 6px;
|
|
17019
17052
|
position: relative;
|
|
17053
|
+
top: 6px;
|
|
17020
17054
|
}
|
|
17021
17055
|
.ant-menu-submenu.ant-menu-submenu-placement-right {
|
|
17022
|
-
left: 4px;
|
|
17023
17056
|
position: relative;
|
|
17057
|
+
left: 4px;
|
|
17024
17058
|
}
|
|
17025
17059
|
.ant-menu-submenu.ant-menu-submenu-placement-right.ant-menu-submenu-rtl {
|
|
17026
|
-
left: auto;
|
|
17027
17060
|
right: 4px;
|
|
17061
|
+
left: auto;
|
|
17028
17062
|
}
|
|
17029
17063
|
.ant-menu-submenu.ant-menu-submenu-placement-left {
|
|
17030
|
-
right: 4px;
|
|
17031
17064
|
position: relative;
|
|
17065
|
+
right: 4px;
|
|
17032
17066
|
}
|
|
17033
17067
|
.ant-menu-submenu.ant-menu-submenu-placement-left.ant-menu-submenu-rtl {
|
|
17034
17068
|
right: auto;
|
|
@@ -17186,12 +17220,14 @@ textarea.ant-mentions {
|
|
|
17186
17220
|
direction: rtl;
|
|
17187
17221
|
}
|
|
17188
17222
|
.ant-mentions-stepperless[type='number'] {
|
|
17223
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
17189
17224
|
-moz-appearance: textfield;
|
|
17190
17225
|
}
|
|
17191
17226
|
.ant-mentions-stepperless[type='number']::-webkit-inner-spin-button,
|
|
17192
17227
|
.ant-mentions-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
17193
|
-
-webkit-appearance: none;
|
|
17194
17228
|
margin: 0;
|
|
17229
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
17230
|
+
-webkit-appearance: none;
|
|
17195
17231
|
}
|
|
17196
17232
|
.ant-mentions-disabled > textarea {
|
|
17197
17233
|
background-color: #f5f5f5;
|
|
@@ -17370,9 +17406,9 @@ textarea.ant-mentions {
|
|
|
17370
17406
|
direction: rtl;
|
|
17371
17407
|
}
|
|
17372
17408
|
.ant-mentions-dropdown {
|
|
17409
|
+
position: relative;
|
|
17373
17410
|
top: 100%;
|
|
17374
17411
|
left: 12px;
|
|
17375
|
-
position: relative;
|
|
17376
17412
|
width: 100%;
|
|
17377
17413
|
margin-top: 8px;
|
|
17378
17414
|
margin-bottom: 4px;
|
|
@@ -18174,11 +18210,11 @@ textarea.ant-mentions {
|
|
|
18174
18210
|
float: right;
|
|
18175
18211
|
}
|
|
18176
18212
|
.ant-page-header-back-button {
|
|
18177
|
-
|
|
18178
|
-
background: transparent;
|
|
18213
|
+
display: inline-block;
|
|
18179
18214
|
padding: 0;
|
|
18180
18215
|
line-height: inherit;
|
|
18181
|
-
|
|
18216
|
+
background: transparent;
|
|
18217
|
+
border: 0;
|
|
18182
18218
|
}
|
|
18183
18219
|
nz-page-header,
|
|
18184
18220
|
nz-page-header-content,
|
|
@@ -18553,12 +18589,14 @@ textarea.ant-pagination-options-quick-jumper input {
|
|
|
18553
18589
|
direction: rtl;
|
|
18554
18590
|
}
|
|
18555
18591
|
.ant-pagination-options-quick-jumper input-stepperless[type='number'] {
|
|
18592
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
18556
18593
|
-moz-appearance: textfield;
|
|
18557
18594
|
}
|
|
18558
18595
|
.ant-pagination-options-quick-jumper input-stepperless[type='number']::-webkit-inner-spin-button,
|
|
18559
18596
|
.ant-pagination-options-quick-jumper input-stepperless[type='number'] ::-webkit-outer-spin-button {
|
|
18560
|
-
-webkit-appearance: none;
|
|
18561
18597
|
margin: 0;
|
|
18598
|
+
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
18599
|
+
-webkit-appearance: none;
|
|
18562
18600
|
}
|
|
18563
18601
|
.ant-pagination-simple .ant-pagination-prev,
|
|
18564
18602
|
.ant-pagination-simple .ant-pagination-next {
|
|
@@ -20421,13 +20459,13 @@ span.ant-radio + * {
|
|
|
20421
20459
|
padding-left: 21px;
|
|
20422
20460
|
}
|
|
20423
20461
|
.ant-select-dropdown {
|
|
20462
|
+
position: relative;
|
|
20424
20463
|
top: 100%;
|
|
20425
20464
|
left: 0;
|
|
20426
|
-
|
|
20465
|
+
display: block;
|
|
20427
20466
|
width: 100%;
|
|
20428
20467
|
margin-top: 4px;
|
|
20429
20468
|
margin-bottom: 4px;
|
|
20430
|
-
display: block;
|
|
20431
20469
|
}
|
|
20432
20470
|
.ant-select-dropdown .cdk-virtual-scroll-content-wrapper {
|
|
20433
20471
|
right: 0;
|
|
@@ -23095,15 +23133,15 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
23095
23133
|
margin: -8px -9px;
|
|
23096
23134
|
}
|
|
23097
23135
|
.ant-table-custom-column col {
|
|
23136
|
+
display: none;
|
|
23098
23137
|
width: auto !important;
|
|
23099
23138
|
min-width: auto !important;
|
|
23100
|
-
display: none;
|
|
23101
23139
|
}
|
|
23102
23140
|
.ant-table-custom-column .ant-table-thead .ant-table-row,
|
|
23103
23141
|
.ant-table-custom-column .ant-table-thead tr {
|
|
23104
|
-
width: 100%;
|
|
23105
23142
|
display: flex;
|
|
23106
23143
|
justify-content: space-between;
|
|
23144
|
+
width: 100%;
|
|
23107
23145
|
}
|
|
23108
23146
|
.ant-table-custom-column .ant-table-thead .ant-table-row th,
|
|
23109
23147
|
.ant-table-custom-column .ant-table-thead tr th {
|
|
@@ -23111,9 +23149,9 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
23111
23149
|
}
|
|
23112
23150
|
.ant-table-custom-column .ant-table-tbody .ant-table-row,
|
|
23113
23151
|
.ant-table-custom-column .ant-table-tbody tr {
|
|
23114
|
-
width: 100%;
|
|
23115
23152
|
display: flex;
|
|
23116
23153
|
justify-content: space-between;
|
|
23154
|
+
width: 100%;
|
|
23117
23155
|
}
|
|
23118
23156
|
.ant-table-custom-column .ant-table-tbody .ant-table-row td,
|
|
23119
23157
|
.ant-table-custom-column .ant-table-tbody tr td {
|
|
@@ -23737,27 +23775,22 @@ cdk-virtual-scroll-viewport.ant-table-body {
|
|
|
23737
23775
|
position: relative;
|
|
23738
23776
|
}
|
|
23739
23777
|
.ant-tabs-tab-btn {
|
|
23740
|
-
border: none;
|
|
23741
23778
|
background-color: unset;
|
|
23779
|
+
border: none;
|
|
23780
|
+
cursor: pointer;
|
|
23742
23781
|
}
|
|
23743
23782
|
.ant-tabs-tab a[nz-tab-link]::before {
|
|
23744
23783
|
position: absolute;
|
|
23745
23784
|
top: 0;
|
|
23746
|
-
left: 0;
|
|
23747
23785
|
right: 0;
|
|
23748
23786
|
bottom: 0;
|
|
23787
|
+
left: 0;
|
|
23749
23788
|
background-color: transparent;
|
|
23750
23789
|
content: '';
|
|
23751
23790
|
}
|
|
23752
23791
|
.ant-tabs-tab a[nz-tab-link] ~ * {
|
|
23753
23792
|
position: relative;
|
|
23754
23793
|
}
|
|
23755
|
-
nz-tabset,
|
|
23756
|
-
nz-tab-nav-operation,
|
|
23757
|
-
nz-tabs-nav {
|
|
23758
|
-
display: block;
|
|
23759
|
-
overflow: hidden;
|
|
23760
|
-
}
|
|
23761
23794
|
.nz-tabs-dropdown.ant-dropdown .ant-dropdown-menu {
|
|
23762
23795
|
max-height: 200px;
|
|
23763
23796
|
margin: 0;
|
|
@@ -23797,16 +23830,16 @@ nz-tabs-nav {
|
|
|
23797
23830
|
}
|
|
23798
23831
|
.nz-tabs-dropdown.ant-dropdown .ant-dropdown-menu-item-disabled a,
|
|
23799
23832
|
.nz-tabs-dropdown.ant-dropdown .ant-dropdown-menu-item-disabled:hover a {
|
|
23800
|
-
pointer-events: none;
|
|
23801
23833
|
color: rgba(0, 0, 0, 0.25);
|
|
23834
|
+
pointer-events: none;
|
|
23802
23835
|
}
|
|
23803
23836
|
.ant-tabs-rtl .ant-tabs-rtl-tab-next {
|
|
23804
23837
|
right: auto;
|
|
23805
23838
|
left: 2px;
|
|
23806
23839
|
}
|
|
23807
23840
|
.ant-tabs-tab-disabled a {
|
|
23808
|
-
pointer-events: none;
|
|
23809
23841
|
color: rgba(0, 0, 0, 0.25);
|
|
23842
|
+
pointer-events: none;
|
|
23810
23843
|
}
|
|
23811
23844
|
.ant-tabs > .ant-tabs-nav .ant-tabs-nav-add,
|
|
23812
23845
|
.ant-tabs > div > .ant-tabs-nav .ant-tabs-nav-add {
|
|
@@ -23891,6 +23924,9 @@ nz-tabs-nav {
|
|
|
23891
23924
|
background: #fff0f6;
|
|
23892
23925
|
border-color: #ffadd2;
|
|
23893
23926
|
}
|
|
23927
|
+
.ant-tag-borderless {
|
|
23928
|
+
border-color: transparent;
|
|
23929
|
+
}
|
|
23894
23930
|
.ant-tag-pink-inverse {
|
|
23895
23931
|
color: #fff;
|
|
23896
23932
|
background: #eb2f96;
|
|
@@ -23901,6 +23937,9 @@ nz-tabs-nav {
|
|
|
23901
23937
|
background: #fff0f6;
|
|
23902
23938
|
border-color: #ffadd2;
|
|
23903
23939
|
}
|
|
23940
|
+
.ant-tag-borderless {
|
|
23941
|
+
border-color: transparent;
|
|
23942
|
+
}
|
|
23904
23943
|
.ant-tag-magenta-inverse {
|
|
23905
23944
|
color: #fff;
|
|
23906
23945
|
background: #eb2f96;
|
|
@@ -23911,6 +23950,9 @@ nz-tabs-nav {
|
|
|
23911
23950
|
background: #fff1f0;
|
|
23912
23951
|
border-color: #ffa39e;
|
|
23913
23952
|
}
|
|
23953
|
+
.ant-tag-borderless {
|
|
23954
|
+
border-color: transparent;
|
|
23955
|
+
}
|
|
23914
23956
|
.ant-tag-red-inverse {
|
|
23915
23957
|
color: #fff;
|
|
23916
23958
|
background: #f5222d;
|
|
@@ -23921,6 +23963,9 @@ nz-tabs-nav {
|
|
|
23921
23963
|
background: #fff2e8;
|
|
23922
23964
|
border-color: #ffbb96;
|
|
23923
23965
|
}
|
|
23966
|
+
.ant-tag-borderless {
|
|
23967
|
+
border-color: transparent;
|
|
23968
|
+
}
|
|
23924
23969
|
.ant-tag-volcano-inverse {
|
|
23925
23970
|
color: #fff;
|
|
23926
23971
|
background: #fa541c;
|
|
@@ -23931,6 +23976,9 @@ nz-tabs-nav {
|
|
|
23931
23976
|
background: #fff7e6;
|
|
23932
23977
|
border-color: #ffd591;
|
|
23933
23978
|
}
|
|
23979
|
+
.ant-tag-borderless {
|
|
23980
|
+
border-color: transparent;
|
|
23981
|
+
}
|
|
23934
23982
|
.ant-tag-orange-inverse {
|
|
23935
23983
|
color: #fff;
|
|
23936
23984
|
background: #fa8c16;
|
|
@@ -23941,6 +23989,9 @@ nz-tabs-nav {
|
|
|
23941
23989
|
background: #feffe6;
|
|
23942
23990
|
border-color: #fffb8f;
|
|
23943
23991
|
}
|
|
23992
|
+
.ant-tag-borderless {
|
|
23993
|
+
border-color: transparent;
|
|
23994
|
+
}
|
|
23944
23995
|
.ant-tag-yellow-inverse {
|
|
23945
23996
|
color: #fff;
|
|
23946
23997
|
background: #fadb14;
|
|
@@ -23951,6 +24002,9 @@ nz-tabs-nav {
|
|
|
23951
24002
|
background: #fffbe6;
|
|
23952
24003
|
border-color: #ffe58f;
|
|
23953
24004
|
}
|
|
24005
|
+
.ant-tag-borderless {
|
|
24006
|
+
border-color: transparent;
|
|
24007
|
+
}
|
|
23954
24008
|
.ant-tag-gold-inverse {
|
|
23955
24009
|
color: #fff;
|
|
23956
24010
|
background: #faad14;
|
|
@@ -23961,6 +24015,9 @@ nz-tabs-nav {
|
|
|
23961
24015
|
background: #e6fffb;
|
|
23962
24016
|
border-color: #87e8de;
|
|
23963
24017
|
}
|
|
24018
|
+
.ant-tag-borderless {
|
|
24019
|
+
border-color: transparent;
|
|
24020
|
+
}
|
|
23964
24021
|
.ant-tag-cyan-inverse {
|
|
23965
24022
|
color: #fff;
|
|
23966
24023
|
background: #13c2c2;
|
|
@@ -23971,6 +24028,9 @@ nz-tabs-nav {
|
|
|
23971
24028
|
background: #fcffe6;
|
|
23972
24029
|
border-color: #eaff8f;
|
|
23973
24030
|
}
|
|
24031
|
+
.ant-tag-borderless {
|
|
24032
|
+
border-color: transparent;
|
|
24033
|
+
}
|
|
23974
24034
|
.ant-tag-lime-inverse {
|
|
23975
24035
|
color: #fff;
|
|
23976
24036
|
background: #a0d911;
|
|
@@ -23981,6 +24041,9 @@ nz-tabs-nav {
|
|
|
23981
24041
|
background: #f6ffed;
|
|
23982
24042
|
border-color: #b7eb8f;
|
|
23983
24043
|
}
|
|
24044
|
+
.ant-tag-borderless {
|
|
24045
|
+
border-color: transparent;
|
|
24046
|
+
}
|
|
23984
24047
|
.ant-tag-green-inverse {
|
|
23985
24048
|
color: #fff;
|
|
23986
24049
|
background: #52c41a;
|
|
@@ -23991,6 +24054,9 @@ nz-tabs-nav {
|
|
|
23991
24054
|
background: #e6f7ff;
|
|
23992
24055
|
border-color: #91d5ff;
|
|
23993
24056
|
}
|
|
24057
|
+
.ant-tag-borderless {
|
|
24058
|
+
border-color: transparent;
|
|
24059
|
+
}
|
|
23994
24060
|
.ant-tag-blue-inverse {
|
|
23995
24061
|
color: #fff;
|
|
23996
24062
|
background: #1890ff;
|
|
@@ -24001,6 +24067,9 @@ nz-tabs-nav {
|
|
|
24001
24067
|
background: #f0f5ff;
|
|
24002
24068
|
border-color: #adc6ff;
|
|
24003
24069
|
}
|
|
24070
|
+
.ant-tag-borderless {
|
|
24071
|
+
border-color: transparent;
|
|
24072
|
+
}
|
|
24004
24073
|
.ant-tag-geekblue-inverse {
|
|
24005
24074
|
color: #fff;
|
|
24006
24075
|
background: #2f54eb;
|
|
@@ -24011,6 +24080,9 @@ nz-tabs-nav {
|
|
|
24011
24080
|
background: #f9f0ff;
|
|
24012
24081
|
border-color: #d3adf7;
|
|
24013
24082
|
}
|
|
24083
|
+
.ant-tag-borderless {
|
|
24084
|
+
border-color: transparent;
|
|
24085
|
+
}
|
|
24014
24086
|
.ant-tag-purple-inverse {
|
|
24015
24087
|
color: #fff;
|
|
24016
24088
|
background: #722ed1;
|
|
@@ -26221,12 +26293,12 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
26221
26293
|
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
|
|
26222
26294
|
*/
|
|
26223
26295
|
nz-tree-virtual-scroll-view {
|
|
26224
|
-
display: block;
|
|
26225
26296
|
position: relative;
|
|
26297
|
+
display: block;
|
|
26226
26298
|
overflow: auto;
|
|
26227
|
-
contain: strict;
|
|
26228
26299
|
transform: translateZ(0);
|
|
26229
26300
|
will-change: scroll-position;
|
|
26301
|
+
contain: strict;
|
|
26230
26302
|
-webkit-overflow-scrolling: touch;
|
|
26231
26303
|
}
|
|
26232
26304
|
nz-tree-virtual-scroll-view .ant-tree-list,
|
|
@@ -27223,18 +27295,18 @@ nz-tree {
|
|
|
27223
27295
|
transform: scaleY(-1);
|
|
27224
27296
|
}
|
|
27225
27297
|
.ant-tree.ant-select-tree.ant-tree-show-line nz-tree-node[builtin]:not(:last-child) > li::before {
|
|
27226
|
-
content: ' ';
|
|
27227
|
-
width: 1px;
|
|
27228
|
-
border-left: 1px solid #d9d9d9;
|
|
27229
|
-
height: calc(100% - 16px);
|
|
27230
27298
|
position: absolute;
|
|
27231
27299
|
left: 12px;
|
|
27300
|
+
width: 1px;
|
|
27301
|
+
height: calc(100% - 16px);
|
|
27232
27302
|
margin: 26px 0;
|
|
27303
|
+
border-left: 1px solid #d9d9d9;
|
|
27304
|
+
content: ' ';
|
|
27233
27305
|
}
|
|
27234
27306
|
.ant-select-dropdown.ant-select-tree-dropdown {
|
|
27307
|
+
position: relative;
|
|
27235
27308
|
top: 100%;
|
|
27236
27309
|
left: 0;
|
|
27237
|
-
position: relative;
|
|
27238
27310
|
width: 100%;
|
|
27239
27311
|
margin-top: 4px;
|
|
27240
27312
|
margin-bottom: 4px;
|
|
@@ -27763,26 +27835,26 @@ nz-space-item {
|
|
|
27763
27835
|
align-items: center;
|
|
27764
27836
|
}
|
|
27765
27837
|
.ant-cron-expression-input-group input {
|
|
27766
|
-
border: none !important;
|
|
27767
|
-
box-shadow: none !important;
|
|
27768
27838
|
width: 100%;
|
|
27769
|
-
outline: none;
|
|
27770
27839
|
padding: 0;
|
|
27840
|
+
border: none !important;
|
|
27771
27841
|
border-radius: 0;
|
|
27842
|
+
outline: none;
|
|
27843
|
+
box-shadow: none !important;
|
|
27772
27844
|
}
|
|
27773
27845
|
.ant-cron-expression-input-group-focus {
|
|
27774
27846
|
border-color: #1890ff;
|
|
27775
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
27776
27847
|
outline: 0;
|
|
27848
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
27777
27849
|
}
|
|
27778
27850
|
.ant-cron-expression nz-cron-expression-label {
|
|
27779
27851
|
width: 20%;
|
|
27780
27852
|
}
|
|
27781
27853
|
.ant-cron-expression-label-group {
|
|
27782
27854
|
display: flex;
|
|
27783
|
-
width: 100%;
|
|
27784
27855
|
flex-wrap: nowrap;
|
|
27785
27856
|
justify-content: space-around;
|
|
27857
|
+
width: 100%;
|
|
27786
27858
|
padding-top: 0 !important;
|
|
27787
27859
|
padding-bottom: 0 !important;
|
|
27788
27860
|
}
|
|
@@ -27800,54 +27872,54 @@ nz-space-item {
|
|
|
27800
27872
|
padding: 12px;
|
|
27801
27873
|
}
|
|
27802
27874
|
.ant-cron-expression-preview-dateTime {
|
|
27803
|
-
flex: 1 1 auto;
|
|
27804
27875
|
display: flex;
|
|
27876
|
+
flex: 1 1 auto;
|
|
27805
27877
|
align-items: center;
|
|
27806
27878
|
}
|
|
27807
27879
|
.ant-cron-expression-preview-dateTime-center {
|
|
27808
27880
|
justify-content: center;
|
|
27809
27881
|
}
|
|
27810
27882
|
.ant-cron-expression-preview-content {
|
|
27811
|
-
flex: 0 0 220px;
|
|
27812
27883
|
display: flex;
|
|
27884
|
+
flex: 0 0 220px;
|
|
27813
27885
|
align-items: center;
|
|
27814
27886
|
padding-left: 16px;
|
|
27815
27887
|
}
|
|
27816
27888
|
.ant-cron-expression-preview-list,
|
|
27817
27889
|
.ant-cron-expression-preview-icon {
|
|
27818
|
-
list-style: none;
|
|
27819
27890
|
margin: 0;
|
|
27820
27891
|
padding: 0;
|
|
27892
|
+
list-style: none;
|
|
27821
27893
|
}
|
|
27822
27894
|
.ant-cron-expression-preview-list li,
|
|
27823
27895
|
.ant-cron-expression-preview-icon li {
|
|
27824
|
-
list-style: none;
|
|
27825
27896
|
margin: 0;
|
|
27826
27897
|
padding: 0;
|
|
27898
|
+
list-style: none;
|
|
27827
27899
|
}
|
|
27828
27900
|
.ant-cron-expression-preview-list {
|
|
27829
|
-
overflow-y: scroll;
|
|
27830
27901
|
height: 132px;
|
|
27902
|
+
overflow-y: scroll;
|
|
27831
27903
|
}
|
|
27832
27904
|
.ant-cron-expression-preview-icon {
|
|
27833
|
-
flex: 0 0 16px;
|
|
27834
27905
|
display: flex;
|
|
27906
|
+
flex: 0 0 16px;
|
|
27835
27907
|
justify-content: center;
|
|
27836
27908
|
}
|
|
27837
27909
|
.ant-cron-expression-error {
|
|
27838
27910
|
color: #ff4d4f;
|
|
27839
27911
|
}
|
|
27840
27912
|
.ant-qrcode {
|
|
27841
|
-
display: inline-block;
|
|
27842
27913
|
position: relative;
|
|
27914
|
+
display: inline-block;
|
|
27843
27915
|
padding: 12px;
|
|
27844
27916
|
}
|
|
27845
27917
|
.ant-qrcode > canvas {
|
|
27846
27918
|
display: block;
|
|
27847
27919
|
}
|
|
27848
27920
|
.ant-qrcode-border {
|
|
27849
|
-
border-radius: 2px;
|
|
27850
27921
|
border: 1px solid #f0f0f0;
|
|
27922
|
+
border-radius: 2px;
|
|
27851
27923
|
}
|
|
27852
27924
|
.ant-qrcode-mask {
|
|
27853
27925
|
position: absolute;
|
|
@@ -27856,8 +27928,8 @@ nz-space-item {
|
|
|
27856
27928
|
z-index: 10;
|
|
27857
27929
|
display: flex;
|
|
27858
27930
|
flex-direction: column;
|
|
27859
|
-
justify-content: center;
|
|
27860
27931
|
align-items: center;
|
|
27932
|
+
justify-content: center;
|
|
27861
27933
|
width: 100%;
|
|
27862
27934
|
height: 100%;
|
|
27863
27935
|
text-align: center;
|
|
@@ -27867,8 +27939,8 @@ nz-space-item {
|
|
|
27867
27939
|
color: rgba(0, 0, 0, 0.85);
|
|
27868
27940
|
}
|
|
27869
27941
|
.ant-water-mark {
|
|
27870
|
-
display: block;
|
|
27871
27942
|
position: relative;
|
|
27943
|
+
display: block;
|
|
27872
27944
|
}
|
|
27873
27945
|
.ant-color-picker {
|
|
27874
27946
|
position: absolute;
|
|
@@ -27903,11 +27975,11 @@ nz-space-item {
|
|
|
27903
27975
|
}
|
|
27904
27976
|
.ant-color-picker-saturation {
|
|
27905
27977
|
position: absolute;
|
|
27906
|
-
border-radius: inherit;
|
|
27907
27978
|
top: 0;
|
|
27908
|
-
left: 0;
|
|
27909
27979
|
right: 0;
|
|
27910
27980
|
bottom: 0;
|
|
27981
|
+
left: 0;
|
|
27982
|
+
border-radius: inherit;
|
|
27911
27983
|
}
|
|
27912
27984
|
.ant-color-picker-handler {
|
|
27913
27985
|
box-sizing: border-box;
|
|
@@ -27938,16 +28010,16 @@ nz-space-item {
|
|
|
27938
28010
|
background-size: 8px 8px;
|
|
27939
28011
|
}
|
|
27940
28012
|
.ant-color-picker-trigger {
|
|
28013
|
+
display: flex;
|
|
28014
|
+
align-items: center;
|
|
28015
|
+
justify-content: center;
|
|
27941
28016
|
min-width: 32px;
|
|
27942
28017
|
height: 32px;
|
|
27943
|
-
|
|
28018
|
+
padding: 3px;
|
|
27944
28019
|
border: 1px solid #f0f0f0;
|
|
28020
|
+
border-radius: 2px;
|
|
27945
28021
|
cursor: pointer;
|
|
27946
|
-
display: flex;
|
|
27947
|
-
align-items: center;
|
|
27948
|
-
justify-content: center;
|
|
27949
28022
|
transition: all 0.2s;
|
|
27950
|
-
padding: 3px;
|
|
27951
28023
|
}
|
|
27952
28024
|
.ant-color-picker-trigger:hover {
|
|
27953
28025
|
border-color: #1890ff;
|
|
@@ -27971,9 +28043,9 @@ nz-space-item {
|
|
|
27971
28043
|
position: relative;
|
|
27972
28044
|
width: 28px;
|
|
27973
28045
|
height: 28px;
|
|
28046
|
+
overflow: hidden;
|
|
27974
28047
|
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);
|
|
27975
28048
|
background-size: 50% 50%;
|
|
27976
|
-
overflow: hidden;
|
|
27977
28049
|
border-radius: 2px;
|
|
27978
28050
|
}
|
|
27979
28051
|
.ant-color-picker-color-block-inner {
|
|
@@ -28009,26 +28081,26 @@ nz-space-item {
|
|
|
28009
28081
|
margin-left: 8px;
|
|
28010
28082
|
}
|
|
28011
28083
|
.ant-color-picker-clear {
|
|
28084
|
+
position: relative;
|
|
28012
28085
|
width: 18px;
|
|
28013
28086
|
height: 18px;
|
|
28014
|
-
|
|
28087
|
+
margin-bottom: 8px;
|
|
28088
|
+
overflow: hidden;
|
|
28015
28089
|
border: 1px solid #f0f0f0;
|
|
28016
|
-
|
|
28090
|
+
border-radius: 2px;
|
|
28017
28091
|
cursor: pointer;
|
|
28018
|
-
overflow: hidden;
|
|
28019
|
-
margin-bottom: 8px;
|
|
28020
28092
|
}
|
|
28021
28093
|
.ant-color-picker-clear::after {
|
|
28022
|
-
content: "";
|
|
28023
28094
|
position: absolute;
|
|
28024
|
-
inset-inline-end: 1px;
|
|
28025
28095
|
top: 0;
|
|
28026
28096
|
display: block;
|
|
28027
28097
|
width: 40px;
|
|
28028
28098
|
height: 2px;
|
|
28029
|
-
transform-origin: right;
|
|
28030
|
-
transform: rotate(-45deg);
|
|
28031
28099
|
background-color: #f5222d;
|
|
28100
|
+
transform: rotate(-45deg);
|
|
28101
|
+
transform-origin: right;
|
|
28102
|
+
content: '';
|
|
28103
|
+
inset-inline-end: 1px;
|
|
28032
28104
|
}
|
|
28033
28105
|
.ant-color-picker-input-container {
|
|
28034
28106
|
display: flex;
|
|
@@ -28040,8 +28112,8 @@ nz-space-item {
|
|
|
28040
28112
|
font-size: 12px;
|
|
28041
28113
|
}
|
|
28042
28114
|
.ant-color-picker-input-container .ant-input-number {
|
|
28043
|
-
font-size: 12px;
|
|
28044
28115
|
width: auto;
|
|
28116
|
+
font-size: 12px;
|
|
28045
28117
|
}
|
|
28046
28118
|
.ant-color-picker-input-container .ant-input-number-sm input {
|
|
28047
28119
|
padding: 0 0 0 4px;
|
|
@@ -28056,8 +28128,8 @@ nz-space-item {
|
|
|
28056
28128
|
flex: 1;
|
|
28057
28129
|
}
|
|
28058
28130
|
.ant-color-picker-input-container .ant-color-picker-input .ant-color-picker-hex-input {
|
|
28059
|
-
padding: 0;
|
|
28060
28131
|
margin-right: 4px;
|
|
28132
|
+
padding: 0;
|
|
28061
28133
|
}
|
|
28062
28134
|
.ant-color-picker-input-container .ant-color-picker-input .ant-color-picker-hsb-input {
|
|
28063
28135
|
display: flex;
|
|
@@ -28091,9 +28163,9 @@ nz-space-item {
|
|
|
28091
28163
|
display: inline-block;
|
|
28092
28164
|
}
|
|
28093
28165
|
.ant-color-picker-inline .ant-color-picker-color-block {
|
|
28094
|
-
margin: 0;
|
|
28095
28166
|
width: 24px;
|
|
28096
28167
|
height: 24px;
|
|
28168
|
+
margin: 0;
|
|
28097
28169
|
}
|
|
28098
28170
|
.ant-color-picker-inline-lg .ant-color-picker-color-block {
|
|
28099
28171
|
width: 32px;
|
|
@@ -28104,6 +28176,10 @@ nz-space-item {
|
|
|
28104
28176
|
height: 16px;
|
|
28105
28177
|
}
|
|
28106
28178
|
.ant-hashCode {
|
|
28179
|
+
display: flex;
|
|
28180
|
+
flex-direction: column;
|
|
28181
|
+
align-items: center;
|
|
28182
|
+
justify-content: center;
|
|
28107
28183
|
box-sizing: border-box;
|
|
28108
28184
|
margin: 0;
|
|
28109
28185
|
padding: 0;
|
|
@@ -28111,10 +28187,6 @@ nz-space-item {
|
|
|
28111
28187
|
font-size: 14px;
|
|
28112
28188
|
line-height: 1.5715;
|
|
28113
28189
|
list-style: none;
|
|
28114
|
-
display: flex;
|
|
28115
|
-
flex-direction: column;
|
|
28116
|
-
align-items: center;
|
|
28117
|
-
justify-content: center;
|
|
28118
28190
|
cursor: pointer;
|
|
28119
28191
|
}
|
|
28120
28192
|
.ant-hashCode-header-copy {
|
|
@@ -28199,7 +28271,7 @@ nz-space-item {
|
|
|
28199
28271
|
.ant-hashCode-code-value-block {
|
|
28200
28272
|
height: 16px;
|
|
28201
28273
|
font-size: 14px;
|
|
28202
|
-
font-family: Menlo;
|
|
28274
|
+
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
28203
28275
|
}
|
|
28204
28276
|
.ant-hashCode-value-primary .ant-hashCode-code-value-block {
|
|
28205
28277
|
color: #fff;
|
|
@@ -32010,7 +32082,7 @@ body,
|
|
|
32010
32082
|
.ant-drawer-wrapper-body,
|
|
32011
32083
|
.ant-anchor-wrapper,
|
|
32012
32084
|
textarea.ant-input {
|
|
32013
|
-
scrollbar-color: rgba(0, 0, 0, 0.3)
|
|
32085
|
+
scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
|
|
32014
32086
|
scrollbar-width: thin;
|
|
32015
32087
|
}
|
|
32016
32088
|
body::-webkit-scrollbar,
|
|
@@ -32039,7 +32111,7 @@ body::-webkit-scrollbar-thumb,
|
|
|
32039
32111
|
.ant-drawer-wrapper-body::-webkit-scrollbar-thumb,
|
|
32040
32112
|
.ant-anchor-wrapper::-webkit-scrollbar-thumb,
|
|
32041
32113
|
textarea.ant-input::-webkit-scrollbar-thumb {
|
|
32042
|
-
background-color:
|
|
32114
|
+
background-color: transparent;
|
|
32043
32115
|
outline: 1px solid #333;
|
|
32044
32116
|
}
|
|
32045
32117
|
html {
|