c9477dd94d
Unlike in GNOME 2, the workspace indicator we display in the window list isn't a workspace switcher, but a menu button that allows switching workspaces via its menu. The reason for that is that a horizontal in-place switcher would be at odds with the vertical workspace layout used in GNOME 3. However that reasoning doesn't apply when the layout is changed to a horizontal one, so replace the button with a traditional workspace switcher in that case. https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/70
59 lines
1.4 KiB
CSS
59 lines
1.4 KiB
CSS
@import url("stylesheet.css");
|
|
|
|
#panel.bottom-panel {
|
|
border-top-width: 1px;
|
|
border-bottom-width: 0px;
|
|
height: 2.25em ;
|
|
padding: 2px;
|
|
}
|
|
|
|
.bottom-panel .window-button > StWidget,
|
|
.bottom-panel .window-picker-toggle > StWidget {
|
|
color: #2e3436;
|
|
background-color: #eee;
|
|
border-radius: 3px;
|
|
padding: 3px 6px 1px;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
border: 1px solid rgba(0,0,0,0.2);
|
|
}
|
|
|
|
.bottom-panel .window-button > StWidget {
|
|
-st-natural-width: 18.7em;
|
|
max-width: 18.75em;
|
|
}
|
|
|
|
.bottom-panel .window-button:hover > StWidget,
|
|
.bottom-panel .window-picker-toggle:hover > StWidget {
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
.bottom-panel .window-button:active > StWidget,
|
|
.bottom-panel .window-button:focus > StWidget {
|
|
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.bottom-panel .window-button.focused > StWidget,
|
|
.bottom-panel .window-picker-toggle:checked > StWidget {
|
|
background-color: #ccc;
|
|
box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.bottom-panel .window-button.focused:hover > StWidget {
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
.bottom-panel .window-button.minimized > StWidget {
|
|
color: #888;
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* workspace switcher */
|
|
.window-list-workspace-indicator .workspace {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.window-list-workspace-indicator .workspace.active {
|
|
background-color: #ccc;
|
|
}
|