Gimp/themes/Default/common-dark.css
Alx Sa 820e96c67b Themes: Fix button shadow on dark theme hover
Resolves #10477.

The dark theme box-shadow for buttons does not blend well
when hovering over it, compared to the light & gray themes.
This patch adds an additional CSS rule to make the box-shadow
no longer clash in dark theme.
2023-12-14 19:39:54 +00:00

37 lines
948 B
CSS

/* The specific light theme interface styles for GIMP 3.0 */
/* Theme specific colors are defined in gimp-dark.css */
/* Hint for debugging themes:
* first enable the GTK inspector with
gsettings set org.gtk.Settings.Debug enable-inspector-keybinding true
* then (after restarting GIMP) call it up with ctrl+shift+i
* or from GIMP's UI: File > Debug > Start GtkInspector
*/
@import url("common.css");
/* Highlight icons in Grid View when hovered over */
iconview:hover {
background-color: @fg-color;
}
/*
* Paned separator handles
*/
paned.horizontal > separator {
background-image: url("ui/separator-handle-v-dark.svg");
background-color: @bg-color;
}
paned.vertical > separator {
background-image: url("ui/separator-handle-h-dark.svg");
background-color: @bg-color;
}
/* Top highlight for buttons */
button:not(.flat) {
box-shadow: 0 1px @extreme-selected-color inset;
}
button:not(.flat):hover {
box-shadow: none;
}