Commit 662b576ac2088247cb58e295378f228462508a37
1 parent
42812162
fix(dark-theme): style for checked tree nodes
修复黑暗主题下已勾选的Tree的复选框的样式问题
Showing
4 changed files
with
7 additions
and
27 deletions
CHANGELOG.zh_CN.md
build/vite/plugin/theme.ts
... | ... | @@ -33,11 +33,6 @@ export function configThemePlugin(isBuild: boolean): Plugin[] { |
33 | 33 | return s; |
34 | 34 | case '.ant-steps-item-icon > .ant-steps-icon': |
35 | 35 | return s; |
36 | - default: | |
37 | - if (s.indexOf('.ant-alert-message') >= 0) { | |
38 | - console.log(s); | |
39 | - } | |
40 | - return s; | |
41 | 36 | } |
42 | 37 | return `[data-theme] ${s}`; |
43 | 38 | }, |
... | ... | @@ -78,19 +73,6 @@ export function configThemePlugin(isBuild: boolean): Plugin[] { |
78 | 73 | 'alert-error-border-color': '#58181c', |
79 | 74 | 'alert-error-bg-color': '#2a1215', |
80 | 75 | 'alert-error-icon-color': '#a61d24', |
81 | - | |
82 | - // @alert-success-border-color: @green-3; | |
83 | - // @alert-success-bg-color: @green-1; | |
84 | - // @alert-success-icon-color: @success-color; | |
85 | - // @alert-info-border-color: @primary-3; | |
86 | - // @alert-info-bg-color: @primary-1; | |
87 | - // @alert-info-icon-color: @info-color; | |
88 | - // @alert-warning-border-color: @gold-3; | |
89 | - // @alert-warning-bg-color: @gold-1; | |
90 | - // @alert-warning-icon-color: @warning-color; | |
91 | - // @alert-error-border-color: @red-3; | |
92 | - // @alert-error-bg-color: @red-1; | |
93 | - // @alert-error-icon-color: @error-color; | |
94 | 76 | }, |
95 | 77 | }), |
96 | 78 | ]; | ... | ... |
src/design/ant/index.less
src/design/theme.less
... | ... | @@ -8,7 +8,7 @@ html[data-theme='light'] { |
8 | 8 | } |
9 | 9 | } |
10 | 10 | |
11 | -html[data-theme='dark'] { | |
11 | +[data-theme='dark'] { | |
12 | 12 | .text-secondary { |
13 | 13 | color: #8b949e; |
14 | 14 | } |
... | ... | @@ -23,14 +23,6 @@ html[data-theme='dark'] { |
23 | 23 | 0 1px 0 0 #434343 inset; |
24 | 24 | } |
25 | 25 | |
26 | - html[data-theme='light'] { | |
27 | - .ant-alert-message, | |
28 | - .ant-alert-with-description .ant-alert-message, | |
29 | - .ant-alert-description { | |
30 | - color: rgba(0, 0, 0, 0.85); | |
31 | - } | |
32 | - } | |
33 | - | |
34 | 26 | .ant-checkbox-checked .ant-checkbox-inner::after { |
35 | 27 | border-top: 0; |
36 | 28 | border-left: 0; | ... | ... |