fixing table matrix in modern themes

Fix bug #75475
This commit is contained in:
Denis Dokin
2025-07-02 16:45:14 +03:00
parent 0a46ee79ef
commit b3c3e4fa6a
3 changed files with 5 additions and 5 deletions

View File

@ -82,10 +82,10 @@ define([
me.options.height = me.options.itemSize* this.options.minRows;
var rootEl = this.cmpEl;
me.borderColor = Common.Utils.isIE ?'#888888' :Common.UI.Themes.currentThemeColor('--border-preview-select');
me.borderColor = Common.Utils.isIE ?'#c0c0c0' :Common.UI.Themes.currentThemeColor('--border-regular-control');
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');
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');
me.itemSize = me.options.itemSize;

View File

@ -19,7 +19,7 @@
--background-toolbar-tab: #404040;
--background-toolbar-additional: #404040;
--background-primary-dialog-button: #6e9fec;
--background-accent-button: #446995;
--background-accent-button: #6e9fec;
--background-notification-popover: #1F2C5C;
--background-notification-badge: #ffd112;
--background-scrim: fade(#000, 20%);

View File

@ -19,7 +19,7 @@
--background-toolbar-tab: #fff;
--background-toolbar-additional: #efefef;
--background-primary-dialog-button: #4A87E7;
--background-accent-button: #446995;
--background-accent-button: #4A87E7;
--background-notification-popover: #fcfed7;
--background-notification-badge: #ffd112;
--background-scrim: fade(#000, 20%);