Skip to content
Draft
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
18 changes: 17 additions & 1 deletion src/styles/clipper.less
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,23 @@
forced-color-adjust: none;
filter: drop-shadow(0 0 1px CanvasText) drop-shadow(0 0 1px CanvasText);
}


// Ensure selected state of font radio buttons is visible in high contrast themes (Aquatic, Desert, etc.)
.control-button.active {
forced-color-adjust: none;
background-color: Highlight !important;
color: HighlightText !important;
border: 2px solid HighlightText !important;
}

// Ensure selected state of mode buttons is visible in high contrast themes
.modeButton.selected {
forced-color-adjust: none;
background-color: Highlight !important;
color: HighlightText !important;
border: 2px solid HighlightText !important;
}

}

@media screen and (-ms-high-contrast: black-on-white) {
Expand Down