From 5ab37fffc07a4bef9855b30dd07b1df10519a0a5 Mon Sep 17 00:00:00 2001 From: daria <95225431+dariiing@users.noreply.github.com> Date: Thu, 21 May 2026 15:36:18 +0300 Subject: [PATCH] add aria label to colors --- www/common/common-ui-elements.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index a559d7fc5..aea40407b 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -4407,6 +4407,7 @@ define([ var $color = $(h('button.cp-palette-color')); all.push($color); $color.addClass('cp-palette-'+(color || 'nocolor')); + $color.attr('aria-label', Messages['color' + i]); const checkIcon = Icons.get('check'); $(checkIcon).addClass('cp-check-icon is-hidden'); // added hidden class to overcome Lucide rendering $color.append(checkIcon);