@delon/theme 18.0.2 → 18.2.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/compact.css +22 -0
- package/compact.min.css +1 -1
- package/dark.css +24 -2
- package/dark.min.css +1 -1
- package/default.css +22 -0
- 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 +5 -5
- 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 +10 -6
- 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 +9 -6
- package/esm2022/src/services/modal/modal.helper.mjs +33 -12
- 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 +26 -26
- package/fesm2022/layout-default.mjs.map +1 -1
- package/fesm2022/setting-drawer.mjs +10 -10
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme.mjs +105 -77
- package/fesm2022/theme.mjs.map +1 -1
- package/package.json +6 -6
- package/src/pipes/date/date.pipe.d.ts +1 -1
- package/src/services/menu/menu.service.d.ts +6 -0
- package/src/services/modal/modal.helper.d.ts +5 -1
- package/system/theme-dark.less +2 -0
- package/system/utils/_scrollbar.less +22 -0
- package/variable.css +22 -0
- package/variable.min.css +1 -1
package/dark.css
CHANGED
|
@@ -33826,7 +33826,7 @@ body,
|
|
|
33826
33826
|
.ant-drawer-wrapper-body,
|
|
33827
33827
|
.ant-anchor-wrapper,
|
|
33828
33828
|
textarea.ant-input {
|
|
33829
|
-
scrollbar-color: rgba(
|
|
33829
|
+
scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
|
|
33830
33830
|
scrollbar-width: thin;
|
|
33831
33831
|
}
|
|
33832
33832
|
body::-webkit-scrollbar,
|
|
@@ -33846,7 +33846,7 @@ body::-webkit-scrollbar-track,
|
|
|
33846
33846
|
.ant-drawer-wrapper-body::-webkit-scrollbar-track,
|
|
33847
33847
|
.ant-anchor-wrapper::-webkit-scrollbar-track,
|
|
33848
33848
|
textarea.ant-input::-webkit-scrollbar-track {
|
|
33849
|
-
box-shadow: inset 0 0 6px rgba(
|
|
33849
|
+
box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
|
|
33850
33850
|
}
|
|
33851
33851
|
body::-webkit-scrollbar-thumb,
|
|
33852
33852
|
.scrollbar::-webkit-scrollbar-thumb,
|
|
@@ -33858,6 +33858,24 @@ textarea.ant-input::-webkit-scrollbar-thumb {
|
|
|
33858
33858
|
background-color: transparent;
|
|
33859
33859
|
outline: 1px solid #333;
|
|
33860
33860
|
}
|
|
33861
|
+
/**
|
|
33862
|
+
* Hide scrollbar
|
|
33863
|
+
*
|
|
33864
|
+
* 隐藏滚动条
|
|
33865
|
+
*/
|
|
33866
|
+
.hide-scrollbar {
|
|
33867
|
+
scrollbar-width: none;
|
|
33868
|
+
scrollbar-color: transparent transparent;
|
|
33869
|
+
}
|
|
33870
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
33871
|
+
width: 1px;
|
|
33872
|
+
}
|
|
33873
|
+
.hide-scrollbar::-webkit-scrollbar-track {
|
|
33874
|
+
background: transparent;
|
|
33875
|
+
}
|
|
33876
|
+
.hide-scrollbar::-webkit-scrollbar-thumb {
|
|
33877
|
+
background-color: transparent;
|
|
33878
|
+
}
|
|
33861
33879
|
html {
|
|
33862
33880
|
touch-action: manipulation;
|
|
33863
33881
|
direction: ltr;
|
|
@@ -34658,9 +34676,13 @@ body {
|
|
|
34658
34676
|
display: block;
|
|
34659
34677
|
text-align: center;
|
|
34660
34678
|
}
|
|
34679
|
+
.st__btn-sub .ant-menu-title-content {
|
|
34680
|
+
width: 100%;
|
|
34681
|
+
}
|
|
34661
34682
|
.st__btn-sub .st__btn-text {
|
|
34662
34683
|
width: 100%;
|
|
34663
34684
|
color: inherit;
|
|
34685
|
+
display: block;
|
|
34664
34686
|
}
|
|
34665
34687
|
.st__btn-disabled .st__btn-text {
|
|
34666
34688
|
pointer-events: none;
|