Browse Source

refactor: add colors to QTabBar

reviewable/pr5457/r2
TriKriSta 7 years ago
parent
commit
a63eb0ed2f
  1. 2
      themes/default/friendList/friendList.css
  2. 10
      themes/default/global.css
  3. 4
      themes/default/loginScreen/loginScreen.css
  4. 7
      themes/default/settings/mainContent.css

2
themes/default/friendList/friendList.css

@ -80,5 +80,5 @@ QWidget#circleWidgetContainer > QLabel#name @@ -80,5 +80,5 @@ QWidget#circleWidgetContainer > QLabel#name
}
QLabel {
color: white
color: white;
}

10
themes/default/global.css

@ -1,24 +1,24 @@ @@ -1,24 +1,24 @@
QLabel
{
color: black
color: black;
}
QLineEdit
{
color: black
color: black;
}
QTextEdit
{
color: black
color: black;
}
QSpinBox
{
color: black
color: black;
}
QListView
{
color: black
color: black;
}

4
themes/default/loginScreen/loginScreen.css

@ -64,12 +64,12 @@ QLabel, QCheckBox, QProgressBar @@ -64,12 +64,12 @@ QLabel, QCheckBox, QProgressBar
QLineEdit
{
color: #f1f1f1
color: #f1f1f1;
}
QListView
{
color: #f1f1f1
color: #f1f1f1;
}
QCheckBox:disabled

7
themes/default/settings/mainContent.css

@ -69,8 +69,15 @@ QTabWidget @@ -69,8 +69,15 @@ QTabWidget
background-color: white;
}
QTabBar::tab:selected
{
background: #2d3136;
color: #f1f1f1;
}
QTabBar::tab:!selected
{
background: #d0d1d1;
color: #5e5e5e;
}

Loading…
Cancel
Save