Browse Source

Merge pull request #804 from Susurrus/master

Fix various styling issues
QGC4.4
Lorenz Meier 11 years ago
parent
commit
e830d74307
  1. 11
      files/styles/style-dark.css
  2. 11
      files/styles/style-light.css

11
files/styles/style-dark.css

@ -261,6 +261,13 @@ QGroupBox::title { @@ -261,6 +261,13 @@ QGroupBox::title {
color: #DDD;
}
QHeaderView::section {
border: none;
border-right: 1px solid #969696;
padding: 2px 0 2px 4px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #4B4B4B, stop: 0.3 #404040, stop: 0.34 #383838, stop:1 #181818);
}
QLabel {
background-color: transparent;
}
@ -653,6 +660,10 @@ QToolTip { @@ -653,6 +660,10 @@ QToolTip {
color: #DDD;
}
QTreeView::item:selected {
color: #000;
}
UASQuickViewItem QLabel {
padding: 0;
margin: 0;

11
files/styles/style-light.css

@ -230,6 +230,13 @@ QGroupBox::title { @@ -230,6 +230,13 @@ QGroupBox::title {
color: #000;
}
QHeaderView::section {
border: none;
border-right: 1px solid #969696;
padding: 2px 0 2px 4px;
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #DDD, stop: 1 #999);
}
QLabel {
background-color: transparent;
}
@ -542,6 +549,10 @@ QToolTip { @@ -542,6 +549,10 @@ QToolTip {
color: #000;
}
QTreeView::item {
color: #000;
}
UASQuickViewItem QLabel {
padding: 0;
margin: 0;

Loading…
Cancel
Save