Mercurial > minori
diff rc/sys/win32/dark/dark.qss @ 342:adb79bdde329
dep/animone: fix tons of issues
for example, the window ID stuff was just... completely wrong. since we're
supporting multiple different window systems, it *has* to be a union rather
than just a single integer type. HWND is also not a DWORD, it's a pointer(!),
so now it's stored as a std::uintptr_t.
(this probably breaks things)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 20 Jun 2024 03:03:05 -0400 |
parents | 862d0d8619f6 |
children |
line wrap: on
line diff
--- a/rc/sys/win32/dark/dark.qss Wed Jun 19 23:21:19 2024 -0400 +++ b/rc/sys/win32/dark/dark.qss Thu Jun 20 03:03:05 2024 -0400 @@ -82,7 +82,7 @@ border-left: 0.04em solid #808080; border-right: 0.04em solid #808080; border-top: 0.04em solid #808080; - background-color: #353535; + background-color: #191919; min-width: 50px; padding-top: 0.23em; padding-bottom: 0.23em; @@ -95,7 +95,7 @@ QTabBar::tab:top:!selected { color: white; - background-color: #353535; + background-color: #191919; border: 0.04em solid #808080; border-radius: 0.09em; border-bottom-left-radius: 0em; @@ -104,13 +104,13 @@ } QTabBar::tab:top:next-selected { - border-right: 0.04em transparent #353535; + border-right: 0.04em transparent #191919; border-bottom-left-radius: 0em; border-bottom-right-radius: 0em; } QTabBar::tab:top:previous-selected { - border-left: 0.04em transparent #353535; + border-left: 0.04em transparent #191919; border-bottom-left-radius: 0em; border-bottom-right-radius: 0em; }