Skip to content

Commit 71133d7

Browse files
authoredJun 14, 2021
fix: cookies dialog button contrast (#1010)
- fix cookies dialog button contrast in dark mode Fixes #1008
1 parent b7af311 commit 71133d7

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed
 

‎material.angular.io/src/app/shared/cookie-popup/_cookie-popup-theme.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
app-cookie-popup {
1313
.popup {
1414
color: if($is-dark-theme,
15-
map.get(map.get(mat.$grey-palette, contrast), 50),
16-
map.get(mat.$dark-theme-foreground-palette, secondary-text)
15+
map.get(mat.$dark-theme-foreground-palette, secondary-text),
16+
map.get(map.get(mat.$grey-palette, contrast), 50)
1717
);
18-
background: if($is-dark-theme, map.get(mat.$grey-palette, 50), #252525);
18+
background: if($is-dark-theme, #252525, map.get(mat.$grey-palette, 50));
1919
}
2020
}
2121
}

‎material.angular.io/src/app/shared/cookie-popup/cookie-popup.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
<a
66
href="https://policies.google.com/technologies/cookies"
77
mat-button
8-
color="accent"
98
target="_blank"
109
rel="noopener">More details</a>
11-
<button mat-button color="accent" (click)="accept()">Ok, Got it</button>
10+
<button mat-button color="primary" (click)="accept()">Ok, Got it</button>
1211
</div>
1312
</div>

0 commit comments

Comments
 (0)