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

141 lines
3.3 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../tree/style/mixin";
@import "../../checkbox/style/mixin";
@select-prefix-cls: ~"@{ant-prefix}-select";
@select-tree-prefix-cls: ~"@{ant-prefix}-select-tree";
2016-01-28 15:29:29 +08:00
.antCheckboxFn(@checkbox-prefix-cls: ~"@{ant-prefix}-select-tree-checkbox");
2016-02-26 18:13:16 +08:00
.@{select-tree-prefix-cls} {
2015-12-31 14:38:35 +08:00
margin: 0;
2016-01-28 19:16:24 +08:00
padding: 8px;
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
2015-12-31 14:38:35 +08:00
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 {
font-weight: bold !important;
2016-01-07 19:05:55 +08:00
}
}
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;
2016-11-08 20:50:59 +08:00
color: @text-color;
2016-01-30 16:53:49 +08:00
transition: all 0.3s ease;
&:hover {
background-color: @primary-1;
2016-01-30 16:53:49 +08:00
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-node-selected {
background-color: @primary-2;
2016-01-30 16:53:49 +08:00
}
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 {
display: inline-block;
2016-12-08 17:01:51 +08:00
.iconfont-font("\e64d");
2015-12-31 14:38:35 +08:00
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 {
2016-08-17 17:12:40 +08:00
&.@{select-tree-prefix-cls}-switcher-noop {
cursor: auto;
}
2016-02-26 18:13:16 +08:00
&.@{select-tree-prefix-cls}-roots_open,
&.@{select-tree-prefix-cls}-center_open,
&.@{select-tree-prefix-cls}-bottom_open,
&.@{select-tree-prefix-cls}-noline_open {
.antTreeSwitcherIcon("open");
2015-12-31 14:38:35 +08:00
}
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 {
.antTreeSwitcherIcon("close");
2015-12-31 14:38:35 +08:00
}
}
}
}
&-child-tree {
display: none;
&-open {
display: block;
}
}
&-treenode-disabled {
> span,
> a,
> a span {
color: @disabled-color;
2016-01-07 19:05:55 +08:00
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;
}
}
.@{select-prefix-cls}-tree-dropdown {
.@{select-prefix-cls}-dropdown-search {
display: block;
padding: 4px;
.@{select-prefix-cls}-search__field__wrap {
width: 100%;
}
.@{select-prefix-cls}-search__field {
padding: 4px 7px;
width: 100%;
box-sizing: border-box;
border: @border-width-base @border-style-base @border-color-base;
border-radius: 4px;
outline: none;
}
&.@{select-prefix-cls}-search--hide {
display: none;
}
}
.@{select-prefix-cls}-not-found {
cursor: not-allowed;
color: @disabled-color;
padding: 7px 16px;
display: block;
}
2016-08-03 11:33:23 +08:00
}