Update 1808
This commit is contained in:
@ -80,9 +80,57 @@
|
||||
}
|
||||
|
||||
.tui-grid-cell {
|
||||
&:last-child {
|
||||
input[type=checkbox] {
|
||||
margin-top: 8px;
|
||||
input[type=checkbox] {
|
||||
margin-top: 8px;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 1px solid;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
|
||||
&:checked {
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 1px;
|
||||
width: 5px;
|
||||
height: 9px;
|
||||
border: solid;
|
||||
border-width: 0 2px 2px 0;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tui-grid-layer-editing {
|
||||
input[type=checkbox] {
|
||||
margin-top: 8px;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border: 1px solid;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
|
||||
&:checked {
|
||||
&::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 1px;
|
||||
width: 5px;
|
||||
height: 9px;
|
||||
border: solid;
|
||||
border-width: 0 2px 2px 0;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -190,6 +238,35 @@
|
||||
#{$theme},
|
||||
"tui-grid-cell-borderStyle-darkmode"
|
||||
);
|
||||
|
||||
input[type=checkbox] {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-checkbox-border"
|
||||
);
|
||||
background: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-checkbox-bg"
|
||||
);
|
||||
|
||||
&:checked {
|
||||
background-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-btn-primary-bg"
|
||||
);
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-btn-primary-bg"
|
||||
);
|
||||
|
||||
&::after {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-checkbox-bg"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -640,6 +717,37 @@
|
||||
&-frozen-border {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
&-layer-editing {
|
||||
input[type=checkbox] {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-checkbox-border"
|
||||
);
|
||||
background: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-checkbox-bg"
|
||||
);
|
||||
|
||||
&:checked {
|
||||
background-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-btn-primary-bg"
|
||||
);
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-btn-primary-bg"
|
||||
);
|
||||
|
||||
&::after {
|
||||
border-color: map-deep-get($config,
|
||||
#{$theme},
|
||||
"ant-checkbox-bg"
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[class*="tui-grid-tree-wrapper"] {
|
||||
|
Reference in New Issue
Block a user