Sync sizes and padding with the window-list previews. Tone down the colors a bit, but less then the current window-list style where workspaces blend too much into the background and the selection is unclear. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
37 lines
740 B
CSS
37 lines
740 B
CSS
/*
|
|
* SPDX-FileCopyrightText: 2011 Erick Pérez Castellanos <erick.red@gmail.com>
|
|
* SPDX-FileCopyrightText: 2019 Florian Müllner <fmuellner@gnome.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
.workspace-indicator .status-label {
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.workspace-indicator .workspaces-box {
|
|
padding: 5px;
|
|
spacing: 3px;
|
|
}
|
|
|
|
.workspace-indicator .workspace {
|
|
width: 52px;
|
|
border: 2px solid transparent;
|
|
border-radius: 4px;
|
|
background-color: #3f3f3f;
|
|
}
|
|
|
|
.workspace-indicator .workspace.active {
|
|
border-color: #9f9f9f;
|
|
}
|
|
|
|
.workspace-indicator-window-preview {
|
|
background-color: #bebebe;
|
|
border: 1px solid #828282;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
.workspace-indicator-window-preview.active {
|
|
background-color: #d4d4d4;
|
|
}
|