🎉 Add close on click and background overlays

This commit is contained in:
Andrés Moya 2021-09-20 14:20:52 +02:00
parent f208731746
commit bbdf1152c1
9 changed files with 153 additions and 24 deletions

View file

@ -43,3 +43,19 @@
grid-row: 1 / span 2;
}
}
.viewer-overlay {
position: absolute;
}
.viewer-overlay-background {
position: absolute;
top: 0;
left: 0;
&.visible {
background-color: rgb(0, 0, 0, 0.2);
}
}

View file

@ -222,6 +222,31 @@
}
}
.input-checkbox {
label {
color: $color-gray-20;
}
label::before {
background-color: transparent;
width: 16px;
height: 16px;
}
label::after {
width: 16px;
height: 16px;
}
input:checked + label::before {
border-width: 1px;
}
input:checked + label::after {
font-size: 0.8rem;
}
}
.element-set-subtitle {
color: $color-gray-20;
font-size: $fs11;