diff options
author | bd <bdunahu@operationnull.com> | 2025-04-27 16:00:23 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-27 16:00:23 -0400 |
commit | 3233a150e2024e9be51623f606bf15527a76cf1e (patch) | |
tree | 23adac7eb45c2b3eab832f08d496a85c87313c37 /gui/resources/styles.qss | |
parent | 07c618096daec422c42ee1a379200101d0d349cc (diff) | |
parent | d9832fa5f24dc0e7df41b61e5d0181adbb4edf77 (diff) |
Merge remote-tracking branch 'origin/bdunahu' into vector_ext
Diffstat (limited to 'gui/resources/styles.qss')
-rw-r--r-- | gui/resources/styles.qss | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/gui/resources/styles.qss b/gui/resources/styles.qss index a61035e..c6d8daa 100644 --- a/gui/resources/styles.qss +++ b/gui/resources/styles.qss @@ -4,6 +4,8 @@ color: "#00cc00"; background-color: "#000200"; border: 0px solid "#000200"; + selection-background-color: "#00cc00"; + selection-color: "#000200"; } QStatusBar { @@ -50,6 +52,66 @@ QGroupBox::title { QLabel { } +QSpinBox { + padding-right: 15px; /* make room for the arrows */ + border: none; +} + +QSpinBox::up-button { + color: "#000200"; + background-color: "#00cc00"; + subcontrol-origin: border; + subcontrol-position: top right; /* position at the top right corner */ + + width: 16px; + border: none; + subcontrol-origin: border; +} + +QSpinBox::up-arrow { + image: url(:/resources/arrow_up.png); + width: 7px; + height: 7px; +} + +QSpinBox::up-arrow:pressed { + image: url(:/resources/arrow_up_pressed.png); + width: 7px; + height: 7px; +} + +QSpinBox::up-button:pressed { + color: "#00cc00"; + background-color: "#000200"; +} + +QSpinBox::down-button { + color: "#000200"; + background-color: "#00cc00"; + subcontrol-origin: border; + subcontrol-position: bottom right; /* position at bottom right corner */ + + width: 16px; + border: none; +} + +QSpinBox::down-button:pressed { + color: "#00cc00"; + background-color: "#000200"; +} + +QSpinBox::down-arrow { + image: url(:/resources/arrow_down.png); + width: 7px; + height: 7px; +} + +QSpinBox::down-arrow:pressed { + image: url(:/resources/arrow_down_pressed.png); + width: 7px; + height: 7px; +} + QTableView { border: 0px; selection-background-color: transparent; |