ant-design/components/tree-select/style/index.less

116 lines
2.7 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../tree/style/mixin";
@import "../../checkbox/style/mixin";
2016-02-26 18:13:16 +08:00
@select-tree-prefix-cls: ant-select-tree;
2016-01-28 15:29:29 +08:00
2016-02-26 18:13:16 +08:00
.antCheckboxFn(@checkbox-prefix-cls: ant-select-tree-checkbox);
.@{select-tree-prefix-cls} {
2015-12-31 14:38:35 +08:00
margin: 0;
2016-01-28 19:16:24 +08:00
padding: 8px;
2015-12-31 14:38:35 +08:00
font-size: 12px;
li {
padding: 0;
2016-01-30 16:53:49 +08:00
margin: 8px 0;
2015-12-31 14:38:35 +08:00
list-style: none;
white-space: nowrap;
outline: 0;
2016-01-07 19:05:55 +08:00
&.filter-node {
> a {
2016-01-28 15:29:29 +08:00
color: @error-color!important;
2016-01-07 19:05:55 +08:00
font-weight: bold!important;
}
}
2015-12-31 14:38:35 +08:00
ul {
margin: 0;
padding: 0 0 0 18px;
}
a {
display: inline-block;
2016-01-28 15:29:29 +08:00
padding: 1px 5px;
2015-12-31 14:38:35 +08:00
border-radius: 2px;
margin: 0;
cursor: pointer;
text-decoration: none;
vertical-align: top;
color: #666;
2016-01-30 16:53:49 +08:00
transition: all 0.3s ease;
&:hover {
background-color: tint(@primary-color, 90%);
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-node-selected {
2016-01-30 16:53:49 +08:00
background-color: tint(@primary-color, 80%);
}
2015-12-31 14:38:35 +08:00
}
span {
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-checkbox {
2016-01-30 16:53:49 +08:00
margin: 2px 4px 0 0;
2015-12-31 14:38:35 +08:00
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-switcher,
&.@{select-tree-prefix-cls}-iconEle {
2015-12-31 14:38:35 +08:00
margin: 0;
width: 16px;
2016-01-30 16:53:49 +08:00
height: 16px;
line-height: 16px;
2015-12-31 14:38:35 +08:00
display: inline-block;
vertical-align: middle;
border: 0 none;
cursor: pointer;
outline: none;
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-icon_loading {
2015-12-31 14:38:35 +08:00
&:after {
content: '\e6a1';
display: inline-block;
font-family: 'anticon';
font-weight: bold;
2016-04-19 15:15:54 +08:00
animation: loadingCircle 1s infinite linear;
2015-12-31 14:38:35 +08:00
margin-top: 8px;
}
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-switcher {
&.@{select-tree-prefix-cls}-roots_open,
&.@{select-tree-prefix-cls}-center_open,
&.@{select-tree-prefix-cls}-bottom_open,
&.@{select-tree-prefix-cls}-noline_open {
2015-12-31 14:38:35 +08:00
.antTreeSwitcherIcon();
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-roots_close,
&.@{select-tree-prefix-cls}-center_close,
&.@{select-tree-prefix-cls}-bottom_close,
&.@{select-tree-prefix-cls}-noline_close {
2015-12-31 14:38:35 +08:00
.antTreeSwitcherIcon();
.ie-rotate(3);
&:after {
transform: rotate(270deg) scale(0.5);
}
}
}
}
}
&-child-tree {
display: none;
&-open {
display: block;
}
}
&-treenode-disabled {
> span,
> a,
> a span {
2016-01-07 19:05:55 +08:00
color: #ccc;
cursor: not-allowed;
2015-12-31 14:38:35 +08:00
}
}
&-icon__open {
margin-right: 2px;
vertical-align: top;
}
&-icon__close {
margin-right: 2px;
vertical-align: top;
}
}