Skip to content

Commit e76343b

Browse files
crisbetodevversion
authored andcommittedAug 26, 2022
fix: lighthouse check failing in v15 (#1164)
The MDC buttons have a more specific selector for the button color which was breaking the color contrast check.
1 parent d2c0ec2 commit e76343b

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed
 

‎material.angular.io/src/app/shared/navbar/navbar.scss

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
}
1212
}
1313

14+
.mat-mdc-button-base:not(:disabled) {
15+
color: inherit;
16+
}
17+
1418
.flex-spacer {
1519
flex-grow: 1;
1620
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.mat-mdc-button-base:not(:disabled) {
2+
color: inherit;
3+
}

‎material.angular.io/src/app/shared/version-picker/version-picker.ts

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ interface VersionInfo {
1818
@Component({
1919
selector: 'version-picker',
2020
templateUrl: './version-picker.html',
21+
styleUrls: ['./version-picker.scss']
2122
})
2223
export class VersionPicker {
2324
/** The currently running version of Material. */

0 commit comments

Comments
 (0)
Please sign in to comment.