From e04bbf7bd006c38a076a67ae0ff8b33ce4dc3dca Mon Sep 17 00:00:00 2001 From: Angelo Date: Sun, 17 Aug 2025 20:55:22 -0300 Subject: [PATCH] Add disable current workspace indicator's icon option --- SuperPins/chrome.css | 8 +++++++- SuperPins/preferences.json | 4 ++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/SuperPins/chrome.css b/SuperPins/chrome.css index dea87d5..3e455c6 100644 --- a/SuperPins/chrome.css +++ b/SuperPins/chrome.css @@ -488,7 +488,13 @@ } /* current workspace icons size */ - :root:has(#theme-SuperPins[uc-workspace-current-icon-size="small"]) { + :root:has(#theme-SuperPins[uc-workspace-current-icon-size="disabled"]) { + .zen-current-workspace-indicator .zen-current-workspace-indicator-icon { + font-size: 0 !important; + } + } + + :root:has(#theme-SuperPins[uc-workspace-current-icon-size="small"]) { .zen-current-workspace-indicator .zen-current-workspace-indicator-icon { font-size: 12px !important; } diff --git a/SuperPins/preferences.json b/SuperPins/preferences.json index bc13942..82b7aa8 100644 --- a/SuperPins/preferences.json +++ b/SuperPins/preferences.json @@ -317,6 +317,10 @@ "placeholder": "Default", "options": [ { + "label": "Disabled", + "value": "disabled" + }, + { "label": "Small", "value": "small" },