00045b7396
Add a style class to the indicator itself, and only select descendant elements. This allows using the briefer class names from the window-list extension without too much risk of conflicts. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/307>
36 lines
710 B
CSS
36 lines
710 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: 4px 0;
|
|
spacing: 4px;
|
|
}
|
|
|
|
.workspace-indicator .workspace {
|
|
width: 40px;
|
|
border: 2px solid #000;
|
|
border-radius: 2px;
|
|
background-color: #595959;
|
|
}
|
|
|
|
.workspace-indicator .workspace.active {
|
|
border-color: #fff;
|
|
}
|
|
|
|
.workspace-indicator-window-preview {
|
|
background-color: #bebebe;
|
|
border: 1px solid #828282;
|
|
}
|
|
|
|
.workspace-indicator-window-preview.active {
|
|
background-color: #d4d4d4;
|
|
}
|