You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
4.6 KiB
194 lines
4.6 KiB
@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");
|
|
|
|
.@{tree-prefix-cls} {
|
|
margin: 0;
|
|
padding: 5px;
|
|
font-size: @font-size-base;
|
|
li {
|
|
padding: 4px 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
white-space: nowrap;
|
|
outline: 0;
|
|
a[draggable],
|
|
a[draggable="true"] {
|
|
user-select: none;
|
|
border-top: 2px transparent solid;
|
|
border-bottom: 2px transparent solid;
|
|
margin-top: -2px;
|
|
/* Required to make elements draggable in old WebKit */
|
|
-khtml-user-drag: element;
|
|
-webkit-user-drag: element;
|
|
}
|
|
&.drag-over {
|
|
> a[draggable] {
|
|
background-color: @primary-color;
|
|
color: white;
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
&.drag-over-gap-top {
|
|
> a[draggable] {
|
|
border-top-color: @primary-color;
|
|
}
|
|
}
|
|
&.drag-over-gap-bottom {
|
|
> a[draggable] {
|
|
border-bottom-color: @primary-color;
|
|
}
|
|
}
|
|
&.filter-node {
|
|
> a {
|
|
color: @highlight-color!important;
|
|
font-weight: bold!important;
|
|
}
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding: 0 0 0 18px;
|
|
}
|
|
a {
|
|
display: inline-block;
|
|
padding: 1px 5px;
|
|
border-radius: 2px;
|
|
margin: 0;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
vertical-align: top;
|
|
color: @text-color;
|
|
transition: all 0.3s ease;
|
|
&:hover {
|
|
background-color: @primary-1;
|
|
}
|
|
&.@{tree-prefix-cls}-node-selected {
|
|
background-color: @primary-2;
|
|
}
|
|
}
|
|
span {
|
|
&.@{tree-prefix-cls}-checkbox {
|
|
margin: 0 4px 0 2px;
|
|
vertical-align: middle;
|
|
}
|
|
&.@{tree-prefix-cls}-switcher,
|
|
&.@{tree-prefix-cls}-iconEle {
|
|
margin: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 16px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
border: 0 none;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
&.@{tree-prefix-cls}-icon_loading {
|
|
&:after {
|
|
display: inline-block;
|
|
.iconfont-font("\e6ae");
|
|
animation: loadingCircle 1s infinite linear;
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
&.@{tree-prefix-cls}-switcher {
|
|
&.@{tree-prefix-cls}-switcher-noop {
|
|
cursor: default;
|
|
}
|
|
&.@{tree-prefix-cls}-roots_open,
|
|
&.@{tree-prefix-cls}-center_open,
|
|
&.@{tree-prefix-cls}-bottom_open,
|
|
&.@{tree-prefix-cls}-noline_open {
|
|
.antTreeSwitcherIcon();
|
|
}
|
|
&.@{tree-prefix-cls}-roots_close,
|
|
&.@{tree-prefix-cls}-center_close,
|
|
&.@{tree-prefix-cls}-bottom_close,
|
|
&.@{tree-prefix-cls}-noline_close {
|
|
.antTreeSwitcherIcon();
|
|
.ie-rotate(3);
|
|
&:after {
|
|
transform: rotate(270deg) scale(0.59);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&:last-child > span {
|
|
&.@{tree-prefix-cls}-switcher,
|
|
&.@{tree-prefix-cls}-iconEle {
|
|
&:before {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
> li {
|
|
&:first-child {
|
|
padding-top: 7px;
|
|
}
|
|
&:last-child {
|
|
padding-bottom: 7px;
|
|
}
|
|
}
|
|
&-child-tree {
|
|
display: none;
|
|
&-open {
|
|
display: block;
|
|
}
|
|
}
|
|
&-treenode-disabled {
|
|
> span,
|
|
> a,
|
|
> a span {
|
|
color: @disabled-color;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
&-icon__open {
|
|
margin-right: 2px;
|
|
vertical-align: top;
|
|
}
|
|
&-icon__close {
|
|
margin-right: 2px;
|
|
vertical-align: top;
|
|
}
|
|
// Tree with line
|
|
&&-show-line {
|
|
li {
|
|
position: relative;
|
|
span {
|
|
&.@{tree-prefix-cls}-switcher {
|
|
background: @component-background;
|
|
&.@{tree-prefix-cls}-switcher-noop {
|
|
.antTreeShowLineIcon("tree-doc-icon");
|
|
}
|
|
&.@{tree-prefix-cls}-roots_open,
|
|
&.@{tree-prefix-cls}-center_open,
|
|
&.@{tree-prefix-cls}-bottom_open,
|
|
&.@{tree-prefix-cls}-noline_open {
|
|
.antTreeShowLineIcon("tree-showline-open-icon");
|
|
}
|
|
&.@{tree-prefix-cls}-roots_close,
|
|
&.@{tree-prefix-cls}-center_close,
|
|
&.@{tree-prefix-cls}-bottom_close,
|
|
&.@{tree-prefix-cls}-noline_close {
|
|
.antTreeShowLineIcon("tree-showline-close-icon");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
li:not(:last-child):before {
|
|
content: ' ';
|
|
width: 1px;
|
|
border-left: 1px solid @border-color-base;
|
|
height: 100%;
|
|
position: absolute;
|
|
left: 6px;
|
|
margin: 18px 0;
|
|
}
|
|
}
|
|
}
|
|
|