Gimp/themes/Default/common-light.css
Alx Sa 5fde1b9e89 libgimpwidgets, theme: Group radio buttons together
This patch swaps out the GtkBox in
gimp_enum_icon_box_new_with_toggle ()
with a GtkButtonBox and sets it to EXPAND
so that the buttons are pressed together.
It also adds some CSS style to complete
the effect.
2025-11-15 02:50:17 +00:00

31 lines
800 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");
}
/* Top highlight for buttons */
button:not(.flat) {
box-shadow: 0 1px @extreme-bg-color inset;
}
buttonbox button.radio:not(:checked) {
box-shadow: 0 1px @extreme-bg-color inset;
}