This commit is contained in:
2023-03-28 10:34:44 +02:00
parent f803effbbd
commit f7e0f37528
428 changed files with 9982 additions and 100 deletions
@@ -0,0 +1,49 @@
.md-checkbox{
.md-checkbox-container{
border: 1px solid rgba(0, 0, 0, .54);
border-radius: 3px;
.md-ripple{
overflow: hidden;
}
}
&.md-checked .md-checkbox-container{
&:after{
border-color: $brand-primary !important;
top: 1px;
left: 6px;
}
}
.md-checkbox-label{
font-weight: 400;
color: #aaa;
padding-left: 10px;
}
&.md-theme-default.md-checked .md-checkbox-container{
background-color: transparent !important;
border-color: inherit;
}
&.md-theme-default.md-checked .md-ripple{
color: inherit;
}
&.md-disabled .md-checkbox-label,
&.md-disabled .md-checkbox-container{
opacity: .26;
border-color: rgba(0, 0, 0, .54) !important;
}
&.md-checked.md-disabled .md-checkbox-container{
background-color: transparent !important;
border-color: rgba(0, 0, 0, .54) !important;
opacity: .26;
&:after{
border-color: rgba(0, 0, 0, .54) !important;
}
}
}