57 lines
1.5 KiB
Diff
57 lines
1.5 KiB
Diff
|
From aca00d6e3a8b7d1fc59b19e9855685989127d59f Mon Sep 17 00:00:00 2001
|
||
|
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||
|
Date: Thu, 22 Feb 2024 04:45:23 +0100
|
||
|
Subject: [PATCH 16/28] workspace-indicator: Tweak preview style
|
||
|
|
||
|
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>
|
||
|
---
|
||
|
extensions/workspace-indicator/stylesheet.css | 15 ++++++++-------
|
||
|
1 file changed, 8 insertions(+), 7 deletions(-)
|
||
|
|
||
|
diff --git a/extensions/workspace-indicator/stylesheet.css b/extensions/workspace-indicator/stylesheet.css
|
||
|
index 749878c1..3e2ba67f 100644
|
||
|
--- a/extensions/workspace-indicator/stylesheet.css
|
||
|
+++ b/extensions/workspace-indicator/stylesheet.css
|
||
|
@@ -10,24 +10,25 @@
|
||
|
}
|
||
|
|
||
|
.workspace-indicator .workspaces-box {
|
||
|
- padding: 4px 0;
|
||
|
- spacing: 4px;
|
||
|
+ padding: 5px;
|
||
|
+ spacing: 3px;
|
||
|
}
|
||
|
|
||
|
.workspace-indicator .workspace {
|
||
|
- width: 40px;
|
||
|
- border: 2px solid #000;
|
||
|
- border-radius: 2px;
|
||
|
- background-color: #595959;
|
||
|
+ width: 52px;
|
||
|
+ border: 2px solid transparent;
|
||
|
+ border-radius: 4px;
|
||
|
+ background-color: #3f3f3f;
|
||
|
}
|
||
|
|
||
|
.workspace-indicator .workspace.active {
|
||
|
- border-color: #fff;
|
||
|
+ border-color: #9f9f9f;
|
||
|
}
|
||
|
|
||
|
.workspace-indicator-window-preview {
|
||
|
background-color: #bebebe;
|
||
|
border: 1px solid #828282;
|
||
|
+ border-radius: 1px;
|
||
|
}
|
||
|
|
||
|
.workspace-indicator-window-preview.active {
|
||
|
--
|
||
|
2.44.0
|
||
|
|