8abdbfee1642332688f030f53d22b995a21ce814 pulled Adwaita tooltip selectors,
but in the meantime the colors were also set to Adwaita's. Push back the same
behaviour as before because it's better for visually-impaired users.
&.background {
// background-color needs to be set this way otherwise it gets drawn twice
// see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details.
- background-color: transparentize(black, 0.1);
+ background-color: $bg_color;
background-clip: padding-box;
- border: 1px solid $borders_color;
+ border: 2px solid $fg_color;
}
padding: 4px; /* not working */
* { // Yeah this is ugly
padding: 4px;
background-color: transparent;
- color: white;
+ color: $fg_color;
}
}
/************ Tooltips * */
tooltip { padding: 4px; /* not working */ border-radius: 5px; box-shadow: none; }
-tooltip.background { background-color: rgba(0, 0, 0, 0.9); background-clip: padding-box; border: 1px solid gray; }
+tooltip.background { background-color: #000; background-clip: padding-box; border: 2px solid #fff; }
tooltip decoration { background-color: transparent; }
-tooltip * { padding: 4px; background-color: transparent; color: white; }
+tooltip * { padding: 4px; background-color: transparent; color: #fff; }
/***************** Color Chooser * */
colorswatch { box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px #000; }
/************ Tooltips * */
tooltip { padding: 4px; /* not working */ border-radius: 5px; box-shadow: none; }
-tooltip.background { background-color: rgba(0, 0, 0, 0.9); background-clip: padding-box; border: 1px solid gray; }
+tooltip.background { background-color: #fff; background-clip: padding-box; border: 2px solid #000; }
tooltip decoration { background-color: transparent; }
-tooltip * { padding: 4px; background-color: transparent; color: white; }
+tooltip * { padding: 4px; background-color: transparent; color: #000; }
/***************** Color Chooser * */
colorswatch { box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px #fff; }