Adwaita: Move placessidebar-specific sizing from .navigation-sidebar

The common .navigation-sidebar styling should be more generic.
This commit is contained in:
nana-4
2020-11-22 12:14:34 +09:00
committed by Jakub Steiner
parent 40f2b49c0d
commit 9828756e05

View File

@@ -3596,16 +3596,11 @@ separator.sidebar {
padding: $menu-margin 0; //only vertical padding. horizontal row size would clip
> row {
// Needs overriding of the GtkListBoxRow padding
min-height: 36px;
padding: 0px 2px;
padding: 0 8px;
border-radius: $menu-margin;
margin: 0 $menu-margin;
// Using margins/padding directly in the SidebarRow
// will make the animation of the new bookmark row jump
> revealer { padding: 0 14px; }
&:selected {
background-color: $menu_selected_color;
color: $fg_color;
@@ -3647,9 +3642,14 @@ row image.sidebar-icon { opacity: $_placesidebar_icons_opacity; } // dim the sid
*/
placessidebar {
row:not(:last-child) { //FIXME: specificty bump hack
.navigation-sidebar > row {
// Needs overriding of the `.navigation-sidebar > row` padding
padding: 0;
// Using margins/padding directly in the SidebarRow
// will make the animation of the new bookmark row jump
> revealer { padding: 0 14px; }
image.sidebar-icon {
&:dir(ltr) { padding-right: 8px; }
&:dir(rtl) { padding-left: 8px; }