From bd398d5cffbeec48c8bd6d5d64de0cbba26d2faa Mon Sep 17 00:00:00 2001 From: Alx Sa Date: Fri, 1 Dec 2023 17:09:35 +0000 Subject: [PATCH] themes: Define some widget's border colors Adds specific definitions for some widget borders that are currently only defined by the system. This avoids clashing colors depending on the system theme. --- themes/Default/common.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/themes/Default/common.css b/themes/Default/common.css index 1d766b1a96..75b432d5d5 100644 --- a/themes/Default/common.css +++ b/themes/Default/common.css @@ -238,8 +238,16 @@ GimpDock frame:first-child label { color: @fg-color; } +/* Defining slider scale border and trough */ +scale contents trough +{ + border-color: @strong-border-color; + background-color: @ruler-color; +} + scrollbar { background-color: @bg-color; + border-color: @border-color; } /* @@ -256,6 +264,11 @@ scrollbar slider { border: 2px solid @border-color; } +scrolledwindow +{ + border-color: @stronger-border-color; +} + /* Removes black border around scrolled windows */ scrolledwindow viewport grid, scrolledwindow viewport box { border-radius: 1px; @@ -362,6 +375,11 @@ GimpSpinScale entry progress { border-radius: 3px; } +GimpSpinScale button +{ + border-color: @border-color; +} + /* Checkboxes */ checkbutton, checkbutton.text-button, radiobutton, checkbutton label { color: @fg-color; @@ -453,6 +471,11 @@ menuitem check { border-color: @fg-color; } +menuitem decoration +{ + box-shadow: 0 1px 2px @stronger-border-color; +} + /* "Add Tab" menu in dockable dialog */ menu { background-color: @bg-color;