Gimp/themes/Default/common-light.css
Stanislav Grinkov 49cbe651a6
themes: Add three-dot handle to paned separators ...
to improve their accessibility to Default, Gray,
and Compact themes.

Resolves: #9144
2023-02-14 16:50:32 +06:00

22 lines
613 B
CSS

/* The specific light theme interface styles for GIMP 3.0 */
/* Theme specific colors are defined in gimp.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");
/*
* Paned separator handles
*/
paned.horizontal > separator {
background-image: url("ui/separator-handle-v.svg");
}
paned.vertical > separator {
background-image: url("ui/separator-handle-h.svg");
}