From b515842e3ab34d7250e153a1204568707df5a46c Mon Sep 17 00:00:00 2001 From: juanatsap Date: Sun, 9 Nov 2025 20:06:02 +0000 Subject: [PATCH] Fix CSS selector to target span inside menu-item-action - Changed from .menu-item-action to .menu-item-action span - Correctly applies width and text-align to the span element - More specific targeting as intended by user --- static/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/main.css b/static/css/main.css index a3ede60..9e177aa 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -2087,7 +2087,7 @@ a:focus { } /* Menu item action controls (Expand All, Collapse All) */ -.menu-item-action { +.menu-item-action span { width: calc(100% - 65px); text-align: center; }