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

187 lines
4.5 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} {
.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;
}
.@{select-tree-prefix-cls}-node-content-wrapper {
2015-12-31 14:38:35 +08:00
display: inline-block;
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 {
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 {
background-color: @primary-2;
2016-01-30 16:53:49 +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;
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;
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);
}
}
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;
}
}
li&-treenode-disabled {
> span:not(.@{select-tree-prefix-cls}-switcher),
> .@{select-tree-prefix-cls}-node-content-wrapper,
> .@{select-tree-prefix-cls}-node-content-wrapper span {
color: @disabled-color;
2016-01-07 19:05:55 +08:00
cursor: not-allowed;
2015-12-31 14:38:35 +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;
}
}
.@{select-prefix-cls}-tree-dropdown {
.reset-component;
.@{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
}