Skip to content

Commit

Permalink
Fix table picker component
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova committed Aug 2, 2024
1 parent 90d0a63 commit 06e3b25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/common/main/lib/component/DimensionPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ define([
me.options.height = me.options.itemSize* this.options.minRows;
var rootEl = this.cmpEl;

me.borderColor = Common.Utils.isIE ?'#cfcfcf' :Common.UI.Themes.currentThemeColor('--border-regular-control');
me.borderColor = Common.Utils.isIE ?'#888888' :Common.UI.Themes.currentThemeColor('--border-preview-select');
me.fillColor = Common.Utils.isIE ?'#fff' :Common.UI.Themes.currentThemeColor('--background-normal');
me.borderColorHighlighted = Common.Utils.isIE ?'#848484' :Common.UI.Themes.currentThemeColor('--border-control-focus');
me.fillColorHighlighted = Common.Utils.isIE ?'#7d858c' :Common.UI.Themes.currentThemeColor('--highlight-button-pressed');
Expand Down Expand Up @@ -162,7 +162,7 @@ define([


changeColors: function (){
this.borderColor = Common.UI.Themes.currentThemeColor('--border-regular-control');
this.borderColor = Common.UI.Themes.currentThemeColor('--border-preview-select');
this.fillColor = Common.UI.Themes.currentThemeColor('--background-normal');
this.borderColorHighlighted = Common.UI.Themes.currentThemeColor('--border-control-focus');
this.fillColorHighlighted = Common.UI.Themes.currentThemeColor('--highlight-button-pressed');
Expand Down

0 comments on commit 06e3b25

Please sign in to comment.