@delon/theme 18.1.0 → 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 +22 -0
- 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 +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 +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 +25 -25
- package/fesm2022/setting-drawer.mjs +10 -10
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme.mjs +99 -75
- package/fesm2022/theme.mjs.map +1 -1
- package/package.json +6 -6
- package/src/services/menu/menu.service.d.ts +6 -0
- package/src/services/modal/modal.helper.d.ts +5 -1
- package/system/utils/_scrollbar.less +22 -0
- package/variable.css +22 -0
- package/variable.min.css +1 -1
package/default.css
CHANGED
|
@@ -33295,6 +33295,24 @@ textarea.ant-input::-webkit-scrollbar-thumb {
|
|
|
33295
33295
|
background-color: transparent;
|
|
33296
33296
|
outline: 1px solid #333;
|
|
33297
33297
|
}
|
|
33298
|
+
/**
|
|
33299
|
+
* Hide scrollbar
|
|
33300
|
+
*
|
|
33301
|
+
* 隐藏滚动条
|
|
33302
|
+
*/
|
|
33303
|
+
.hide-scrollbar {
|
|
33304
|
+
scrollbar-width: none;
|
|
33305
|
+
scrollbar-color: transparent transparent;
|
|
33306
|
+
}
|
|
33307
|
+
.hide-scrollbar::-webkit-scrollbar {
|
|
33308
|
+
width: 1px;
|
|
33309
|
+
}
|
|
33310
|
+
.hide-scrollbar::-webkit-scrollbar-track {
|
|
33311
|
+
background: transparent;
|
|
33312
|
+
}
|
|
33313
|
+
.hide-scrollbar::-webkit-scrollbar-thumb {
|
|
33314
|
+
background-color: transparent;
|
|
33315
|
+
}
|
|
33298
33316
|
html {
|
|
33299
33317
|
touch-action: manipulation;
|
|
33300
33318
|
direction: ltr;
|
|
@@ -34095,9 +34113,13 @@ body {
|
|
|
34095
34113
|
display: block;
|
|
34096
34114
|
text-align: center;
|
|
34097
34115
|
}
|
|
34116
|
+
.st__btn-sub .ant-menu-title-content {
|
|
34117
|
+
width: 100%;
|
|
34118
|
+
}
|
|
34098
34119
|
.st__btn-sub .st__btn-text {
|
|
34099
34120
|
width: 100%;
|
|
34100
34121
|
color: inherit;
|
|
34122
|
+
display: block;
|
|
34101
34123
|
}
|
|
34102
34124
|
.st__btn-disabled .st__btn-text {
|
|
34103
34125
|
pointer-events: none;
|