diff options
Diffstat (limited to 'DSLogic-gui/stylesheet.qss')
-rw-r--r-- | DSLogic-gui/stylesheet.qss | 27 |
1 files changed, 19 insertions, 8 deletions
diff --git a/DSLogic-gui/stylesheet.qss b/DSLogic-gui/stylesheet.qss index ad91277..7245f27 100644 --- a/DSLogic-gui/stylesheet.qss +++ b/DSLogic-gui/stylesheet.qss @@ -1,6 +1,6 @@ palette {
background: rgb(17, 133, 209, 255);
- disabled: rgb(232, 232, 230, 255);
+ disabled: rgb(200, 200, 200, 255);
}
QMainWindow {
@@ -77,7 +77,7 @@ QSpinBox { QLineEdit:disabled,
QComboBox:disabled,
QSpinBox:disabled {
- background-color: rgb(232, 232, 230, 255);
+ background-color: rgb(200, 200, 200, 255);
}
QComboBox:!editable {
@@ -99,7 +99,7 @@ QComboBox:on { /* shift the text when the popup opens */ QComboBox::drop-down {
subcontrol-origin: padding;
subcontrol-position: top right;
- width: 15px;
+ width: 20px;
border-left-width: 0px;
border-top-right-radius: 4px; /* same radius as the QComboBox */
@@ -163,7 +163,7 @@ QGroupBox::title }
QGroupBox:disabled
{
- color: rgb(232, 232, 230, 255);
+ color: rgb(200, 200, 200, 255);
}
QDockWidget > QWidget > QTabWidget::pane{
@@ -175,7 +175,7 @@ QDockWidget > QWidget > QTabWidget::pane{ }
QDockWidget > QWidget > QTabWidget::pane:disabled{
- border: 1px solid rgb(232, 232, 230, 255);
+ border: 1px solid rgb(200, 200, 200, 255);
border-right-color: rgb(17, 133, 209, 255); /* same as the pane color */
}
@@ -203,7 +203,7 @@ QDockWidget > QWidget > QTabWidget > QTabBar::tab:selected }
QDockWidget > QWidget > QTabWidget > QTabBar::tab:disabled
{
- color: rgb(232, 232, 230, 50);
+ color: rgb(200, 200, 200, 50);
border: 1px solid rgb(232, 232, 230, 255);
background: transparent;
border-left-color: rgb(17, 133, 209, 255); /* same as the pane color */
@@ -213,18 +213,29 @@ QCheckBox, QRadioButton,
QLabel {
border: none;
- color: white;
min-height: 20px;
}
+QCheckBox::checked,
+QRadioButton::checked {
+ color: black;
+}
+
+QLabel,
+QCheckBox::unchecked,
+QRadioButton::unchecked {
+ color: white;
+}
+
QCheckBox,
QLabel {
padding: 1px 1px 1px 1px;
margin: 0px;
}
+
QLabel:disabled {
- color: rgb(232, 232, 230, 255);
+ color: rgb(200, 200, 200, 255);
}
QSlider::groove:horizontal {
|