ee2c76de1d
With workspace names becoming a more prominent feature, it makes sense to expose them without opening the menu. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/405>
70 lines
1.5 KiB
CSS
70 lines
1.5 KiB
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.previews:active {
|
|
background-color: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.workspace-indicator .status-label {
|
|
width: 8em;
|
|
padding: 0 8px;
|
|
}
|
|
.workspace-indicator .status-label:ltr { padding-right: 4px; }
|
|
.workspace-indicator .status-label:rtl { padding-left: 4px; }
|
|
|
|
.workspace-indicator .system-status-icon {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
}
|
|
|
|
.workspace-indicator .workspaces-view.hfade {
|
|
-st-hfade-offset: 20px;
|
|
}
|
|
|
|
.workspace-indicator .workspaces-box {
|
|
spacing: 3px;
|
|
}
|
|
|
|
.workspace-indicator .workspace-box {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.workspace-indicator StButton:first-child:ltr > .workspace-box,
|
|
.workspace-indicator StButton:last-child:rtl > .workspace-box {
|
|
padding-left: 5px;
|
|
}
|
|
.workspace-indicator StButton:last-child:ltr > .workspace-box,
|
|
.workspace-indicator StButton:first-child:rtl > .workspace-box {
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.workspace-indicator .workspace {
|
|
border: 1px solid transparent;
|
|
border-radius: 4px;
|
|
background-color: #3f3f3f;
|
|
}
|
|
|
|
.workspace-indicator .workspace {
|
|
width: 52px;
|
|
}
|
|
|
|
.workspace-indicator .workspace.active {
|
|
border-color: #fff;
|
|
}
|
|
|
|
.workspace-indicator-window-preview {
|
|
background-color: #bebebe;
|
|
border: 1px solid #828282;
|
|
border-radius: 1px;
|
|
}
|
|
|
|
.workspace-indicator-window-preview.active {
|
|
background-color: #d4d4d4;
|
|
}
|