diff options
| author | Nippy <nippy@rp1.hu> | 2026-06-04 20:16:01 +0200 |
|---|---|---|
| committer | Nippy <nippy@rp1.hu> | 2026-06-04 20:16:01 +0200 |
| commit | c8f8c69ddeea6684ca6c83461654077acb8dd69f (patch) | |
| tree | 17d2b5ddcda099330ca1c6968ce94a638894a8b6 /raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss | |
| parent | f2b1a9e9e2f0c186396580ea4c5da1ba4968562e (diff) | |
| download | RaveOS-PKGBUILD-c8f8c69ddeea6684ca6c83461654077acb8dd69f.tar.gz RaveOS-PKGBUILD-c8f8c69ddeea6684ca6c83461654077acb8dd69f.zip | |
calamares: theme v26, module v4 - UI fixes and language propagation fix
- stylesheet: disabled button dark grey, about button deep green, button alignment fix
- branding: icon changed to raveos-icon2.png
- ravewelcome: fix language selection propagating to installed system locale (localeConf.LANG)
Diffstat (limited to 'raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss')
| -rw-r--r-- | raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss b/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss index 724316c..56cc368 100644 --- a/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss +++ b/raveos-calamares-theme/etc/calamares/branding/raveos/stylesheet.qss @@ -254,6 +254,16 @@ QAbstractItemView::item:selected { color: #FFFFFF; } +QAbstractItemView::item:selected:!active { + background-color: #3d7839; + color: #FFFFFF; +} + +QAbstractItemView::item:focus { + background-color: #3d7839; + color: #FFFFFF; +} + /* ---------------- Buttons ---------------- */ QPushButton { @@ -263,6 +273,7 @@ QPushButton { border-radius: 4px; padding: 8px 18px; font-weight: bold; + margin-top: 4px; } QPushButton:hover { @@ -274,22 +285,29 @@ QPushButton:pressed { } QPushButton:disabled { - background-color: #7f8c8d; - color: #bdc3c7; + background-color: #303030; + color: #7f8c8d; } /* Secondary buttons (Back / Cancel) */ -#debugButton, -#aboutButton { +#debugButton { background-color: #7f8c8d; color: #ffffff; } -#debugButton:hover, -#aboutButton:hover { +#debugButton:hover { background-color: #95a5a6; } +#aboutButton { + background-color: #1e5c1a; + color: #ffffff; +} + +#aboutButton:hover { + background-color: #285226; +} + /* ---------------- Checkbox ---------------- */ QCheckBox { |