include qt6ct styling
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions2 (push) Has been cancelled

This commit is contained in:
Penelope Gwen 2025-08-13 10:09:24 -07:00
parent ce15247ccc
commit edccc4e95f
3 changed files with 45 additions and 0 deletions

6
debian/changelog vendored
View file

@ -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 <support@pogmom.me> Wed, 13 Aug 2025 16:58:33 +0000
pogmom-desktop (0.4.4) unstable; urgency=medium
* update gtkgreet styling

View file

@ -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

35
qt6ct/qss/header-fix.qss Normal file
View file

@ -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;
}