Skip to content

Commit

Permalink
Use a static outline color instead of transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
lassekongo83 committed Feb 3, 2023
1 parent 4a46a8d commit b7c92ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gtk/src/adw-gtk3/gtk-3.0/_drawing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ $focus_border_color: gtkalpha($accent_color, 0.5);
// normal button
//
color: $tc;
outline-color: gtkalpha($tc, 0.3);
outline-color: gtkmix(currentColor, $button_normal, 30%);
background-color: $button_normal;
}

Expand All @@ -169,7 +169,7 @@ $focus_border_color: gtkalpha($accent_color, 0.5);
// hovered button
//
color: $tc;
outline-color: gtkalpha($tc, 0.3);
outline-color: gtkmix(currentColor, $button_hover, 30%);
background-color: $button_hover;
box-shadow: none;
}
Expand All @@ -193,7 +193,7 @@ $focus_border_color: gtkalpha($accent_color, 0.5);
// pushed button
//
color: $tc;
outline-color: gtkalpha($tc, 0.3);
outline-color: gtkmix(currentColor, $button_active, 30%);
background-color: $button_active;
box-shadow: none;

Expand Down

0 comments on commit b7c92ee

Please sign in to comment.