themes: Define minimum height of progress bar
On some system themes, the progress bar on the status bar was less visible due to the minimum height being set too low. This patch defines a CSS rule to make sure the progress bar is at least 10px tall.
This commit is contained in:
parent
fe4cbb6512
commit
963dde2b08
1 changed files with 5 additions and 1 deletions
|
|
@ -674,7 +674,6 @@ border {
|
|||
dialog notebook.frame {
|
||||
border: 1px solid @border-color;
|
||||
}
|
||||
|
||||
GimpColorNotebook notebook.frame {
|
||||
border-width: 0px;
|
||||
}
|
||||
|
|
@ -794,6 +793,11 @@ actionbar revealer box {
|
|||
border-top-color: @strong-border-color;
|
||||
}
|
||||
|
||||
statusbar progressbar trough,
|
||||
statusbar progressbar progress {
|
||||
min-height: 10px;
|
||||
}
|
||||
|
||||
/* Sidebar in File > Open */
|
||||
|
||||
/* The background to either side of the directory buttons.
|
||||
|
|
|
|||
Loading…
Reference in a new issue