Skip to content

Commit

Permalink
fix(gtk3): toggle button appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Mar 25, 2016
1 parent efd0cad commit d2a0e14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gtk-3.0/scss/widgets/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
&:active, &:checked {
@include linear-gradient(shade($button_bg, .7), to top);

color: $white;
color: $selected_fg_color;
box-shadow: inset 1px 0 alpha($dark_shadow, .06),
inset 0 1px alpha($dark_shadow, .07),
inset -1px 0 alpha($dark_shadow, .06),
Expand All @@ -160,7 +160,7 @@
&:focus, &:hover {
@include linear-gradient(shade($button_bg, .65), to top);

color: $white;
color: $selected_fg_color;
}
}

Expand Down
4 changes: 4 additions & 0 deletions gtk-3.0/scss/widgets/_toolbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@

border-width: 0 0 1px;
border-style: solid;
.button {
background-color: $button_bg_color;
color: $button_fg_color;
}
}

.titlebar {
Expand Down

0 comments on commit d2a0e14

Please sign in to comment.