Skip to content

Commit

Permalink
Fix enabled toolbar buttons and remove box-shadow for performance rea…
Browse files Browse the repository at this point in the history
…sons
  • Loading branch information
techee committed Nov 19, 2021
1 parent 482a22e commit 42d3eb1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
8 changes: 7 additions & 1 deletion Prof-Gnome/gtk-3.0/main-dark.css
Expand Up @@ -627,6 +627,13 @@ button:checked
box-shadow: inset 0 1px 1px alpha(@shadows_dark, 0.12),
0 1px 2px alpha(@shadows_dark, 0.02);
}
button:checked:hover,
button:checked
{
border-color: @borders;
background-image: image(#777777);
box-shadow: none;
}
notebook > header > tabs > arrow:active,
notebook > header > tabs > arrow:checked
{
Expand Down Expand Up @@ -1367,7 +1374,6 @@ stacksidebar row.needs-attention > label:dir(rtl)
color: @text_color;

border-color: @borders;
box-shadow: inset 0 1px 1px alpha(@shadows_dark, 0.08);
background-image: linear-gradient(shade(@button_color,0.96),
@button_color);

Expand Down
8 changes: 7 additions & 1 deletion Prof-Gnome/gtk-3.0/main-light.css
Expand Up @@ -625,6 +625,13 @@ button:checked
box-shadow: inset 0 1px 1px alpha(@shadows_dark, 0.06),
0 1px 2px alpha(@shadows_dark, 0.02);
}
button:checked:hover,
button:checked
{
border-color: @borders;
background-image: image(#999999);
box-shadow: none;
}
notebook > header > tabs > arrow:active,
notebook > header > tabs > arrow:checked
{
Expand Down Expand Up @@ -1365,7 +1372,6 @@ stacksidebar row.needs-attention > label:dir(rtl)
color: @text_color;

border-color: @borders;
box-shadow: inset 0 1px 1px alpha(@shadows_dark, 0.08);
background-image: linear-gradient(shade(@button_color,0.96),
@button_color);

Expand Down

0 comments on commit 42d3eb1

Please sign in to comment.