GNOME Bugzilla – Bug 775282
window-list: duplicate style definition in classic.css, button has wrong style
Last modified: 2017-01-20 13:47:13 UTC
Style of minimized window button is defined twice in classic.css and second style definition is wrong. IMO minimized window should have negative inset, not positive. It currently looks very weird. Removing last 3 lines fixes the problem. tail -n 8 classic.css: .bottom-panel .window-button.minimized > StWidget { color: #888; box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5); } .bottom-panel .window-button.minimized > StWidget { box-shadow: inset 1px 1px 1px rgba(0,0,0,0.5); }
Created attachment 341560 [details] screenshot with negative margin
Created attachment 341561 [details] screenshot with positive margin
It's duplicated. One of them should be removed. With positive margin, the panel seems in clicked state as it is active. But with negative margin, it does not seem as it is inactive.
Created attachment 341562 [details] [review] window-list: remove the wrong style for minimized window
I'll leave it to Jakub to pick which of the two definitions should be removed.
Created attachment 343902 [details] [review] theme: window-list minimized button - when a window is minimized, it's unfocused, thus the button in the window list should remain raised
Attachment 343902 [details] pushed as 5e545d2 - theme: window-list minimized button