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

140 lines
3.1 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../checkbox/style/mixin";
@import "./mixin";
@tree-prefix-cls: ~"@{ant-prefix}-tree";
.antCheckboxFn(@checkbox-prefix-cls: ~"@{ant-prefix}-tree-checkbox");
2015-08-20 16:55:42 +08:00
.@{tree-prefix-cls} {
2015-08-16 20:04:42 +08:00
margin: 0;
padding: 5px;
font-size: 12px;
2015-08-03 16:07:21 +08:00
li {
2015-08-16 20:04:42 +08:00
padding: 0;
2016-01-30 16:53:49 +08:00
margin: 7px 0;
2015-08-16 20:04:42 +08:00
list-style: none;
white-space: nowrap;
outline: 0;
2016-01-07 19:05:55 +08:00
a[draggable],
a[draggable="true"] {
user-select: none;
/* Required to make elements draggable in old WebKit */
-khtml-user-drag: element;
-webkit-user-drag: element;
}
&.drag-over {
> a[draggable] {
2016-01-28 15:29:29 +08:00
background-color: @primary-color;
2016-01-07 19:05:55 +08:00
color: white;
opacity: 0.8;
}
}
&.drag-over-gap-top {
> a[draggable] {
2016-01-07 21:05:28 +08:00
border-top: 2px @primary-color solid;
2016-01-07 19:05:55 +08:00
}
}
&.drag-over-gap-bottom {
> a[draggable] {
2016-01-07 21:05:28 +08:00
border-bottom: 2px @primary-color solid;
2016-01-07 19:05:55 +08:00
}
}
&.filter-node {
> a {
2016-01-07 21:05:28 +08:00
color: @error-color!important;
2016-01-07 19:05:55 +08:00
font-weight: bold!important;
}
}
2015-08-10 20:23:18 +08:00
ul {
2015-08-16 20:04:42 +08:00
margin: 0;
padding: 0 0 0 18px;
2015-08-03 16:07:21 +08:00
}
a {
2015-08-10 20:23:18 +08:00
display: inline-block;
2016-01-28 15:29:29 +08:00
padding: 1px 5px;
2015-12-05 13:46:52 +08:00
border-radius: 2px;
2015-08-16 20:04:42 +08:00
margin: 0;
cursor: pointer;
text-decoration: none;
vertical-align: top;
2015-08-14 23:28:20 +08:00
color: #666;
2016-01-30 16:53:49 +08:00
transition: all 0.3s ease;
&:hover {
background-color: tint(@primary-color, 90%);
}
&.@{tree-prefix-cls}-node-selected {
background-color: tint(@primary-color, 80%);
}
2015-08-03 16:07:21 +08:00
}
2015-08-10 20:23:18 +08:00
span {
2015-08-20 16:55:42 +08:00
&.@{tree-prefix-cls}-checkbox {
2016-01-30 16:53:49 +08:00
margin: 2px 4px 0 0;
2015-08-19 12:18:10 +08:00
}
2015-08-20 16:55:42 +08:00
&.@{tree-prefix-cls}-switcher,
&.@{tree-prefix-cls}-iconEle {
2015-08-16 20:04:42 +08:00
margin: 0;
width: 16px;
2016-01-30 16:53:49 +08:00
height: 16px;
line-height: 16px;
2015-08-16 20:04:42 +08:00
display: inline-block;
vertical-align: middle;
border: 0 none;
cursor: pointer;
outline: none;
}
2015-10-27 15:47:01 +08:00
&.@{tree-prefix-cls}-icon_loading {
&:after {
display: inline-block;
2016-07-25 14:03:56 +08:00
.iconfont-font("\e6a1");
2016-04-19 15:15:54 +08:00
animation: loadingCircle 1s infinite linear;
2016-07-13 16:12:44 +08:00
color: @primary-color;
2015-10-27 15:47:01 +08:00
}
}
2015-08-20 16:55:42 +08:00
&.@{tree-prefix-cls}-switcher {
2016-08-17 17:12:40 +08:00
&.@{tree-prefix-cls}-switcher-noop {
cursor: auto;
}
2015-08-20 16:55:42 +08:00
&.@{tree-prefix-cls}-roots_open,
&.@{tree-prefix-cls}-center_open,
&.@{tree-prefix-cls}-bottom_open,
&.@{tree-prefix-cls}-noline_open {
2015-08-19 21:19:11 +08:00
.antTreeSwitcherIcon();
2015-08-16 20:04:42 +08:00
}
2015-08-20 16:55:42 +08:00
&.@{tree-prefix-cls}-roots_close,
&.@{tree-prefix-cls}-center_close,
&.@{tree-prefix-cls}-bottom_close,
&.@{tree-prefix-cls}-noline_close {
2015-08-19 21:19:11 +08:00
.antTreeSwitcherIcon();
2015-11-14 00:21:12 +08:00
.ie-rotate(3);
2015-08-16 20:04:42 +08:00
&:after {
2015-11-14 00:21:12 +08:00
transform: rotate(270deg) scale(0.5);
2015-08-10 20:23:18 +08:00
}
}
}
2015-08-03 16:07:21 +08:00
}
2015-08-10 20:23:18 +08:00
}
2015-08-24 18:12:07 +08:00
&-child-tree {
display: none;
&-open {
display: block;
}
}
2015-08-10 20:23:18 +08:00
&-treenode-disabled {
2015-08-16 20:04:42 +08:00
>span,
2016-01-07 19:05:55 +08:00
>a,
>a span {
color: #ccc;
cursor: not-allowed;
2015-08-03 16:07:21 +08:00
}
}
&-icon__open {
margin-right: 2px;
vertical-align: top;
}
&-icon__close {
margin-right: 2px;
vertical-align: top;
}
2015-08-10 20:23:18 +08:00
}