From cb5bd7c652f4557caec254125ef21b4dfb38acb4 Mon Sep 17 00:00:00 2001 From: Denis Dokin Date: Thu, 10 Jul 2025 14:28:37 +0000 Subject: [PATCH] Update DimensionPicker.js (#580) Co-authored-by: Denis Dokin Co-committed-by: Denis Dokin --- apps/common/main/lib/component/DimensionPicker.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/DimensionPicker.js b/apps/common/main/lib/component/DimensionPicker.js index 4fbab12b1d..151f5bc258 100644 --- a/apps/common/main/lib/component/DimensionPicker.js +++ b/apps/common/main/lib/component/DimensionPicker.js @@ -82,7 +82,7 @@ define([ me.options.height = me.options.itemSize* this.options.minRows; var rootEl = this.cmpEl; - me.borderColor = Common.Utils.isIE ?'#c0c0c0' :Common.UI.Themes.currentThemeColor('--border-regular-control'); + me.borderColor = '#aaaaaa'; me.fillColor = Common.Utils.isIE ?'#fff' :Common.UI.Themes.currentThemeColor('--background-normal'); me.borderColorHighlighted = Common.Utils.isIE ?'#bababa' :Common.UI.Themes.currentThemeColor('--border-preview-hover'); me.fillColorHighlighted = Common.Utils.isIE ?'#446995' :Common.UI.Themes.currentThemeColor('--background-accent-button'); @@ -162,7 +162,6 @@ define([ changeColors: function (){ - this.borderColor = Common.UI.Themes.currentThemeColor('--border-regular-control'); this.fillColor = Common.UI.Themes.currentThemeColor('--background-normal'); this.borderColorHighlighted = Common.UI.Themes.currentThemeColor('--border-preview-hover'); this.fillColorHighlighted = Common.UI.Themes.currentThemeColor('--background-accent-button');