diff options
Diffstat (limited to 'gui/resources')
-rw-r--r-- | gui/resources/styles.qss | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/gui/resources/styles.qss b/gui/resources/styles.qss index dbaa623..76d0311 100644 --- a/gui/resources/styles.qss +++ b/gui/resources/styles.qss @@ -59,7 +59,6 @@ QLineEdit { } QTextEdit, QListView { - font-size: 10pt; } QPushButton { @@ -91,7 +90,6 @@ QMenuBar { QMenuBar::item { padding: 1px 4px; background: transparent; - border-radius: 4px; } QCheckBox { @@ -107,14 +105,27 @@ QCheckBox::indicator { QCheckBox::indicator:unchecked { } -/* QCheckBox::indicator:unchecked:pressed { */ -/* image: url(:/images/checkbox_unchecked_pressed.png); */ -/* } */ - QCheckBox::indicator:checked { background: "#00cc00"; } +QTabWidget::tab-bar { + alignment: center; + border: 0px; +} + +QTabBar::tab:selected { + color: "#000200"; + background-color: "#00cc00"; + border: 0px; + padding: 2px; +} + +QTabBar::tab:!selected { + border: 0px; + padding: 2px; +} + QSlider::groove:horizontal { height: 10px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ background: "#00cc00"; |