Skip to content

Commit 707e6a6

Browse files
authored
fix: unify border on all overlays in forced color mode (#9931)
1 parent 7fef08b commit 707e6a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/notification/src/styles/vaadin-notification-card-base-styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const notificationCardStyles = css`
2727
2828
@media (forced-colors: active) {
2929
[part='overlay'] {
30-
border: 3px solid;
30+
border: 3px solid !important;
3131
}
3232
}
3333
`;

packages/overlay/src/styles/vaadin-overlay-base-styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export const overlayStyles = css`
8181
8282
@media (forced-colors: active) {
8383
[part='overlay'] {
84-
border: 3px solid;
84+
border: 3px solid !important;
8585
}
8686
}
8787
`;

packages/tooltip/src/styles/vaadin-tooltip-overlay-base-styles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const tooltipOverlayStyles = css`
5353
5454
@media (forced-colors: active) {
5555
[part='overlay'] {
56-
border: 1px dashed;
56+
border: 1px dashed !important;
5757
}
5858
}
5959
`;

0 commit comments

Comments
 (0)