@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/dark.css
CHANGED
|
@@ -27145,11 +27145,6 @@ a:focus {
|
|
|
27145
27145
|
vertical-align: middle;
|
|
27146
27146
|
border-radius: 4px;
|
|
27147
27147
|
}
|
|
27148
|
-
[dir='rtl'] .ant-table td > img,
|
|
27149
|
-
[dir='rtl'] .ant-table td .img {
|
|
27150
|
-
margin-right: inherit;
|
|
27151
|
-
margin-left: 4px;
|
|
27152
|
-
}
|
|
27153
27148
|
.ant-table-rep__title {
|
|
27154
27149
|
display: none;
|
|
27155
27150
|
}
|
|
@@ -27157,6 +27152,11 @@ a:focus {
|
|
|
27157
27152
|
.ant-table-rep__hide-header-footer .ant-table-footer {
|
|
27158
27153
|
display: none;
|
|
27159
27154
|
}
|
|
27155
|
+
[dir='rtl'] .ant-table td > img,
|
|
27156
|
+
[dir='rtl'] .ant-table td .img {
|
|
27157
|
+
margin-right: inherit;
|
|
27158
|
+
margin-left: 4px;
|
|
27159
|
+
}
|
|
27160
27160
|
@media screen and (max-width: 767px) {
|
|
27161
27161
|
.ant-table-rep__title {
|
|
27162
27162
|
display: inline-block;
|
|
@@ -27180,7 +27180,7 @@ a:focus {
|
|
|
27180
27180
|
text-align: center;
|
|
27181
27181
|
background: #303030;
|
|
27182
27182
|
}
|
|
27183
|
-
.ant-table-rep .ant-table-tbody > tr:nth-child(
|
|
27183
|
+
.ant-table-rep .ant-table-tbody > tr:nth-child(4n + 3) {
|
|
27184
27184
|
background: #0c0c0c;
|
|
27185
27185
|
}
|
|
27186
27186
|
.ant-table-rep .ant-table-tbody > tr > td {
|
|
@@ -31404,12 +31404,15 @@ body {
|
|
|
31404
31404
|
.st .nz-resizable-handle > i {
|
|
31405
31405
|
width: 1px;
|
|
31406
31406
|
height: 60%;
|
|
31407
|
-
background: #
|
|
31407
|
+
background: #434343;
|
|
31408
31408
|
}
|
|
31409
31409
|
.st .nz-resizable-preview {
|
|
31410
31410
|
border-width: 0;
|
|
31411
31411
|
border-right-width: 1px;
|
|
31412
31412
|
}
|
|
31413
|
+
.st .nz-resizable.ant-table-column-has-sorters .nz-resizable-handle {
|
|
31414
|
+
margin-right: 8px;
|
|
31415
|
+
}
|
|
31413
31416
|
.st .ant-table ~ nz-pagination > .ant-pagination {
|
|
31414
31417
|
margin-bottom: 0;
|
|
31415
31418
|
}
|
|
@@ -31611,6 +31614,9 @@ body {
|
|
|
31611
31614
|
.sv__vertical .sv__detail {
|
|
31612
31615
|
display: block;
|
|
31613
31616
|
}
|
|
31617
|
+
.sv__no-colon::after {
|
|
31618
|
+
content: ' ' !important;
|
|
31619
|
+
}
|
|
31614
31620
|
.se__title {
|
|
31615
31621
|
display: block;
|
|
31616
31622
|
float: none;
|
|
@@ -31714,6 +31720,9 @@ body {
|
|
|
31714
31720
|
.se__inline > .se__item:last-child {
|
|
31715
31721
|
margin-right: 0;
|
|
31716
31722
|
}
|
|
31723
|
+
.se__no-colon::after {
|
|
31724
|
+
content: ' ' !important;
|
|
31725
|
+
}
|
|
31717
31726
|
@media (max-width: 767px) {
|
|
31718
31727
|
.se__horizontal > .se__item {
|
|
31719
31728
|
display: block;
|