summaryrefslogtreecommitdiff
path: root/src/resources/css
diff options
context:
space:
mode:
authorAntónio Fernandes <antoniof@gnome.org>2018-08-03 13:00:12 +0100
committerAntónio Fernandes <antoniojpfernandes@gmail.com>2018-08-09 19:07:27 +0000
commit78456f945fead35e94493159e32dee550ff53133 (patch)
tree87157d9a31562512342d677b89095927d7c850c5 /src/resources/css
parent080400bd243ab86d82954eaff0c866c3ac97f3f2 (diff)
downloadnautilus-78456f945fead35e94493159e32dee550ff53133.tar.gz
css: Add background color to path-bar-box
The bare outline around the pathbar feels unfinished. So, fill the area with the theme's background color. Related to https://gitlab.gnome.org/GNOME/nautilus/issues/548
Diffstat (limited to 'src/resources/css')
-rw-r--r--src/resources/css/Adwaita.css5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/resources/css/Adwaita.css b/src/resources/css/Adwaita.css
index 635fe5795..119d019a4 100644
--- a/src/resources/css/Adwaita.css
+++ b/src/resources/css/Adwaita.css
@@ -70,11 +70,15 @@
.path-bar-box {
transition: border 200ms;
+ transition: background-color 200ms;
}
.path-bar-box.width-maximized {
border: 1px @borders solid;
border-radius: 3px;
}
+.path-bar-box.width-maximized:not(:backdrop) {
+ background-color: @theme_bg_color;
+}
/* Make the tags fit into the box */
entry.search > * {
@@ -220,4 +224,3 @@ flowboxchild:selected > .icon-item-background {
border-width:0px;
border-radius:4px 4px 4px 4px;
}
-