We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d68a0 commit 39bc218Copy full SHA for 39bc218
styles/theme-medium.css
@@ -621,11 +621,14 @@ div.warning a:focus {
621
}
622
623
.search-modal__result:hover {
624
- background-color: var(--dark-blue-color);
+ /* Simulates 33% opacity by blending --dark-blue-color with --dark-grey-color.
625
+ * TODO: Use rgb(var(--dark-blue-color) / 33%) once widely supported.
626
+ * More info: https://caniuse.com/mdn-css_types_color_rgb_relative_syntax */
627
+ background-color: #3c4053;
628
629
630
.search-modal__result[aria-selected="true"] {
- background-color: var(--dark-magenta-color);
631
+ background-color: var(--dark-blue-color);
632
633
634
.search-modal__result-content {
0 commit comments