@antv/s2-react-components
Version:
React components for S2
121 lines (98 loc) • 2.37 kB
text/less
@import '@antv/s2/esm/shared/styles/variables.less';
@normal-item-color: #d9eeff;
@checkable-item-color: #d3f4e5;
@checkable-child-color: #effbf6;
@large-span: 12px;
@normal-span: 4px;
@border-radius: 3px;
.@{switcher-cls-prefix}-item {
height: 24px;
border-radius: @border-radius;
display: flex;
&-text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
&.normal-item {
padding: 0 @large-span;
background-color: var(
~'@{css-var-prefix}-block-background',
@normal-item-color
);
align-items: center;
border: 1px solid var(~'@{css-var-prefix}-border', @normal-item-color);
}
&.checkable-item {
padding: 0 @normal-span;
background-color: var(
~'@{css-var-prefix}-block-background',
@checkable-item-color
);
align-items: baseline;
border: 1px solid var(~'@{css-var-prefix}-border', @checkable-item-color);
border-bottom-width: 0;
&:last-child {
border-bottom-width: 1px;
}
&.item-collapse {
transition: border-radius 0s 0.2s;
border-radius: @border-radius ;
}
&.unchecked {
color: var(~'@{css-var-prefix}-font-25', rgba(0, 0, 0, 0.25));
}
&:not(:last-child) {
border-radius: @border-radius @border-radius 0 0;
}
.ant-checkbox {
margin-right: @normal-span;
}
}
}
.@{switcher-cls-prefix}-normal-list,
.@{switcher-cls-prefix}-checkable-list {
border-radius: @border-radius;
& + & {
margin-top: @normal-span;
}
&.dragging {
box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}
&.disable-dragging {
cursor: not-allowed;
}
.child-items {
transition:
max-height 0.2s,
opacity 0.4s;
overflow: hidden;
max-height: 1000px;
.checkable-item {
padding: 0 @large-span;
background-color: var(
~'@{css-var-prefix}-block-background',
@checkable-child-color
);
margin-top: 0;
border-radius: 0;
&:not(:last-child) {
border-top-width: 0;
border-bottom-width: 0;
}
&:last-child {
border-top-width: 0;
border-radius: 0 0 @border-radius @border-radius;
}
}
&.item-hidden {
max-height: 0;
opacity: 0;
}
}
}
.@{switcher-cls-prefix}-tooltip {
.ant-tooltip-inner {
max-width: 180px;
}
}