@delon/theme 12.1.1 → 12.2.3
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/bundles/layout-blank.umd.js +3 -3
- package/bundles/layout-default.umd.js +4 -4
- package/bundles/layout-theme-btn.umd.js +4 -4
- package/bundles/setting-drawer.umd.js +4 -4
- package/bundles/theme.umd.js +55 -25
- package/bundles/theme.umd.js.map +1 -1
- package/compact.css +16 -7
- package/compact.min.css +1 -1
- package/dark.css +16 -7
- package/dark.min.css +1 -1
- package/default.css +16 -7
- package/default.min.css +1 -1
- package/esm2015/public_api.js +2 -1
- package/esm2015/src/router/optional-preloader.js +23 -0
- package/esm2015/src/services/i18n/i18n.js +15 -6
- package/esm2015/src/version.js +1 -1
- package/fesm2015/theme.js +43 -15
- package/fesm2015/theme.js.map +1 -1
- package/package.json +3 -3
- package/public_api.d.ts +1 -0
- package/src/router/optional-preloader.d.ts +20 -0
- package/src/services/i18n/i18n.d.ts +3 -0
- package/system/antd/_table.less +26 -15
- package/system/theme-default.less +1 -0
- package/theme.metadata.json +1 -1
package/compact.css
CHANGED
|
@@ -26582,11 +26582,6 @@ a:focus {
|
|
|
26582
26582
|
vertical-align: middle;
|
|
26583
26583
|
border-radius: 4px;
|
|
26584
26584
|
}
|
|
26585
|
-
[dir='rtl'] .ant-table td > img,
|
|
26586
|
-
[dir='rtl'] .ant-table td .img {
|
|
26587
|
-
margin-right: inherit;
|
|
26588
|
-
margin-left: 4px;
|
|
26589
|
-
}
|
|
26590
26585
|
.ant-table-rep__title {
|
|
26591
26586
|
display: none;
|
|
26592
26587
|
}
|
|
@@ -26594,6 +26589,11 @@ a:focus {
|
|
|
26594
26589
|
.ant-table-rep__hide-header-footer .ant-table-footer {
|
|
26595
26590
|
display: none;
|
|
26596
26591
|
}
|
|
26592
|
+
[dir='rtl'] .ant-table td > img,
|
|
26593
|
+
[dir='rtl'] .ant-table td .img {
|
|
26594
|
+
margin-right: inherit;
|
|
26595
|
+
margin-left: 4px;
|
|
26596
|
+
}
|
|
26597
26597
|
@media screen and (max-width: 767px) {
|
|
26598
26598
|
.ant-table-rep__title {
|
|
26599
26599
|
display: inline-block;
|
|
@@ -26617,7 +26617,7 @@ a:focus {
|
|
|
26617
26617
|
text-align: center;
|
|
26618
26618
|
background: #f0f0f0;
|
|
26619
26619
|
}
|
|
26620
|
-
.ant-table-rep .ant-table-tbody > tr:nth-child(
|
|
26620
|
+
.ant-table-rep .ant-table-tbody > tr:nth-child(4n + 3) {
|
|
26621
26621
|
background: #f9f9f9;
|
|
26622
26622
|
}
|
|
26623
26623
|
.ant-table-rep .ant-table-tbody > tr > td {
|
|
@@ -30841,12 +30841,15 @@ body {
|
|
|
30841
30841
|
.st .nz-resizable-handle > i {
|
|
30842
30842
|
width: 1px;
|
|
30843
30843
|
height: 60%;
|
|
30844
|
-
background: #
|
|
30844
|
+
background: #d9d9d9;
|
|
30845
30845
|
}
|
|
30846
30846
|
.st .nz-resizable-preview {
|
|
30847
30847
|
border-width: 0;
|
|
30848
30848
|
border-right-width: 1px;
|
|
30849
30849
|
}
|
|
30850
|
+
.st .nz-resizable.ant-table-column-has-sorters .nz-resizable-handle {
|
|
30851
|
+
margin-right: 8px;
|
|
30852
|
+
}
|
|
30850
30853
|
.st .ant-table ~ nz-pagination > .ant-pagination {
|
|
30851
30854
|
margin-bottom: 0;
|
|
30852
30855
|
}
|
|
@@ -31048,6 +31051,9 @@ body {
|
|
|
31048
31051
|
.sv__vertical .sv__detail {
|
|
31049
31052
|
display: block;
|
|
31050
31053
|
}
|
|
31054
|
+
.sv__no-colon::after {
|
|
31055
|
+
content: ' ' !important;
|
|
31056
|
+
}
|
|
31051
31057
|
.se__title {
|
|
31052
31058
|
display: block;
|
|
31053
31059
|
float: none;
|
|
@@ -31151,6 +31157,9 @@ body {
|
|
|
31151
31157
|
.se__inline > .se__item:last-child {
|
|
31152
31158
|
margin-right: 0;
|
|
31153
31159
|
}
|
|
31160
|
+
.se__no-colon::after {
|
|
31161
|
+
content: ' ' !important;
|
|
31162
|
+
}
|
|
31154
31163
|
@media (max-width: 767px) {
|
|
31155
31164
|
.se__horizontal > .se__item {
|
|
31156
31165
|
display: block;
|