Skip to content

Commit

Permalink
Change list row image-button style
Browse files Browse the repository at this point in the history
  • Loading branch information
lassekongo83 committed May 17, 2023
1 parent dee8372 commit f5e0807
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions gtk/src/adw-gtk3/gtk-3.0/_common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1105,13 +1105,20 @@ button.color {
}

// list buttons
// tone down as per new designs, see issue #1473, #1748
list row button.image-button:not(.flat) {
@extend %undecorated_button;
border: 1px solid gtkalpha($borders_color, .5);
&:hover { @include button(hover); }
&:active,
&:checked { @include button(active); }
//border: 1px solid gtkalpha($borders_color, .5);
&:hover {
background-color: $view_hover_color;
}
&:active {
background-color: $view_active_color;
}
&:checked {
background-color: $view_selected_color;
&:hover { background-color: $view_selected_hover_color; }
&:active { background-color: $view_selected_active_color; }
}
}

// *********
Expand Down

0 comments on commit f5e0807

Please sign in to comment.