first commit

This commit is contained in:
2024-10-25 23:02:37 +02:00
commit faeb2e52e8
7653 changed files with 1095335 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
// Checkboxes/Radio Contextual Skins
.checkbox-variant(@brand, @color) {
@color-light: lighten(@color, 6%);
.radio-custom.radio-@{brand} label:before,
.checkbox-custom.checkbox-@{brand} label:before {
border-color: @color-light;
}
.radio-custom.radio-@{brand} input[type=radio]:checked + label:after,
.radio-custom.radio-@{brand} input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-@{brand} input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-@{brand} input[type=radio]:checked + label:after {
background-color: @color-light;
color: @color-light;
}
.checkbox-custom.fill.checkbox-@{brand} label:before {
background-color: @color-light;
}
}
// Checkbox/Radio Light Skin
.checkbox-light-variant(@brand, @color) {
.radio-custom.radio-@{brand} label:before,
.checkbox-custom.checkbox-@{brand} label:before {
border-color: #eee;
}
.radio-custom.radio-@{brand} input[type=radio]:checked + label:after,
.radio-custom.radio-@{brand} input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-@{brand} input[type=checkbox]:checked + label:after,
.checkbox-custom.checkbox-@{brand} input[type=radio]:checked + label:after {
background-color: #666;
color: #666 !important;
}
.checkbox-custom.fill.checkbox-@{brand} label:before {
background-color: #eee;
}
}