ant-design-blazor/components/tree/style/mixin.less

269 lines
5.9 KiB
Plaintext
Raw Normal View History

@import '../../style/mixins/index';
@tree-prefix-cls: ~'@{ant-prefix}-tree';
2020-07-01 21:38:23 +08:00
@tree-node-prefix-cls: ~'@{tree-prefix-cls}-treenode';
@select-tree-prefix-cls: ~'@{ant-prefix}-select-tree';
2020-05-25 12:38:07 +08:00
@tree-motion: ~'@{ant-prefix}-motion-collapse';
2021-01-09 09:07:02 +08:00
@tree-node-padding: (@padding-xs / 2);
.antTreeSwitcherIcon(@type: 'tree-default-open-icon') {
.@{tree-prefix-cls}-switcher-icon,
.@{select-tree-prefix-cls}-switcher-icon {
display: inline-block;
2020-10-25 23:07:27 +08:00
font-size: 10px;
2020-05-25 12:38:07 +08:00
vertical-align: baseline;
svg {
transition: transform 0.3s;
}
}
}
2020-12-01 11:02:28 +08:00
.drop-indicator() {
.@{tree-prefix-cls}-drop-indicator {
position: absolute;
// it should displayed over the following node
z-index: 1;
height: 2px;
background-color: @primary-color;
border-radius: 1px;
pointer-events: none;
&::after {
position: absolute;
top: -3px;
left: -6px;
width: 8px;
height: 8px;
background-color: transparent;
border: 2px solid @primary-color;
border-radius: 50%;
content: '';
}
}
}
2020-05-25 12:38:07 +08:00
.antTreeFn(@custom-tree-prefix-cls) {
@custom-tree-node-prefix-cls: ~'@{custom-tree-prefix-cls}-treenode';
2021-01-09 09:07:02 +08:00
.reset-component();
2020-09-11 15:44:34 +08:00
background: @tree-bg;
border-radius: @border-radius-base;
transition: background-color 0.3s;
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
&-focused:not(:hover):not(&-active-focused) {
background: @primary-1;
}
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
// =================== Virtual List ===================
&-list-holder-inner {
align-items: flex-start;
}
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
&.@{custom-tree-prefix-cls}-block-node {
.@{custom-tree-prefix-cls}-list-holder-inner {
align-items: stretch;
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
// >>> Title
.@{custom-tree-prefix-cls}-node-content-wrapper {
flex: auto;
2020-05-25 12:38:07 +08:00
}
}
2020-09-11 15:44:34 +08:00
}
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
// ===================== TreeNode =====================
.@{custom-tree-node-prefix-cls} {
display: flex;
align-items: flex-start;
2020-11-15 17:03:30 +08:00
padding: 0 0 @tree-node-padding 0;
2020-09-11 15:44:34 +08:00
outline: none;
// Disabled
&-disabled {
// >>> Title
.@{custom-tree-prefix-cls}-node-content-wrapper {
color: @disabled-color;
cursor: not-allowed;
&:hover {
background: transparent;
2020-05-25 12:38:07 +08:00
}
}
}
2020-09-11 15:44:34 +08:00
&-active .@{custom-tree-prefix-cls}-node-content-wrapper {
background: @tree-node-hover-bg;
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
}
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
// >>> Indent
&-indent {
align-self: stretch;
white-space: nowrap;
user-select: none;
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
&-unit {
display: inline-block;
2020-05-25 12:38:07 +08:00
width: @tree-title-height;
2020-09-11 15:44:34 +08:00
}
}
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
// >>> Switcher
2020-11-15 17:03:30 +08:00
&-switcher {
2020-09-11 15:44:34 +08:00
.antTreeSwitcherIcon();
2020-11-15 17:03:30 +08:00
position: relative;
2020-09-11 15:44:34 +08:00
flex: none;
2020-11-15 17:03:30 +08:00
align-self: stretch;
2020-09-11 15:44:34 +08:00
width: @tree-title-height;
margin: 0;
line-height: @tree-title-height;
text-align: center;
cursor: pointer;
2020-11-15 17:03:30 +08:00
user-select: none;
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
&-noop {
cursor: default;
}
2020-07-01 21:38:23 +08:00
2020-09-11 15:44:34 +08:00
&_close {
.@{custom-tree-prefix-cls}-switcher-icon {
svg {
transform: rotate(-90deg);
2020-07-01 21:38:23 +08:00
}
}
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
&-loading-icon {
color: @primary-color;
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
&-leaf-line {
2021-01-09 09:07:02 +08:00
position: relative;
2020-09-11 15:44:34 +08:00
z-index: 1;
display: inline-block;
width: 100%;
height: 100%;
&::before {
position: absolute;
2020-11-15 17:03:30 +08:00
top: 0;
bottom: -@tree-node-padding;
2020-09-11 15:44:34 +08:00
margin-left: -1px;
border-left: 1px solid @normal-color;
content: ' ';
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
&::after {
position: absolute;
width: @tree-title-height - 14px;
height: @tree-title-height - 10px;
margin-left: -1px;
border-bottom: 1px solid @normal-color;
content: ' ';
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
}
}
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
// >>> Checkbox
2021-01-09 09:07:02 +08:00
&-checkbox {
2020-09-11 15:44:34 +08:00
top: initial;
margin: ((@tree-title-height - @checkbox-size) / 2) 8px 0 0;
}
// >>> Title
& &-node-content-wrapper {
2020-12-01 11:02:28 +08:00
position: relative;
z-index: auto;
2020-09-11 15:44:34 +08:00
min-height: @tree-title-height;
margin: 0;
padding: 0 4px;
color: inherit;
line-height: @tree-title-height;
background: transparent;
border-radius: @border-radius-base;
cursor: pointer;
2020-12-01 11:02:28 +08:00
transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
2020-09-11 15:44:34 +08:00
&:hover {
background-color: @tree-node-hover-bg;
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
&.@{custom-tree-prefix-cls}-node-selected {
background-color: @tree-node-selected-bg;
2020-05-25 12:38:07 +08:00
}
2020-09-11 15:44:34 +08:00
// Icon
.@{custom-tree-prefix-cls}-iconEle {
display: inline-block;
width: @tree-title-height;
height: @tree-title-height;
line-height: @tree-title-height;
text-align: center;
vertical-align: top;
&:empty {
display: none;
2020-05-25 12:38:07 +08:00
}
}
2020-09-11 15:44:34 +08:00
}
2021-01-09 09:07:02 +08:00
// https://github.com/ant-design/ant-design/issues/28217
&-unselectable &-node-content-wrapper:hover {
background-color: transparent;
}
2020-09-11 15:44:34 +08:00
// ==================== Draggable =====================
&-node-content-wrapper[draggable='true'] {
2020-12-01 11:02:28 +08:00
line-height: @tree-title-height;
2020-09-11 15:44:34 +08:00
user-select: none;
2020-12-01 11:02:28 +08:00
.drop-indicator();
2020-09-11 15:44:34 +08:00
}
2020-12-01 11:02:28 +08:00
.@{custom-tree-node-prefix-cls}.drop-container {
2020-09-11 15:44:34 +08:00
> [draggable] {
2020-12-01 11:02:28 +08:00
box-shadow: 0 0 0 2px @primary-color;
2020-09-11 15:44:34 +08:00
}
}
// ==================== Show Line =====================
&-show-line {
// ================ Indent lines ================
.@{custom-tree-prefix-cls}-indent {
&-unit {
position: relative;
height: 100%;
2020-05-25 12:38:07 +08:00
2020-09-11 15:44:34 +08:00
&::before {
position: absolute;
2020-11-15 17:03:30 +08:00
top: 0;
2021-01-09 09:07:02 +08:00
right: (@tree-title-height / 2);
2020-11-15 17:03:30 +08:00
bottom: -@tree-node-padding;
2020-09-11 15:44:34 +08:00
border-right: 1px solid @border-color-base;
content: '';
2020-05-25 12:38:07 +08:00
}
2020-11-15 17:03:30 +08:00
&-end {
&::before {
display: none;
}
2020-09-11 15:44:34 +08:00
}
2020-05-25 12:38:07 +08:00
}
}
2020-09-11 15:44:34 +08:00
// ============== Cover Background ==============
.@{custom-tree-prefix-cls}-switcher {
background: @component-background;
2020-11-15 17:03:30 +08:00
&-line-icon {
2020-12-01 11:02:28 +08:00
vertical-align: -0.225em;
2020-11-15 17:03:30 +08:00
}
2020-09-11 15:44:34 +08:00
}
2020-05-25 12:38:07 +08:00
}
}
2020-07-01 21:38:23 +08:00
.@{tree-node-prefix-cls}-leaf-last {
.@{tree-prefix-cls}-switcher {
&-leaf-line {
&::before {
2020-11-15 17:03:30 +08:00
top: auto !important;
bottom: auto !important;
2020-07-01 21:38:23 +08:00
height: @tree-title-height - 10px !important;
}
}
}
}