ant-design/style/components/tree.less

95 lines
2.7 KiB
Plaintext
Raw Normal View History

2015-08-06 09:17:40 +08:00
@treePrefixCls: ant-tree;
2015-08-03 16:07:21 +08:00
2015-08-14 23:28:20 +08:00
@import "../mixins/iconfont";
@openIcon: '\e60f';
.switcher_icon() {
position: relative;
&:after {
.iconfont-size-under-12px(6px);
content: @openIcon;
display: inline-block;
font-family: 'anticon';
font-weight: bold;
position: absolute;
top: 10px;
right: 4px;
color: #666;
}
}
2015-08-03 16:07:21 +08:00
.@{treePrefixCls} {
2015-08-14 23:28:20 +08:00
margin:0; padding:5px; font-size: 12px;
2015-08-03 16:07:21 +08:00
li {
2015-08-10 20:23:18 +08:00
padding: 0; margin: 0;
list-style: none; white-space: nowrap; outline: 0;
ul {
margin:0; padding:0 0 0 18px;
&.@{treePrefixCls}-line{
background:url(https://t.alipayobjects.com/images/T13BtfXl0mXXXXXXXX.gif) 0 0 repeat-y;
}
2015-08-03 16:07:21 +08:00
}
a {
2015-08-10 20:23:18 +08:00
display: inline-block;
2015-08-03 16:07:21 +08:00
padding:1px 3px 0 0; margin:0;
2015-08-10 20:23:18 +08:00
cursor:pointer; height:20px;
text-decoration:none; vertical-align:top;
2015-08-14 23:28:20 +08:00
color: #666;
2015-08-03 16:07:21 +08:00
}
2015-08-10 20:23:18 +08:00
span {
line-height:20px; margin-right:2px;
&.@{treePrefixCls}-button {
line-height:0; margin:0; width:16px; height:16px;
display: inline-block; vertical-align:middle;
border:0 none; cursor: pointer;outline:none;
background-color:transparent; background-repeat:no-repeat; background-attachment: scroll;
background-image:url("https://t.alipayobjects.com/images/T1NcthXkFdXXXXXXXX.png");
&.@{treePrefixCls}-switcher {
&-disabled {
background: #fff; position: relative;
&:after{content: '-'; position: absolute; top: 8px; left: 6px; color: gray;}
}
2015-08-14 23:28:20 +08:00
background-position: 0 20px;
&.@{treePrefixCls}-roots_open,
&.@{treePrefixCls}-center_open,
&.@{treePrefixCls}-bottom_open,
&.@{treePrefixCls}-noline_open{ .switcher_icon(); }
&.@{treePrefixCls}-roots_close,
&.@{treePrefixCls}-center_close,
&.@{treePrefixCls}-bottom_close,
&.@{treePrefixCls}-noline_close{
.switcher_icon();
&:after{
.ie-rotate(3);
transform: rotate(270deg) scale(0.5);
}
}
2015-08-10 20:23:18 +08:00
}
2015-08-15 23:45:25 +08:00
&.@{treePrefixCls}-checkbox {
2015-08-14 23:28:20 +08:00
width: 15px; height: 15px; margin: 0 3px 0 0;
2015-08-15 23:45:25 +08:00
background-position:0 0;
2015-08-10 20:23:18 +08:00
&-disabled {
background-position: 0 -28px;
}
2015-08-15 23:45:25 +08:00
&.@{treePrefixCls}-checkbox-checked {background-position:-14px 0}
&.@{treePrefixCls}-checkbox-indeterminate {background-position:-14px -30px}
2015-08-10 20:23:18 +08:00
}
}
2015-08-03 16:07:21 +08:00
}
2015-08-10 20:23:18 +08:00
}
&-treenode-disabled {
>span, >a {
color: gray;
2015-08-03 16:07:21 +08:00
}
}
&-icon__open {
margin-right: 2px;
background-position: -110px -16px;
vertical-align: top;
}
&-icon__close {
margin-right: 2px;
background-position: -110px 0;
vertical-align: top;
}
2015-08-10 20:23:18 +08:00
}