mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
themes: System theme leak definitions
Defines the background color behind GtkNotebook tabs, removes the background image from GimpSpinScale progressbar, and specifies the padding and border width for toolbuttons to prevent offset issues when hovered over.
This commit is contained in:
parent
2f4c9adf1c
commit
de41deb5c9
1 changed files with 17 additions and 1 deletions
|
@ -178,6 +178,10 @@ notebook header button {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
notebook header tabs {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
/* Use this to make a border or padding around each tab */
|
/* Use this to make a border or padding around each tab */
|
||||||
notebook header tabs tab {
|
notebook header tabs tab {
|
||||||
background-color: @bg-color;
|
background-color: @bg-color;
|
||||||
|
@ -201,6 +205,10 @@ notebook header tabs tab:hover {
|
||||||
background-color: @hover-color;
|
background-color: @hover-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
notebook header tabs arrow:disabled {
|
||||||
|
background-color: @widget-bg-color;
|
||||||
|
}
|
||||||
|
|
||||||
/* Add margin to image tabs so the close button fits */
|
/* Add margin to image tabs so the close button fits */
|
||||||
notebook header tabs tab > box > button
|
notebook header tabs tab > box > button
|
||||||
{
|
{
|
||||||
|
@ -245,10 +253,17 @@ notebook header tabs tab > box > button
|
||||||
background-color: @hover-color;
|
background-color: @hover-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
toolbutton button {
|
||||||
|
padding: 4px 5px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
toolbutton button:hover {
|
||||||
|
border-color: @strong-border-color;
|
||||||
|
}
|
||||||
|
|
||||||
/* .flat covers the tool buttons and the buttons at the bottom
|
/* .flat covers the tool buttons and the buttons at the bottom
|
||||||
* of the Toolbox window.
|
* of the Toolbox window.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
toolbutton button.flat {
|
toolbutton button.flat {
|
||||||
background-color: @bg-color;
|
background-color: @bg-color;
|
||||||
color: @fg-color;
|
color: @fg-color;
|
||||||
|
@ -489,6 +504,7 @@ GimpSpinScale entry {
|
||||||
|
|
||||||
GimpSpinScale entry progress {
|
GimpSpinScale entry progress {
|
||||||
background-color: @extreme-bg-color;
|
background-color: @extreme-bg-color;
|
||||||
|
background-image: none;
|
||||||
border-width: 0px;
|
border-width: 0px;
|
||||||
border-radius: 3px 0px 0px 3px;
|
border-radius: 3px 0px 0px 3px;
|
||||||
margin: 0px -8px 0px -5px;
|
margin: 0px -8px 0px -5px;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue