@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/default.css
CHANGED
|
@@ -26583,11 +26583,6 @@ a:focus {
|
|
|
26583
26583
|
vertical-align: middle;
|
|
26584
26584
|
border-radius: 4px;
|
|
26585
26585
|
}
|
|
26586
|
-
[dir='rtl'] .ant-table td > img,
|
|
26587
|
-
[dir='rtl'] .ant-table td .img {
|
|
26588
|
-
margin-right: inherit;
|
|
26589
|
-
margin-left: 4px;
|
|
26590
|
-
}
|
|
26591
26586
|
.ant-table-rep__title {
|
|
26592
26587
|
display: none;
|
|
26593
26588
|
}
|
|
@@ -26595,6 +26590,11 @@ a:focus {
|
|
|
26595
26590
|
.ant-table-rep__hide-header-footer .ant-table-footer {
|
|
26596
26591
|
display: none;
|
|
26597
26592
|
}
|
|
26593
|
+
[dir='rtl'] .ant-table td > img,
|
|
26594
|
+
[dir='rtl'] .ant-table td .img {
|
|
26595
|
+
margin-right: inherit;
|
|
26596
|
+
margin-left: 4px;
|
|
26597
|
+
}
|
|
26598
26598
|
@media screen and (max-width: 767px) {
|
|
26599
26599
|
.ant-table-rep__title {
|
|
26600
26600
|
display: inline-block;
|
|
@@ -26618,7 +26618,7 @@ a:focus {
|
|
|
26618
26618
|
text-align: center;
|
|
26619
26619
|
background: #f0f0f0;
|
|
26620
26620
|
}
|
|
26621
|
-
.ant-table-rep .ant-table-tbody > tr:nth-child(
|
|
26621
|
+
.ant-table-rep .ant-table-tbody > tr:nth-child(4n + 3) {
|
|
26622
26622
|
background: #f9f9f9;
|
|
26623
26623
|
}
|
|
26624
26624
|
.ant-table-rep .ant-table-tbody > tr > td {
|
|
@@ -30842,12 +30842,15 @@ body {
|
|
|
30842
30842
|
.st .nz-resizable-handle > i {
|
|
30843
30843
|
width: 1px;
|
|
30844
30844
|
height: 60%;
|
|
30845
|
-
background: #
|
|
30845
|
+
background: #d9d9d9;
|
|
30846
30846
|
}
|
|
30847
30847
|
.st .nz-resizable-preview {
|
|
30848
30848
|
border-width: 0;
|
|
30849
30849
|
border-right-width: 1px;
|
|
30850
30850
|
}
|
|
30851
|
+
.st .nz-resizable.ant-table-column-has-sorters .nz-resizable-handle {
|
|
30852
|
+
margin-right: 8px;
|
|
30853
|
+
}
|
|
30851
30854
|
.st .ant-table ~ nz-pagination > .ant-pagination {
|
|
30852
30855
|
margin-bottom: 0;
|
|
30853
30856
|
}
|
|
@@ -31049,6 +31052,9 @@ body {
|
|
|
31049
31052
|
.sv__vertical .sv__detail {
|
|
31050
31053
|
display: block;
|
|
31051
31054
|
}
|
|
31055
|
+
.sv__no-colon::after {
|
|
31056
|
+
content: ' ' !important;
|
|
31057
|
+
}
|
|
31052
31058
|
.se__title {
|
|
31053
31059
|
display: block;
|
|
31054
31060
|
float: none;
|
|
@@ -31152,6 +31158,9 @@ body {
|
|
|
31152
31158
|
.se__inline > .se__item:last-child {
|
|
31153
31159
|
margin-right: 0;
|
|
31154
31160
|
}
|
|
31161
|
+
.se__no-colon::after {
|
|
31162
|
+
content: ' ' !important;
|
|
31163
|
+
}
|
|
31155
31164
|
@media (max-width: 767px) {
|
|
31156
31165
|
.se__horizontal > .se__item {
|
|
31157
31166
|
display: block;
|