[themes] Fix missing visual hint for disabled tabs

This commit is contained in:
nirvn 2019-03-12 15:06:44 +07:00
parent 4b9f4da929
commit f83990f44f
2 changed files with 9 additions and 1 deletions

View File

@ -468,6 +468,10 @@ QTabBar::tab {
margin-right: -0.05em;
}
QTabBar::tab:disabled {
color: @itemalternativebackground
}
QTabBar::tab:last
{
margin-right: 0; /* the last selected tab has nothing to overlap with on the right */

View File

@ -114,7 +114,7 @@ QMenu::item:checked
QWidget:disabled, QWidget:editable:disabled
{
color: #404040;
color: @itemdarkbackground;
background-color: @background;
}
@ -476,6 +476,10 @@ QTabBar::tab {
margin-right: -0.05em;
}
QTabBar::tab:disabled {
color: @itemdarkbackground;
}
QTabBar::tab:last
{
margin-right: 0; /* the last selected tab has nothing to overlap with on the right */