@delon/theme 21.0.0-next.1 → 21.0.1
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 +426 -619
- package/compact.min.css +1 -1
- package/dark.css +421 -614
- package/dark.min.css +1 -1
- package/default.css +421 -614
- package/default.min.css +1 -1
- package/fesm2022/layout-default.mjs +25 -25
- package/fesm2022/setting-drawer.mjs +13 -27
- package/fesm2022/setting-drawer.mjs.map +1 -1
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme.mjs +87 -83
- package/fesm2022/theme.mjs.map +1 -1
- package/layout-default/style/_aside.less +3 -1
- package/layout-default/style/_header.less +3 -3
- package/layout-default/style/_layout.less +2 -2
- package/layout-default/style/_progress-bar.less +3 -1
- package/layout-default/style/fix/_reuse-tab.less +1 -1
- package/package.json +6 -6
- package/setting-drawer/style/index.less +0 -6
- package/system/antd/_modal.less +2 -1
- package/system/antd/_table.less +2 -1
- package/system/theme-variable.less +18 -18
- package/system/utils/_border.less +1 -1
- package/types/theme.d.ts +2 -2
- package/variable.css +421 -614
- package/variable.min.css +1 -1
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
margin-top: @alain-default-header-hg;
|
|
9
9
|
backface-visibility: hidden;
|
|
10
10
|
background-color: @alain-default-aside-bg;
|
|
11
|
-
transition:
|
|
11
|
+
transition:
|
|
12
|
+
width 0.2s @alain-default-ease,
|
|
13
|
+
translate 0.2s @alain-default-ease;
|
|
12
14
|
-webkit-overflow-scrolling: touch;
|
|
13
15
|
|
|
14
16
|
&::after {
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
.@{ant-prefix}-input-affix-wrapper {
|
|
132
132
|
border: none;
|
|
133
133
|
color: #fff;
|
|
134
|
-
background-color: rgb(255
|
|
134
|
+
background-color: rgb(255 255 255 / 0.2);
|
|
135
135
|
|
|
136
136
|
&::placeholder {
|
|
137
137
|
color: #fff;
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
}
|
|
146
146
|
.@{ant-prefix}-input-group-addon,
|
|
147
147
|
.@{ant-prefix}-input-affix-wrapper {
|
|
148
|
-
|
|
148
|
+
.anticon {
|
|
149
149
|
color: #fff;
|
|
150
150
|
transition:
|
|
151
151
|
color 300ms,
|
|
@@ -167,7 +167,7 @@
|
|
|
167
167
|
}
|
|
168
168
|
.@{ant-prefix}-input-group-addon,
|
|
169
169
|
.@{ant-prefix}-input-affix-wrapper {
|
|
170
|
-
|
|
170
|
+
.anticon {
|
|
171
171
|
transform: rotate(90deg);
|
|
172
172
|
color: @grey-8;
|
|
173
173
|
}
|
|
@@ -52,12 +52,12 @@ body {
|
|
|
52
52
|
color: #929292;
|
|
53
53
|
background-color: @alain-default-content-heading-bg;
|
|
54
54
|
|
|
55
|
-
>h1 {
|
|
55
|
+
> h1 {
|
|
56
56
|
margin-bottom: 0;
|
|
57
57
|
font-size: 18px;
|
|
58
58
|
font-weight: normal;
|
|
59
59
|
|
|
60
|
-
>small {
|
|
60
|
+
> small {
|
|
61
61
|
display: block;
|
|
62
62
|
font-size: 12px;
|
|
63
63
|
color: @muted-color;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delon/theme",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.1",
|
|
4
4
|
"author": "cipchk<cipchk@qq.com>",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"component"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"ng-zorro-antd": "^21.0.
|
|
25
|
-
"@delon/acl": "^21.0.
|
|
26
|
-
"@delon/abc": "^21.0.
|
|
27
|
-
"@delon/form": "^21.0.
|
|
28
|
-
"@delon/util": "^21.0.
|
|
24
|
+
"ng-zorro-antd": "^21.0.1",
|
|
25
|
+
"@delon/acl": "^21.0.1",
|
|
26
|
+
"@delon/abc": "^21.0.1",
|
|
27
|
+
"@delon/form": "^21.0.1",
|
|
28
|
+
"@delon/util": "^21.0.1",
|
|
29
29
|
"tslib": "^2.3.0"
|
|
30
30
|
},
|
|
31
31
|
"module": "fesm2022/theme.mjs",
|
|
@@ -35,7 +35,6 @@
|
|
|
35
35
|
|
|
36
36
|
&__theme {
|
|
37
37
|
overflow: hidden;
|
|
38
|
-
margin-top: 24px;
|
|
39
38
|
|
|
40
39
|
&-tag {
|
|
41
40
|
cursor: pointer;
|
|
@@ -72,11 +71,6 @@
|
|
|
72
71
|
font-size: 20px;
|
|
73
72
|
color: #fff;
|
|
74
73
|
}
|
|
75
|
-
|
|
76
|
-
&-opened {
|
|
77
|
-
z-index: @zindex-modal-mask + 1;
|
|
78
|
-
right: @setting-drawer-width;
|
|
79
|
-
}
|
|
80
74
|
}
|
|
81
75
|
}
|
|
82
76
|
|
package/system/antd/_modal.less
CHANGED
package/system/antd/_table.less
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
@root-entry-name: variable;
|
|
4
4
|
|
|
5
5
|
@{html-selector} {
|
|
6
|
-
--grey-1:
|
|
7
|
-
--grey-2:
|
|
8
|
-
--grey-3:
|
|
9
|
-
--grey-4:
|
|
10
|
-
--grey-5:
|
|
11
|
-
--grey-6:
|
|
12
|
-
--grey-7:
|
|
13
|
-
--grey-8:
|
|
14
|
-
--grey-9:
|
|
6
|
+
--grey-1: #fff;
|
|
7
|
+
--grey-2: #fafafa;
|
|
8
|
+
--grey-3: #f5f5f5;
|
|
9
|
+
--grey-4: #f0f0f0;
|
|
10
|
+
--grey-5: #d9d9d9;
|
|
11
|
+
--grey-6: #bfbfbf;
|
|
12
|
+
--grey-7: #8c8c8c;
|
|
13
|
+
--grey-8: #595959;
|
|
14
|
+
--grey-9: #434343;
|
|
15
15
|
--grey-10: #262626;
|
|
16
16
|
--grey-11: #1f1f1f;
|
|
17
17
|
--grey-12: #141414;
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
// grey
|
|
22
|
-
@grey-1:
|
|
23
|
-
@grey-2:
|
|
24
|
-
@grey-3:
|
|
25
|
-
@grey-4:
|
|
26
|
-
@grey-5:
|
|
27
|
-
@grey-6:
|
|
28
|
-
@grey-7:
|
|
29
|
-
@grey-8:
|
|
30
|
-
@grey-9:
|
|
22
|
+
@grey-1: var(--grey-1);
|
|
23
|
+
@grey-2: var(--grey-2);
|
|
24
|
+
@grey-3: var(--grey-3);
|
|
25
|
+
@grey-4: var(--grey-4);
|
|
26
|
+
@grey-5: var(--grey-5);
|
|
27
|
+
@grey-6: var(--grey-6);
|
|
28
|
+
@grey-7: var(--grey-7);
|
|
29
|
+
@grey-8: var(--grey-8);
|
|
30
|
+
@grey-9: var(--grey-9);
|
|
31
31
|
@grey-10: var(--grey-10);
|
|
32
32
|
@grey-11: var(--grey-11);
|
|
33
33
|
@grey-12: var(--grey-12);
|
package/types/theme.d.ts
CHANGED
|
@@ -569,9 +569,9 @@ interface ModalHelperDragOptions {
|
|
|
569
569
|
*/
|
|
570
570
|
declare class ModalHelper {
|
|
571
571
|
private readonly srv;
|
|
572
|
-
private readonly
|
|
572
|
+
private readonly injector;
|
|
573
573
|
private readonly doc;
|
|
574
|
-
private
|
|
574
|
+
private buildDrag;
|
|
575
575
|
/**
|
|
576
576
|
* 构建一个对话框
|
|
577
577
|
*
|