Nautilus 3.30 path-bar redesign (#144)

* Nautilus 3.30 path-bar redesign

Properly theme the redesigned path-bar in nautilus 3.30.

* Update path-bar-box for nautilus 3.30.2

The path-bar-box design was changed in nautilus 3.30.2 to resolve issues
with some gtk themes. Change theming in Arc accordingly.

Upstream commit: 171ae2ed52

* Add transitions to nautilus path-bar-box

Transition the colors of path-bar-box when switching from/to backdrop,
as is done with Adwaita.
master
jnsh 2018-10-20 19:49:00 +03:00 committed by David Mohammed
parent 550065724b
commit a8a66c0549
1 changed files with 20 additions and 2 deletions

View File

@ -67,9 +67,27 @@ terminal-window,
}
// Pathbar for nautilus >=3.30
.nautilus-window .path-bar-box.width-maximized {
border: 1px $header_button_border solid;
border-radius: 3px;
transition: border $backdrop_transition;
transition: background-color $backdrop_transition;
&:not(:backdrop) {
background-color: $header_button_bg;
}
}
.nautilus-window .path-bar > box > button {
margin: 0 4px;
padding: 2px;
background-color: transparent;
border-color: transparent;
border-radius: 0;
color: $header_fg;
margin: 0 2px;
padding: 1px;
&:not(:backdrop):hover {
box-shadow: 0 -3px $selected_bg_color inset;
}
}
button.nautilus-circular-button.image-button {