@delon/theme 17.2.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 +141 -108
- package/compact.min.css +1 -1
- package/dark.css +141 -108
- package/dark.min.css +1 -1
- package/default.css +141 -108
- 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/compact.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: 8px;
|
|
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: 16px;
|
|
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: 18px;
|
|
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: -4px -5px;
|
|
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 {
|
|
@@ -26259,12 +26292,12 @@ div.ant-typography-edit-content.ant-typography-rtl {
|
|
|
26259
26292
|
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
|
|
26260
26293
|
*/
|
|
26261
26294
|
nz-tree-virtual-scroll-view {
|
|
26262
|
-
display: block;
|
|
26263
26295
|
position: relative;
|
|
26296
|
+
display: block;
|
|
26264
26297
|
overflow: auto;
|
|
26265
|
-
contain: strict;
|
|
26266
26298
|
transform: translateZ(0);
|
|
26267
26299
|
will-change: scroll-position;
|
|
26300
|
+
contain: strict;
|
|
26268
26301
|
-webkit-overflow-scrolling: touch;
|
|
26269
26302
|
}
|
|
26270
26303
|
nz-tree-virtual-scroll-view .ant-tree-list,
|
|
@@ -27261,18 +27294,18 @@ nz-tree {
|
|
|
27261
27294
|
transform: scaleY(-1);
|
|
27262
27295
|
}
|
|
27263
27296
|
.ant-tree.ant-select-tree.ant-tree-show-line nz-tree-node[builtin]:not(:last-child) > li::before {
|
|
27264
|
-
content: ' ';
|
|
27265
|
-
width: 1px;
|
|
27266
|
-
border-left: 1px solid #d9d9d9;
|
|
27267
|
-
height: calc(100% - 16px);
|
|
27268
27297
|
position: absolute;
|
|
27269
27298
|
left: 12px;
|
|
27299
|
+
width: 1px;
|
|
27300
|
+
height: calc(100% - 16px);
|
|
27270
27301
|
margin: 26px 0;
|
|
27302
|
+
border-left: 1px solid #d9d9d9;
|
|
27303
|
+
content: ' ';
|
|
27271
27304
|
}
|
|
27272
27305
|
.ant-select-dropdown.ant-select-tree-dropdown {
|
|
27306
|
+
position: relative;
|
|
27273
27307
|
top: 100%;
|
|
27274
27308
|
left: 0;
|
|
27275
|
-
position: relative;
|
|
27276
27309
|
width: 100%;
|
|
27277
27310
|
margin-top: 4px;
|
|
27278
27311
|
margin-bottom: 4px;
|
|
@@ -27801,26 +27834,26 @@ nz-space-item {
|
|
|
27801
27834
|
align-items: center;
|
|
27802
27835
|
}
|
|
27803
27836
|
.ant-cron-expression-input-group input {
|
|
27804
|
-
border: none !important;
|
|
27805
|
-
box-shadow: none !important;
|
|
27806
27837
|
width: 100%;
|
|
27807
|
-
outline: none;
|
|
27808
27838
|
padding: 0;
|
|
27839
|
+
border: none !important;
|
|
27809
27840
|
border-radius: 0;
|
|
27841
|
+
outline: none;
|
|
27842
|
+
box-shadow: none !important;
|
|
27810
27843
|
}
|
|
27811
27844
|
.ant-cron-expression-input-group-focus {
|
|
27812
27845
|
border-color: #1890ff;
|
|
27813
|
-
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
27814
27846
|
outline: 0;
|
|
27847
|
+
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
|
27815
27848
|
}
|
|
27816
27849
|
.ant-cron-expression nz-cron-expression-label {
|
|
27817
27850
|
width: 20%;
|
|
27818
27851
|
}
|
|
27819
27852
|
.ant-cron-expression-label-group {
|
|
27820
27853
|
display: flex;
|
|
27821
|
-
width: 100%;
|
|
27822
27854
|
flex-wrap: nowrap;
|
|
27823
27855
|
justify-content: space-around;
|
|
27856
|
+
width: 100%;
|
|
27824
27857
|
padding-top: 0 !important;
|
|
27825
27858
|
padding-bottom: 0 !important;
|
|
27826
27859
|
}
|
|
@@ -27838,54 +27871,54 @@ nz-space-item {
|
|
|
27838
27871
|
padding: 8px;
|
|
27839
27872
|
}
|
|
27840
27873
|
.ant-cron-expression-preview-dateTime {
|
|
27841
|
-
flex: 1 1 auto;
|
|
27842
27874
|
display: flex;
|
|
27875
|
+
flex: 1 1 auto;
|
|
27843
27876
|
align-items: center;
|
|
27844
27877
|
}
|
|
27845
27878
|
.ant-cron-expression-preview-dateTime-center {
|
|
27846
27879
|
justify-content: center;
|
|
27847
27880
|
}
|
|
27848
27881
|
.ant-cron-expression-preview-content {
|
|
27849
|
-
flex: 0 0 220px;
|
|
27850
27882
|
display: flex;
|
|
27883
|
+
flex: 0 0 220px;
|
|
27851
27884
|
align-items: center;
|
|
27852
27885
|
padding-left: 8px;
|
|
27853
27886
|
}
|
|
27854
27887
|
.ant-cron-expression-preview-list,
|
|
27855
27888
|
.ant-cron-expression-preview-icon {
|
|
27856
|
-
list-style: none;
|
|
27857
27889
|
margin: 0;
|
|
27858
27890
|
padding: 0;
|
|
27891
|
+
list-style: none;
|
|
27859
27892
|
}
|
|
27860
27893
|
.ant-cron-expression-preview-list li,
|
|
27861
27894
|
.ant-cron-expression-preview-icon li {
|
|
27862
|
-
list-style: none;
|
|
27863
27895
|
margin: 0;
|
|
27864
27896
|
padding: 0;
|
|
27897
|
+
list-style: none;
|
|
27865
27898
|
}
|
|
27866
27899
|
.ant-cron-expression-preview-list {
|
|
27867
|
-
overflow-y: scroll;
|
|
27868
27900
|
height: 132px;
|
|
27901
|
+
overflow-y: scroll;
|
|
27869
27902
|
}
|
|
27870
27903
|
.ant-cron-expression-preview-icon {
|
|
27871
|
-
flex: 0 0 16px;
|
|
27872
27904
|
display: flex;
|
|
27905
|
+
flex: 0 0 16px;
|
|
27873
27906
|
justify-content: center;
|
|
27874
27907
|
}
|
|
27875
27908
|
.ant-cron-expression-error {
|
|
27876
27909
|
color: #ff4d4f;
|
|
27877
27910
|
}
|
|
27878
27911
|
.ant-qrcode {
|
|
27879
|
-
display: inline-block;
|
|
27880
27912
|
position: relative;
|
|
27913
|
+
display: inline-block;
|
|
27881
27914
|
padding: 8px;
|
|
27882
27915
|
}
|
|
27883
27916
|
.ant-qrcode > canvas {
|
|
27884
27917
|
display: block;
|
|
27885
27918
|
}
|
|
27886
27919
|
.ant-qrcode-border {
|
|
27887
|
-
border-radius: 2px;
|
|
27888
27920
|
border: 1px solid #f0f0f0;
|
|
27921
|
+
border-radius: 2px;
|
|
27889
27922
|
}
|
|
27890
27923
|
.ant-qrcode-mask {
|
|
27891
27924
|
position: absolute;
|
|
@@ -27894,8 +27927,8 @@ nz-space-item {
|
|
|
27894
27927
|
z-index: 10;
|
|
27895
27928
|
display: flex;
|
|
27896
27929
|
flex-direction: column;
|
|
27897
|
-
justify-content: center;
|
|
27898
27930
|
align-items: center;
|
|
27931
|
+
justify-content: center;
|
|
27899
27932
|
width: 100%;
|
|
27900
27933
|
height: 100%;
|
|
27901
27934
|
text-align: center;
|
|
@@ -27905,8 +27938,8 @@ nz-space-item {
|
|
|
27905
27938
|
color: rgba(0, 0, 0, 0.85);
|
|
27906
27939
|
}
|
|
27907
27940
|
.ant-water-mark {
|
|
27908
|
-
display: block;
|
|
27909
27941
|
position: relative;
|
|
27942
|
+
display: block;
|
|
27910
27943
|
}
|
|
27911
27944
|
.ant-color-picker {
|
|
27912
27945
|
position: absolute;
|
|
@@ -27941,11 +27974,11 @@ nz-space-item {
|
|
|
27941
27974
|
}
|
|
27942
27975
|
.ant-color-picker-saturation {
|
|
27943
27976
|
position: absolute;
|
|
27944
|
-
border-radius: inherit;
|
|
27945
27977
|
top: 0;
|
|
27946
|
-
left: 0;
|
|
27947
27978
|
right: 0;
|
|
27948
27979
|
bottom: 0;
|
|
27980
|
+
left: 0;
|
|
27981
|
+
border-radius: inherit;
|
|
27949
27982
|
}
|
|
27950
27983
|
.ant-color-picker-handler {
|
|
27951
27984
|
box-sizing: border-box;
|
|
@@ -27976,16 +28009,16 @@ nz-space-item {
|
|
|
27976
28009
|
background-size: 8px 8px;
|
|
27977
28010
|
}
|
|
27978
28011
|
.ant-color-picker-trigger {
|
|
28012
|
+
display: flex;
|
|
28013
|
+
align-items: center;
|
|
28014
|
+
justify-content: center;
|
|
27979
28015
|
min-width: 32px;
|
|
27980
28016
|
height: 32px;
|
|
27981
|
-
|
|
28017
|
+
padding: 3px;
|
|
27982
28018
|
border: 1px solid #f0f0f0;
|
|
28019
|
+
border-radius: 2px;
|
|
27983
28020
|
cursor: pointer;
|
|
27984
|
-
display: flex;
|
|
27985
|
-
align-items: center;
|
|
27986
|
-
justify-content: center;
|
|
27987
28021
|
transition: all 0.2s;
|
|
27988
|
-
padding: 3px;
|
|
27989
28022
|
}
|
|
27990
28023
|
.ant-color-picker-trigger:hover {
|
|
27991
28024
|
border-color: #1890ff;
|
|
@@ -28009,9 +28042,9 @@ nz-space-item {
|
|
|
28009
28042
|
position: relative;
|
|
28010
28043
|
width: 28px;
|
|
28011
28044
|
height: 28px;
|
|
28045
|
+
overflow: hidden;
|
|
28012
28046
|
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);
|
|
28013
28047
|
background-size: 50% 50%;
|
|
28014
|
-
overflow: hidden;
|
|
28015
28048
|
border-radius: 2px;
|
|
28016
28049
|
}
|
|
28017
28050
|
.ant-color-picker-color-block-inner {
|
|
@@ -28047,26 +28080,26 @@ nz-space-item {
|
|
|
28047
28080
|
margin-left: 4px;
|
|
28048
28081
|
}
|
|
28049
28082
|
.ant-color-picker-clear {
|
|
28083
|
+
position: relative;
|
|
28050
28084
|
width: 18px;
|
|
28051
28085
|
height: 18px;
|
|
28052
|
-
|
|
28086
|
+
margin-bottom: 4px;
|
|
28087
|
+
overflow: hidden;
|
|
28053
28088
|
border: 1px solid #f0f0f0;
|
|
28054
|
-
|
|
28089
|
+
border-radius: 2px;
|
|
28055
28090
|
cursor: pointer;
|
|
28056
|
-
overflow: hidden;
|
|
28057
|
-
margin-bottom: 4px;
|
|
28058
28091
|
}
|
|
28059
28092
|
.ant-color-picker-clear::after {
|
|
28060
|
-
content: "";
|
|
28061
28093
|
position: absolute;
|
|
28062
|
-
inset-inline-end: 1px;
|
|
28063
28094
|
top: 0;
|
|
28064
28095
|
display: block;
|
|
28065
28096
|
width: 40px;
|
|
28066
28097
|
height: 2px;
|
|
28067
|
-
transform-origin: right;
|
|
28068
|
-
transform: rotate(-45deg);
|
|
28069
28098
|
background-color: #f5222d;
|
|
28099
|
+
transform: rotate(-45deg);
|
|
28100
|
+
transform-origin: right;
|
|
28101
|
+
content: '';
|
|
28102
|
+
inset-inline-end: 1px;
|
|
28070
28103
|
}
|
|
28071
28104
|
.ant-color-picker-input-container {
|
|
28072
28105
|
display: flex;
|
|
@@ -28078,8 +28111,8 @@ nz-space-item {
|
|
|
28078
28111
|
font-size: 12px;
|
|
28079
28112
|
}
|
|
28080
28113
|
.ant-color-picker-input-container .ant-input-number {
|
|
28081
|
-
font-size: 12px;
|
|
28082
28114
|
width: auto;
|
|
28115
|
+
font-size: 12px;
|
|
28083
28116
|
}
|
|
28084
28117
|
.ant-color-picker-input-container .ant-input-number-sm input {
|
|
28085
28118
|
padding: 0 0 0 4px;
|
|
@@ -28094,8 +28127,8 @@ nz-space-item {
|
|
|
28094
28127
|
flex: 1;
|
|
28095
28128
|
}
|
|
28096
28129
|
.ant-color-picker-input-container .ant-color-picker-input .ant-color-picker-hex-input {
|
|
28097
|
-
padding: 0;
|
|
28098
28130
|
margin-right: 0px;
|
|
28131
|
+
padding: 0;
|
|
28099
28132
|
}
|
|
28100
28133
|
.ant-color-picker-input-container .ant-color-picker-input .ant-color-picker-hsb-input {
|
|
28101
28134
|
display: flex;
|
|
@@ -28129,9 +28162,9 @@ nz-space-item {
|
|
|
28129
28162
|
display: inline-block;
|
|
28130
28163
|
}
|
|
28131
28164
|
.ant-color-picker-inline .ant-color-picker-color-block {
|
|
28132
|
-
margin: 0;
|
|
28133
28165
|
width: 24px;
|
|
28134
28166
|
height: 24px;
|
|
28167
|
+
margin: 0;
|
|
28135
28168
|
}
|
|
28136
28169
|
.ant-color-picker-inline-lg .ant-color-picker-color-block {
|
|
28137
28170
|
width: 32px;
|
|
@@ -28142,6 +28175,10 @@ nz-space-item {
|
|
|
28142
28175
|
height: 16px;
|
|
28143
28176
|
}
|
|
28144
28177
|
.ant-hashCode {
|
|
28178
|
+
display: flex;
|
|
28179
|
+
flex-direction: column;
|
|
28180
|
+
align-items: center;
|
|
28181
|
+
justify-content: center;
|
|
28145
28182
|
box-sizing: border-box;
|
|
28146
28183
|
margin: 0;
|
|
28147
28184
|
padding: 0;
|
|
@@ -28149,10 +28186,6 @@ nz-space-item {
|
|
|
28149
28186
|
font-size: 12px;
|
|
28150
28187
|
line-height: 1.66667;
|
|
28151
28188
|
list-style: none;
|
|
28152
|
-
display: flex;
|
|
28153
|
-
flex-direction: column;
|
|
28154
|
-
align-items: center;
|
|
28155
|
-
justify-content: center;
|
|
28156
28189
|
cursor: pointer;
|
|
28157
28190
|
}
|
|
28158
28191
|
.ant-hashCode-header-copy {
|
|
@@ -28237,7 +28270,7 @@ nz-space-item {
|
|
|
28237
28270
|
.ant-hashCode-code-value-block {
|
|
28238
28271
|
height: 16px;
|
|
28239
28272
|
font-size: 12px;
|
|
28240
|
-
font-family: Menlo;
|
|
28273
|
+
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
28241
28274
|
}
|
|
28242
28275
|
.ant-hashCode-value-primary .ant-hashCode-code-value-block {
|
|
28243
28276
|
color: #fff;
|