ui: Changed default colors for UI elements to black

bug id = 140
This commit is contained in:
Eberhard Graether
2016-08-26 14:59:21 +02:00
parent ca0a1ffb89
commit 892df2abac
2 changed files with 13 additions and 3 deletions
+2 -1
View File
@@ -15,8 +15,8 @@ QListWidget {
} }
QListWidget::item { QListWidget::item {
height: 20px;
border-bottom: 1px solid lightgray; border-bottom: 1px solid lightgray;
height: 20px;
} }
QListWidget::item:selected { QListWidget::item:selected {
@@ -26,6 +26,7 @@ QListWidget::item:selected {
QtListItemWidget #field { QtListItemWidget #field {
background-color: transparent; background-color: transparent;
border: none; border: none;
color: black;
margin-top: 2px; margin-top: 2px;
margin-left: 5px; margin-left: 5px;
} }
+11 -2
View File
@@ -2,14 +2,16 @@
font-size: 12pt; font-size: 12pt;
} }
#title { QLabel, QCheckBox {
color: black; color: black;
}
#title {
font-size: 16pt; font-size: 16pt;
font-weight: bold; font-weight: bold;
} }
#section, #projectTitle { #section, #projectTitle {
color: black;
font-size: 14pt; font-size: 14pt;
font-weight: bold; font-weight: bold;
} }
@@ -87,8 +89,10 @@
} }
#name, #picker { #name, #picker {
background: white;
border-radius: 10px; border-radius: 10px;
border: 1px solid lightgrey; border: 1px solid lightgrey;
color: black;
padding: 2px 5px 0px; padding: 2px 5px 0px;
} }
@@ -96,6 +100,7 @@
background: white; background: white;
border: none; border: none;
border-radius: 5px; border-radius: 5px;
color: black;
margin-left: 5px; margin-left: 5px;
margin-top: 2px; margin-top: 2px;
} }
@@ -120,6 +125,7 @@
border-radius: 8px; border-radius: 8px;
border-bottom-right-radius: 0px; border-bottom-right-radius: 0px;
border-top-right-radius: 0px; border-top-right-radius: 0px;
color: black;
font-size: 15pt; font-size: 15pt;
margin-right: 0px; margin-right: 0px;
height: 25px; height: 25px;
@@ -154,6 +160,7 @@
#projectButton { #projectButton {
background: white; background: white;
border-radius: 8px; border-radius: 8px;
color: black;
font-size: 12pt; font-size: 12pt;
width: 7em; width: 7em;
height: 7em; height: 7em;
@@ -165,7 +172,9 @@
} }
#textField { #textField {
background: white;
border: 1px solid lightgray; border: 1px solid lightgray;
border-radius: 12px; border-radius: 12px;
color: black;
padding: 6px; padding: 6px;
} }