Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions src/components/checkbox/checkbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ md-checkbox {
width: $md-checkbox-size;

[dir="rtl"] & {
margin:{
margin: {
left: $md-checkbox-item-spacing;
right: auto;
}
Expand All @@ -265,9 +265,7 @@ md-checkbox {
.md-checkbox-background {
@extend %md-checkbox-outer-box;

align-items: center;
background-color: $md-checkbox-background-color;
opacity: 0;
align-items: center;
display: inline-flex;
justify-content: center;
transition: background-color $md-checkbox-transition-duration
Expand Down Expand Up @@ -333,15 +331,15 @@ md-checkbox {
.md-checkbox-mixedmark {
transform: scaleX(1) rotate(-45deg);
}

.md-checkbox-background {
opacity: 1;
background-color: $md-checkbox-background-color;
}
}

.md-checkbox-indeterminate {
.md-checkbox-background {
opacity: 1;
background-color: $md-checkbox-background-color;
}

.md-checkbox-checkmark {
Expand All @@ -359,6 +357,13 @@ md-checkbox {
}
}


.md-checkbox-unchecked {
.md-checkbox-background {
background-color: transparent;
}
}

.md-checkbox-disabled {
// NOTE(traviskaufman): While the spec calls for translucent blacks/whites for disabled colors,
// this does not work well with elements layered on top of one another. To get around this we
Expand Down