Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[themes] Fix visual disabled state of checked tool buttons
  • Loading branch information
nirvn committed Apr 6, 2020
1 parent 5199b91 commit 827f0a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/themes/Blend of Gray/style.qss
Expand Up @@ -241,6 +241,10 @@ QToolButton:checked
{
border: 1px solid @selection;
}
QToolButton:checked:disabled
{
border: 1px solid rgba(240,240,240,100);
}
QToolButton::menu-arrow
{
image: url(@theme_path/icons/arrow-down.svg);
Expand Down
4 changes: 4 additions & 0 deletions resources/themes/Night Mapping/style.qss
Expand Up @@ -251,6 +251,10 @@ QToolButton:checked
{
border: 1px solid @focus;
}
QToolButton:checked:disabled
{
border: 1px solid rgba(215,128,26,100);
}
QToolButton::menu-arrow
{
image: url(@theme_path/icons/arrow-down.svg);
Expand Down

0 comments on commit 827f0a1

Please sign in to comment.