2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
@import "../../tree/style/mixin";
|
|
|
|
@import "../../checkbox/style/mixin";
|
|
|
|
|
2016-10-20 21:28:50 +08:00
|
|
|
@select-prefix-cls: ~"@{ant-prefix}-select";
|
2016-09-14 16:18:33 +08:00
|
|
|
@select-tree-prefix-cls: ~"@{ant-prefix}-select-tree";
|
2016-01-28 15:29:29 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.antCheckboxFn(@checkbox-prefix-cls: ~"@{ant-prefix}-select-tree-checkbox");
|
2016-02-26 18:13:16 +08:00
|
|
|
|
|
|
|
.@{select-tree-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2015-12-31 14:38:35 +08:00
|
|
|
margin: 0;
|
2017-07-20 17:17:56 +08:00
|
|
|
padding: 0 4px;
|
|
|
|
margin-top: -4px;
|
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 {
|
2017-05-15 17:31:16 +08:00
|
|
|
> span {
|
2017-08-17 22:10:40 +08:00
|
|
|
font-weight: 500;
|
2016-01-07 19:05:55 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-31 14:38:35 +08:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 0 0 18px;
|
|
|
|
}
|
2017-05-18 14:28:48 +08:00
|
|
|
.@{select-tree-prefix-cls}-node-content-wrapper {
|
2015-12-31 14:38:35 +08:00
|
|
|
display: inline-block;
|
2017-05-18 14:28:48 +08:00
|
|
|
padding: 3px 5px;
|
2015-12-31 14:38:35 +08:00
|
|
|
border-radius: 2px;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
2016-11-08 20:50:59 +08:00
|
|
|
color: @text-color;
|
2017-06-27 14:25:10 +08:00
|
|
|
transition: all .3s;
|
2017-07-20 17:17:56 +08:00
|
|
|
width: ~"calc(100% - 24px)";
|
2016-01-30 16:53:49 +08:00
|
|
|
&:hover {
|
2017-05-03 22:57:14 +08:00
|
|
|
background-color: @item-hover-bg;
|
2016-01-30 16:53:49 +08:00
|
|
|
}
|
2016-02-26 18:13:16 +08:00
|
|
|
&.@{select-tree-prefix-cls}-node-selected {
|
2017-05-18 14:28:48 +08:00
|
|
|
background-color: @primary-2;
|
2016-01-30 16:53:49 +08:00
|
|
|
}
|
2017-05-18 14:28:48 +08:00
|
|
|
}
|
2017-08-03 15:52:31 +08:00
|
|
|
span {
|
2016-02-26 18:13:16 +08:00
|
|
|
&.@{select-tree-prefix-cls}-checkbox {
|
2017-06-27 14:25:10 +08:00
|
|
|
margin: 0 4px 0 0;
|
2017-07-20 17:17:56 +08:00
|
|
|
+ .@{select-tree-prefix-cls}-node-content-wrapper {
|
|
|
|
width: ~"calc(100% - 46px)";
|
|
|
|
}
|
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;
|
2017-05-18 14:28:48 +08:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2017-07-20 17:17:56 +08:00
|
|
|
line-height: 22px;
|
2015-12-31 14:38:35 +08:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
border: 0 none;
|
|
|
|
cursor: pointer;
|
|
|
|
outline: none;
|
2017-05-18 14:28:48 +08:00
|
|
|
text-align: center;
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
2018-08-25 15:51:07 +08:00
|
|
|
&.@{select-prefix-cls}-icon_loading {
|
|
|
|
.@{select-prefix-cls}-switcher-loading-icon {
|
2015-12-31 14:38:35 +08:00
|
|
|
display: inline-block;
|
2018-08-25 15:51:07 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
2017-08-03 15:52:31 +08:00
|
|
|
color: @primary-color;
|
2018-08-25 15:51:07 +08:00
|
|
|
transform: none;
|
|
|
|
font-size: 14px;
|
2018-09-01 20:11:13 +08:00
|
|
|
svg {
|
2018-08-25 15:51:07 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
|
|
|
}
|
2016-02-26 18:13:16 +08:00
|
|
|
&.@{select-tree-prefix-cls}-switcher {
|
2018-08-25 15:51:07 +08:00
|
|
|
position: relative;
|
2016-08-17 17:12:40 +08:00
|
|
|
&.@{select-tree-prefix-cls}-switcher-noop {
|
|
|
|
cursor: auto;
|
|
|
|
}
|
2017-08-03 15:52:31 +08:00
|
|
|
&.@{select-tree-prefix-cls}-switcher_open {
|
2017-03-28 17:51:45 +08:00
|
|
|
.antTreeSwitcherIcon();
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
2017-08-03 15:52:31 +08:00
|
|
|
&.@{select-tree-prefix-cls}-switcher_close {
|
2017-03-28 17:51:45 +08:00
|
|
|
.antTreeSwitcherIcon();
|
2018-08-25 15:51:07 +08:00
|
|
|
.@{select-prefix-cls}-switcher-icon {
|
|
|
|
svg {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
2017-04-10 16:49:21 +08:00
|
|
|
}
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
2018-08-25 15:51:07 +08:00
|
|
|
|
|
|
|
&.@{select-tree-prefix-cls}-switcher_open,
|
|
|
|
&.@{select-tree-prefix-cls}-switcher_close {
|
|
|
|
.@{select-prefix-cls}-switcher-loading-icon {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
color: @primary-color;
|
|
|
|
transform: none;
|
|
|
|
font-size: 14px;
|
2018-09-01 20:11:13 +08:00
|
|
|
svg {
|
2018-08-25 15:51:07 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-25 15:51:07 +08:00
|
|
|
|
|
|
|
.@{select-tree-prefix-cls}-treenode-loading {
|
|
|
|
.@{select-tree-prefix-cls}-iconEle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2015-12-31 14:38:35 +08:00
|
|
|
&-child-tree {
|
|
|
|
display: none;
|
|
|
|
&-open {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
2017-06-01 16:54:47 +08:00
|
|
|
li&-treenode-disabled {
|
2018-03-09 15:04:09 +08:00
|
|
|
> span:not(.@{select-tree-prefix-cls}-switcher),
|
2017-06-01 16:54:47 +08:00
|
|
|
> .@{select-tree-prefix-cls}-node-content-wrapper,
|
2018-03-09 15:04:09 +08:00
|
|
|
> .@{select-tree-prefix-cls}-node-content-wrapper span {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2016-01-07 19:05:55 +08:00
|
|
|
cursor: not-allowed;
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
2017-06-01 16:54:47 +08:00
|
|
|
> .@{select-tree-prefix-cls}-node-content-wrapper:hover {
|
|
|
|
background: transparent;
|
|
|
|
}
|
2015-12-31 14:38:35 +08:00
|
|
|
}
|
|
|
|
&-icon__open {
|
|
|
|
margin-right: 2px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
&-icon__close {
|
|
|
|
margin-right: 2px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
}
|
2016-05-08 16:05:36 +08:00
|
|
|
|
2016-10-20 21:28:50 +08:00
|
|
|
.@{select-prefix-cls}-tree-dropdown {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2016-10-20 21:28:50 +08:00
|
|
|
.@{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;
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
2016-10-20 21:28:50 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
&.@{select-prefix-cls}-search--hide {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.@{select-prefix-cls}-not-found {
|
|
|
|
cursor: not-allowed;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2016-10-20 21:28:50 +08:00
|
|
|
padding: 7px 16px;
|
|
|
|
display: block;
|
|
|
|
}
|
2016-08-03 11:33:23 +08:00
|
|
|
}
|