mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
themes: Improve separation between panels in dark theme
In collaboration with Denis Rangelov, the separator between panes has been updated to use the same colors and thinner border in all three theme variants. Note that the border is created with box-shadow CSS, and is only shown on one side of the horizontal separators to suggest that it is a continuation of the bottom section.
This commit is contained in:
@@ -20,12 +20,10 @@ iconview:hover {
|
||||
*/
|
||||
paned.horizontal > separator {
|
||||
background-image: url("ui/separator-handle-v-dark.svg");
|
||||
background-color: @bg-color;
|
||||
}
|
||||
|
||||
paned.vertical > separator {
|
||||
background-image: url("ui/separator-handle-h-dark.svg");
|
||||
background-color: @bg-color;
|
||||
}
|
||||
|
||||
/* Top highlight for buttons */
|
||||
|
@@ -382,13 +382,25 @@ entry selection {
|
||||
}
|
||||
|
||||
paned separator {
|
||||
color: @border-color;
|
||||
background-image: none;
|
||||
background-color: @border-color;
|
||||
background-color: @widget-bg-color;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto;
|
||||
padding: 3px;
|
||||
color: @border-color;
|
||||
}
|
||||
|
||||
paned.horizontal > separator
|
||||
{
|
||||
padding-left: 1px;
|
||||
padding-right: 1px;
|
||||
box-shadow: 0px 0px 0px 1px @strong-border-color;
|
||||
}
|
||||
|
||||
paned.vertical > separator {
|
||||
padding-top: 1px;
|
||||
padding-bottom: 1px;
|
||||
box-shadow: 0px -1px 0px -0px @strong-border-color;
|
||||
}
|
||||
|
||||
paned menu separator {
|
||||
|
Reference in New Issue
Block a user