diff options
author | bd <bdunahu@operationnull.com> | 2025-04-21 17:09:00 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-21 17:09:00 -0400 |
commit | 812a0036787bea3833bdbf2684a706d4a7165cf1 (patch) | |
tree | 4d3fdcf397c4c846f79a9676811252714a8c896f /gui/resources | |
parent | 7cad6f05ebed25557fe6a31bfdf6290c72506868 (diff) |
Add tab bar
Diffstat (limited to 'gui/resources')
-rw-r--r-- | gui/resources/styles.qss | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gui/resources/styles.qss b/gui/resources/styles.qss index dbaa623..ee92867 100644 --- a/gui/resources/styles.qss +++ b/gui/resources/styles.qss @@ -107,14 +107,19 @@ 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; +} + +QTabBar::tab:selected { + color: "#000200"; + background-color: "#00cc00"; +} + 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"; |