Formatted QSS (style sheet)

This commit is contained in:
Klaus Basan
2014-02-07 04:01:28 +01:00
parent 27db22cb44
commit ec3e8d496b
2 changed files with 378 additions and 338 deletions

View File

@@ -360,7 +360,8 @@ QStatusBar {
QStatusBar QLabel { QStatusBar QLabel {
border: none; border: none;
}</string> }
</string>
</property> </property>
<property name="toolButtonStyle"> <property name="toolButtonStyle">
<enum>Qt::ToolButtonIconOnly</enum> <enum>Qt::ToolButtonIconOnly</enum>

View File

@@ -6,8 +6,18 @@ QWidget {
color: white; /** font **/ color: white; /** font **/
} }
QStatusBar { QProgressBar {
background-color: darkslategray; border: 1px solid green;
border-radius: 5px;
text-align: center;
padding: 0px;
height: 16px;
}
QProgressBar::chunk {
background-color: darkblue;
width: 10px;
margin: 0.5px;
} }
#wi_CentralWidgetOutside { #wi_CentralWidgetOutside {
@@ -135,6 +145,23 @@ QGroupBox {
border: 1px solid green; border: 1px solid green;
} }
QToolBox {
border: none;
}
QToolBox::tab {
border: 1px solid green;
border-radius: 6px;
min-width: 30px;
padding: 2px;
padding-left: 4px;
padding-right: 4px;
}
QToolBox::tab::selected {
background-color: rgba(0, 0, 255, 128);
}
QRadioButton { QRadioButton {
font: 10px; font: 10px;
} }
@@ -290,3 +317,15 @@ QSizeGrip {
width: 16px; width: 16px;
height: 16px; height: 16px;
} }
QStatusBar {
background: darkslategray;
}
QStatusBar::item {
border: none;
}
QStatusBar QLabel {
border: none;
}