From 51a10dcf68852b278ff58b983b64132f357fe645 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 16 Sep 2026 14:09:33 +0200 Subject: fix(workspaces): swap the desktop 2 and 3 icons Desktop 2 is the editor and desktop 3 the terminal; the nth-child mapping had them the other way round. The appearance drawer's window-switcher now draws the same icons and was corrected to match. --- styles/modules.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'styles') diff --git a/styles/modules.css b/styles/modules.css index 9131752..4daff23 100644 --- a/styles/modules.css +++ b/styles/modules.css @@ -105,8 +105,8 @@ /* The eight. Generic names, so the bar does not lie when the application on a * workspace changes. */ #workspaces button:nth-child(1) { background-image: url("@ICONS@/categories/22/web-browser.svg"); } -#workspaces button:nth-child(2) { background-image: url("@ICONS@/categories/22/utilities-terminal.svg"); } -#workspaces button:nth-child(3) { background-image: url("@ICONS@/categories/22/text-editor.svg"); } +#workspaces button:nth-child(2) { background-image: url("@ICONS@/categories/22/text-editor.svg"); } +#workspaces button:nth-child(3) { background-image: url("@ICONS@/categories/22/utilities-terminal.svg"); } #workspaces button:nth-child(4) { background-image: url("@ICONS@/devices/22/network-server.svg"); } #workspaces button:nth-child(5) { background-image: url("@ICONS@/actions/22/document-edit.svg"); } #workspaces button:nth-child(6) { background-image: url("@ICONS@/categories/22/applications-graphics.svg"); } -- cgit v1.2.3