Skip to content

Commit fb7ff10

Browse files
committed
fix(admin): edit variable for sidemenu submenu active text color
* Fix a misspelling in cssVariable name for side_submenu_active_text_color variable. * Also fixed on hover color on admin page to represent not fixed color.
1 parent 792fbe2 commit fb7ff10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/admin-gui/src/_styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ mat.$theme-ignore-duplication-warnings: true;
442442
color: var(--admin-color-text);
443443

444444
&:hover {
445-
color: #000000;
445+
color: var(--admin-color-text);
446446
}
447447
}
448448

apps/admin-gui/src/app/core/services/common/admin-gui-config.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class AdminGuiConfigService {
9898
},
9999
{
100100
configValue: 'sidemenu_submenu_active_text_color',
101-
cssVariable: '--sidemenu-submenu-active-test-color',
101+
cssVariable: '--sidemenu-submenu-active-text-color',
102102
},
103103
{
104104
configValue: 'sidemenu_submenu_hover_text_color',

0 commit comments

Comments
 (0)