Browse Source
Merge in VISUAL/fineui from ~DAILER/fineui:master to master * commit '02430532f0dd251b821922f3522c0c714ba6ba7b': JSY-17842 fix: 解决LIST_ITEM_HEIGHT对线的影响 无JIRA 整理去掉无用代码 DESIGN-4160 feat: 复选树节点,某一个节点支持灰化,复选框也灰化,并且前边的展开收起是正常的es6
Dailer
3 years ago
5 changed files with 59 additions and 174 deletions
@ -1,28 +1,42 @@ |
|||||||
@import "../../index.less"; |
@import "../../index.less"; |
||||||
@import "../../image.less"; |
|
||||||
@import "../../lib/icon.less"; |
@import "../../lib/icon.less"; |
||||||
.bi-tree-expander-popup.line:before { |
|
||||||
|
.bi-tree-expander-popup.line { |
||||||
|
|
||||||
|
&:before { |
||||||
|
border-left: 1px dashed @border-color-dark-gray-line; |
||||||
position: absolute; |
position: absolute; |
||||||
content: ""; |
content: ""; |
||||||
height: 100%; |
height: 100%; |
||||||
width: 24px; |
left: -1px; |
||||||
.imagePath(@icon-tree-vertical-line-1, 0, 0, repeat-y); |
} |
||||||
} |
|
||||||
|
|
||||||
.bi-tree-expander-popup.line.solid:before { |
&.solid:before { |
||||||
.imagePath(@icon-tree-solid-vertical-line-1, 0, 0, repeat-y); |
border-left: 1px solid @border-color-dark-gray-line; |
||||||
width: 24px; |
position: absolute; |
||||||
left: 8px; |
content: ""; |
||||||
|
height: 100%; |
||||||
|
left: -1px; |
||||||
|
} |
||||||
} |
} |
||||||
|
|
||||||
.bi-theme-dark { |
.bi-theme-dark { |
||||||
.bi-tree-expander-popup.line:before { |
.bi-tree-expander-popup.line { |
||||||
width: 24px; |
|
||||||
.imagePath(@icon-tree-vertical-line-1-theme-dark, 0, 0, repeat-y); |
&:before { |
||||||
|
border-left: 1px dashed @border-color-dark-gray-line-theme-dark; |
||||||
|
position: absolute; |
||||||
|
content: ""; |
||||||
|
height: 100%; |
||||||
|
left: -1px; |
||||||
|
} |
||||||
|
|
||||||
|
&.solid:before { |
||||||
|
border-left: 1px solid @border-color-dark-gray-line-theme-dark; |
||||||
|
position: absolute; |
||||||
|
content: ""; |
||||||
|
height: 100%; |
||||||
|
left: -1px; |
||||||
} |
} |
||||||
.bi-tree-expander-popup.line.solid:before { |
|
||||||
.imagePath(@icon-tree-solid-vertical-line-1-theme-dark, 0, 0, repeat-y); |
|
||||||
width: 24px; |
|
||||||
left: 8px; |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue