comparison 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
comparison
equal deleted inserted replaced
341:052ec053ee37 342:adb79bdde329
80 color: white; 80 color: white;
81 border: 0.04em transparent black; 81 border: 0.04em transparent black;
82 border-left: 0.04em solid #808080; 82 border-left: 0.04em solid #808080;
83 border-right: 0.04em solid #808080; 83 border-right: 0.04em solid #808080;
84 border-top: 0.04em solid #808080; 84 border-top: 0.04em solid #808080;
85 background-color: #353535; 85 background-color: #191919;
86 min-width: 50px; 86 min-width: 50px;
87 padding-top: 0.23em; 87 padding-top: 0.23em;
88 padding-bottom: 0.23em; 88 padding-bottom: 0.23em;
89 padding-left: 0.78em; 89 padding-left: 0.78em;
90 padding-right: 0.78em; 90 padding-right: 0.78em;
93 border-bottom-right-radius: 0em; 93 border-bottom-right-radius: 0em;
94 } 94 }
95 95
96 QTabBar::tab:top:!selected { 96 QTabBar::tab:top:!selected {
97 color: white; 97 color: white;
98 background-color: #353535; 98 background-color: #191919;
99 border: 0.04em solid #808080; 99 border: 0.04em solid #808080;
100 border-radius: 0.09em; 100 border-radius: 0.09em;
101 border-bottom-left-radius: 0em; 101 border-bottom-left-radius: 0em;
102 border-bottom-right-radius: 0em; 102 border-bottom-right-radius: 0em;
103 margin-top: 0.13em; 103 margin-top: 0.13em;
104 } 104 }
105 105
106 QTabBar::tab:top:next-selected { 106 QTabBar::tab:top:next-selected {
107 border-right: 0.04em transparent #353535; 107 border-right: 0.04em transparent #191919;
108 border-bottom-left-radius: 0em; 108 border-bottom-left-radius: 0em;
109 border-bottom-right-radius: 0em; 109 border-bottom-right-radius: 0em;
110 } 110 }
111 111
112 QTabBar::tab:top:previous-selected { 112 QTabBar::tab:top:previous-selected {
113 border-left: 0.04em transparent #353535; 113 border-left: 0.04em transparent #191919;
114 border-bottom-left-radius: 0em; 114 border-bottom-left-radius: 0em;
115 border-bottom-right-radius: 0em; 115 border-bottom-right-radius: 0em;
116 } 116 }
117 117
118 QTabBar::tab:top:!selected:hover { 118 QTabBar::tab:top:!selected:hover {