Fix level bar not showing in pantheon-files

This commit is contained in:
EliverLara
2020-01-27 13:11:51 -06:00
parent 1b6cad0512
commit 558769d6c3
3 changed files with 30 additions and 33 deletions

View File

@@ -285,25 +285,22 @@ LibraryWindow {
0 1px 2px transparentize(#000, 0.77);
}
/**level bars**/
/************
* Level bar *
*************/
.sidebar .source-list{
&.view {
&.level-bar {
&,&:selected,&:selected:focus{
background-color: lighten($_sidebar_color, 15%);
border: 1px solid transparentize(black, 0.86);
box-shadow: 0 1px 0 transparentize(#000, 0.75);
border-radius: 2px;
}
&.fill-block{
border: none;
}
.source-list.view {
&.level-bar {
&, &:selected, &:selected:focus {
background: linear-gradient(lighten($_sidebar_color, 15%), lighten($_sidebar_color, 15%));
border: 1px solid transparentize(black, 0.86);
box-shadow: 0 1px 0 transparentize(#000, 0.75);
border-radius: 2px;
}
&.fill-block{
&,&:hover,&:selected,&:selected:focus{
background-image: none;
background-color: $yellow;
&.fill-block {
border: none;
&, &:hover, &:selected, &:selected:focus {
background: linear-gradient($yellow, $yellow) ;
}
}
}