summaryrefslogtreecommitdiff
path: root/gui/resources
diff options
context:
space:
mode:
authorSiddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com>2025-04-21 19:59:56 -0400
committerGitHub <noreply@github.com>2025-04-21 19:59:56 -0400
commit1250359dfcbcad18c0a1078290f95479aa23e26a (patch)
treec53fa2bfd360a3bdcfbb2a4c6029e454d91456e1 /gui/resources
parent282e2644ef0470133184fdf9900cf2565ec5332b (diff)
parent98b9786ccab6fdee37a779fdd55b58176abf12d9 (diff)
Merge pull request #58 from bdunahu/bdunahu
[WIP] Add tab bar, multi-level cache display
Diffstat (limited to 'gui/resources')
-rw-r--r--gui/resources/styles.qss23
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";