From edccc4e95f7171bbb1326017c6f7f102c1812ca8 Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Wed, 13 Aug 2025 10:09:24 -0700 Subject: [PATCH] include qt6ct styling --- debian/changelog | 6 ++++++ qt6ct/colors/darker_pink.conf | 4 ++++ qt6ct/qss/header-fix.qss | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 qt6ct/colors/darker_pink.conf create mode 100644 qt6ct/qss/header-fix.qss diff --git a/debian/changelog b/debian/changelog index 83301a1..699a5e5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pogmom-desktop (0.4.5) unstable; urgency=medium + + * add qt6ct styling to system dir to better support multi-user + + -- Penelope Gwen Wed, 13 Aug 2025 16:58:33 +0000 + pogmom-desktop (0.4.4) unstable; urgency=medium * update gtkgreet styling diff --git a/qt6ct/colors/darker_pink.conf b/qt6ct/colors/darker_pink.conf new file mode 100644 index 0000000..507d83e --- /dev/null +++ b/qt6ct/colors/darker_pink.conf @@ -0,0 +1,4 @@ +[ColorScheme] +active_colors=#ffffafaf, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff111317, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf +disabled_colors=#ff808080, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ff808080, #ffe4e4e4, #ff808080, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff808080, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf +inactive_colors=#ffffafaf, #00424245, #00979797, #005e5c5b, #00302f2e, #004a4947, #ffe4e4e4, #ffe4e4e4, #ffe4e4e4, #003d3d3d, #64111317, #ffe7e4e0, #96d7afaf, #ff111317, #ffd7afaf, #ffa70b06, #19576176, #ffffffff, #ff3f3f36, #ffffffff, #80ffffff, #e1d7afaf diff --git a/qt6ct/qss/header-fix.qss b/qt6ct/qss/header-fix.qss new file mode 100644 index 0000000..2076b15 --- /dev/null +++ b/qt6ct/qss/header-fix.qss @@ -0,0 +1,35 @@ +QTabBar { + background-color: transparent; + background-image: none; +} +QTabBar::tab { + border: 1px solid #77d68787; + padding-left: 10px; + padding-right: 10px; +} +QTabBar::tab:first { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +QTabBar::tab:last { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +QTabBar::tab:only-one { + border-radius: 4px; +} +QTabBar::close-button { + margin-right: 20px; + opacity: 0; +} +QTabBar::tab:selected, QTabBar::tab:hover { + background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #00000000, stop: 0.5 #33d68787, stop: 1.0 #66d68787); + padding: 4px 10px 4px 10px; + margin-top: 0px; + margin-bottom: 3px; +} +QTabBar::tab:!selected { + margin-top: 3px; + margin-bottom: 6px; +}