gtk3.20: Sidebar fix. (#330)

* * Sidebar fix.

* * Sidebar background color fix.
This commit is contained in:
Csaba Jakosa
2016-04-13 00:39:36 -05:00
committed by Dustin Falgout
parent 77877e9d53
commit 368e74fc68
6 changed files with 203 additions and 60 deletions
+28 -1
View File
@@ -27,7 +27,7 @@
text {
@extend %view;
selection { &:focus, & { @extend %selected_items; }}
selection { &:focus, & { @extend %selected_items; } }
}
}
@@ -350,3 +350,30 @@
scrolledwindow viewport.frame { border: 0; }
}
/***************
! Places view *
****************/
@include exports("placesview") {
placesview {
.server-list-button > image {
transition: 200ms $ease-out-quad;
-gtk-icon-transform: rotate(0turn);
}
.server-list-button:checked > image {
transition: 200ms $ease-out-quad;
-gtk-icon-transform: rotate(-0.5turn);
}
row.activatable:hover { background-color: transparent; }
// this selects the "connect to server" label
> actionbar > revealer > box > label {
padding-left: 8px;
padding-right: 8px;
}
}
}