From 5fdbb2fc288a40ae6fc55e282d4cde3248222d92 Mon Sep 17 00:00:00 2001 From: Konstantin Kireyev Date: Tue, 15 Oct 2024 21:50:48 +0500 Subject: [PATCH] fix active icon color of menu item --- apps/common/main/resources/less/common.less | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/common/main/resources/less/common.less b/apps/common/main/resources/less/common.less index 022f1b53c0..24c685c1a0 100644 --- a/apps/common/main/resources/less/common.less +++ b/apps/common/main/resources/less/common.less @@ -249,7 +249,8 @@ label { } .menu-item-icon { - background-position-x: var(--button-small-active-icon-offset-x, 0); + background-position-x: -20px; + background-position-x: @button-small-active-icon-offset-x; } svg.menu-item-icon { @@ -287,7 +288,8 @@ label { line-height: 20px; position: relative; &:not(:disabled) { - opacity: var(--component-normal-icon-opacity, 0.8); + opacity: 0.8; + opacity: @component-normal-icon-opacity; } }