From b3c3e4fa6a27e5de66cb48e382e62753c8a4aed1 Mon Sep 17 00:00:00 2001 From: Denis Dokin Date: Wed, 2 Jul 2025 16:45:14 +0300 Subject: [PATCH] fixing table matrix in modern themes Fix bug #75475 --- apps/common/main/lib/component/DimensionPicker.js | 6 +++--- apps/common/main/resources/less/colors-table-night.less | 2 +- apps/common/main/resources/less/colors-table-white.less | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/common/main/lib/component/DimensionPicker.js b/apps/common/main/lib/component/DimensionPicker.js index 67f18c6e44..eb9b4fddbc 100644 --- a/apps/common/main/lib/component/DimensionPicker.js +++ b/apps/common/main/lib/component/DimensionPicker.js @@ -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; diff --git a/apps/common/main/resources/less/colors-table-night.less b/apps/common/main/resources/less/colors-table-night.less index 48b539e8b2..673e72ef79 100644 --- a/apps/common/main/resources/less/colors-table-night.less +++ b/apps/common/main/resources/less/colors-table-night.less @@ -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%); diff --git a/apps/common/main/resources/less/colors-table-white.less b/apps/common/main/resources/less/colors-table-white.less index c3f50ea3f4..e50cf65374 100644 --- a/apps/common/main/resources/less/colors-table-white.less +++ b/apps/common/main/resources/less/colors-table-white.less @@ -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%);