Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/lib/button-toggle/_button-toggle-theme.scss
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,7 +6,7 @@
$background: map-get($theme, background);

.mat-button-toggle-focus-overlay {
background-color: mat-color($background, dark-overlay);
background-color: mat-color($background, focused-button);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/button-toggle/button-toggle.scss
Original file line numberDiff line numberDiff line change
Expand Up@@ -39,7 +39,7 @@ $mat-button-toggle-border-radius: 2px !default;
position: relative;
}

.mat-button-toggle.cdk-focused .mat-button-toggle-focus-overlay {
.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay {
opacity: 1;
}

Expand Down
6 changes: 4 additions & 2 deletions src/lib/core/theming/_palette.scss
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,6 +10,8 @@ $black-87-opacity: rgba(black, 0.87);
$white-87-opacity: rgba(white, 0.87);
$black-12-opacity: rgba(black, 0.12);
$white-12-opacity: rgba(white, 0.12);
$black-6-opacity: rgba(black, 0.06);
$white-6-opacity: rgba(white, 0.06);

$mat-red: (
50: #ffebee,
Expand DownExpand Up@@ -653,7 +655,7 @@ $mat-light-theme-background: (
dialog: white,
disabled-button: $black-12-opacity,
raised-button: white,
dark-overlay: $black-12-opacity,
focused-button: $black-6-opacity,
);

// Background palette for dark themes.
Expand All@@ -666,7 +668,7 @@ $mat-dark-theme-background: (
dialog: map_get($mat-grey, 800),
disabled-button: $white-12-opacity,
raised-button: map-get($mat-grey, 800),
dark-overlay: $white-12-opacity,
focused-button: $white-6-opacity,
);

// Foreground palette for light themes.
Expand Down