mirror of https://github.com/GNOME/gimp.git
31 lines
795 B
CSS
31 lines
795 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;
|
|
}
|
|
|