We did not explicitly define the padding and margins for the slider text and "progress" areas, which allowed for system theme leaks. This patch defines these values and makes the sliders visually closer to 2.10's style.
41 lines
1,005 B
CSS
41 lines
1,005 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");
|
|
|
|
/* Highlight icons in Grid View when hovered over */
|
|
iconview:hover {
|
|
background-color: @strong-border-color;
|
|
}
|
|
|
|
/*
|
|
* 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");
|
|
}
|
|
|
|
/* Top highlight for buttons */
|
|
button:not(.flat) {
|
|
box-shadow: 0 1px @extreme-bg-color inset;
|
|
}
|
|
|
|
/* Define GimpSpinScale slider colors */
|
|
GimpSpinScale entry {
|
|
background-color: @extreme-bg-color;
|
|
}
|
|
|
|
GimpSpinScale entry progress {
|
|
background-color: @widget-bg-color;
|
|
}
|