fix(core): update

This commit is contained in:
2021-08-27 13:38:08 +02:00
parent 54ce305cf1
commit 2f52f14cf9
6 changed files with 231 additions and 20 deletions

View File

@ -107,7 +107,7 @@ export class DeesInputCheckbox extends DeesElement {
border: 1px dashed ${cssManager.bdTheme('#666666', '#666666')};
}
.checkmark {
.checkbox .checkmark {
display: inline-block;
width: 22px;
height: 22px;
@ -116,16 +116,16 @@ export class DeesInputCheckbox extends DeesElement {
transform: rotate(45deg);
}
.checkmark_stem {
.checkbox .checkmark_stem {
position: absolute;
width: 3px;
height: 9px;
background-color: #ccc;
background-color: #fff;
left: 11px;
top: 6px;
}
.checkmark_kick {
.checkbox .checkmark_kick {
position: absolute;
width: 3px;
height: 3px;
@ -134,6 +134,10 @@ export class DeesInputCheckbox extends DeesElement {
top: 12px;
}
.checkbox.disabled .checkmark_stem, .checkbox.disabled .checkmark_kick {
background-color: ${cssManager.bdTheme('#333', '#fff')};
}
img {
padding: 4px;
}