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.
This commit is contained in:
parent
3229ba3c3e
commit
bd398d5cff
1 changed files with 23 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue