From cb1fac15ff96a82f53a45c062cf58580cf1cf511 Mon Sep 17 00:00:00 2001 From: Dokin Denis Date: Mon, 12 Jan 2026 14:35:42 +0500 Subject: [PATCH] Update DimensionPicker.js --- apps/common/main/lib/component/DimensionPicker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/DimensionPicker.js b/apps/common/main/lib/component/DimensionPicker.js index 8d6106226e..2b5a2b0b35 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 ?'#7f7f7f' :Common.UI.Themes.currentThemeColor('--chb-border-normal'); + me.borderColor = Common.Utils.isIE ?'#000000' :Common.UI.Themes.currentThemeColor('--canvas-high-contrast'); me.fillColor = Common.Utils.isIE ?'#fff' :Common.UI.Themes.currentThemeColor('--background-normal'); me.borderColorHighlighted = Common.Utils.isIE ?'#92B7F0' :Common.UI.Themes.currentThemeColor('--border-preview-hover'); me.fillColorHighlighted = Common.Utils.isIE ?'#4473CA' :Common.UI.Themes.currentThemeColor('--background-accent-button'); @@ -163,7 +163,7 @@ define([ changeColors: function (){ - this.borderColor = Common.UI.Themes.currentThemeColor('--chb-border-normal'); + this.borderColor = Common.UI.Themes.currentThemeColor('--canvas-high-contrast'); 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');