- Contemporary look. Fewer borders, thinner outlines for workspace indicators - Lacks the designed unfocused window separators. - Relies on https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/328 Fixes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/issues/421 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/330>
69 lines
1.4 KiB
CSS
69 lines
1.4 KiB
CSS
/*
|
|
* SPDX-FileCopyrightText: 2013 Florian Müllner <fmuellner@gnome.org>
|
|
* SPDX-FileCopyrightText: 2015 Jakub Steiner <jimmac@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
@import url("stylesheet-dark.css");
|
|
@import url("stylesheet-workspace-switcher-light.css");
|
|
|
|
#panel.bottom-panel {
|
|
border-top-width: 1px;
|
|
border-bottom-width: 0px;
|
|
height: 2.5em;
|
|
}
|
|
|
|
.bottom-panel .window-button > StWidget {
|
|
border-radius: 3px;
|
|
padding: 3px 6px 1px;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.bottom-panel .window-button > StWidget {
|
|
-st-natural-width: 18.7em;
|
|
max-width: 18.75em;
|
|
}
|
|
|
|
.window-button > StWidget {
|
|
color: #000;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.window-button > StWidget {
|
|
-st-natural-width: 18.75em;
|
|
max-width: 18.75em;
|
|
}
|
|
|
|
.window-button:hover > StWidget {
|
|
background-color: st-darken(#eee,5%);
|
|
}
|
|
|
|
.window-button:active > StWidget,
|
|
.window-button:focus > StWidget {
|
|
background-color: st-darken(#eee, 10%);
|
|
}
|
|
|
|
.window-button.focused > StWidget {
|
|
background-color: st-darken(#eee,15%);
|
|
}
|
|
|
|
.window-button.focused:hover > StWidget {
|
|
background-color: st-darken(#eee, 20%);
|
|
}
|
|
|
|
.window-button.focused:active > StWidget {
|
|
background-color: st-darken(#eee, 25%);
|
|
}
|
|
|
|
.window-button.minimized > StWidget {
|
|
color: #aaa;
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.window-button.minimized:active > StWidget {
|
|
color: #aaa;
|
|
background-color: #f9f9f9;
|
|
}
|