Update DimensionPicker.js

This commit is contained in:
Dokin Denis
2026-01-12 14:35:42 +05:00
committed by maxkadushkin
parent 5b6b1423f5
commit 16e9e75397

View File

@ -82,7 +82,7 @@ define([
me.options.height = me.options.itemSize* this.options.minRows;
var rootEl = this.cmpEl;
me.borderColor = '#aaaaaa';
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 ?'#bababa' :Common.UI.Themes.currentThemeColor('--border-preview-hover');
me.fillColorHighlighted = Common.Utils.isIE ?'#446995' :Common.UI.Themes.currentThemeColor('--background-accent-button');
@ -163,6 +163,7 @@ define([
changeColors: function (){
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');