mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-02 09:01:13 +00:00
themes: Define symbolic icon colors for System theme
Symbolic layer tree icons are often invisible when not selected on System themes in light mode. This patch adds a CSS rule to ensure the layer tree icons are visible on light backgrounds.
This commit is contained in:
parent
771dd219f6
commit
acebb4fa22
3 changed files with 20 additions and 0 deletions
13
themes/System/gimp-light.css
Normal file
13
themes/System/gimp-light.css
Normal file
|
@ -0,0 +1,13 @@
|
|||
/* GIMP theme CSS file */
|
||||
/* Additional rules for light variant System themes */
|
||||
|
||||
@import url("gimp.css");
|
||||
|
||||
/* Make sure symbolic layer tree icons are visible */
|
||||
treeview {
|
||||
color: black;
|
||||
}
|
||||
|
||||
treeview header {
|
||||
color: rgb (196, 197, 197);
|
||||
}
|
6
themes/System/meson.build
Normal file
6
themes/System/meson.build
Normal file
|
@ -0,0 +1,6 @@
|
|||
files = [
|
||||
'gimp-light.css'
|
||||
]
|
||||
|
||||
install_data(files,
|
||||
install_dir: gimpdatadir / 'themes' / 'System')
|
|
@ -1,4 +1,5 @@
|
|||
subdir('Default')
|
||||
subdir('System')
|
||||
|
||||
themes = [
|
||||
'System',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue