diff --git a/ui-ngx/src/app/core/services/menu.models.ts b/ui-ngx/src/app/core/services/menu.models.ts index 1e3ae4d8a0..7bb2d2e87c 100644 --- a/ui-ngx/src/app/core/services/menu.models.ts +++ b/ui-ngx/src/app/core/services/menu.models.ts @@ -157,7 +157,7 @@ export const menuSectionMap = new Map([ name: 'tenant-profile.tenant-profiles', type: 'link', path: '/tenantProfiles', - icon: 'mdi:alpha-t-box' + icon: 'mdi:alpha-t-box-outline' } ], [ @@ -177,7 +177,7 @@ export const menuSectionMap = new Map([ name: 'widget.widgets', type: 'link', path: '/resources/widgets-library', - icon: 'now_widgets' + icon: 'mdi:widgets-outline' } ], [ @@ -187,7 +187,7 @@ export const menuSectionMap = new Map([ name: 'widget.widgets', type: 'link', path: '/resources/widgets-library/widget-types', - icon: 'now_widgets' + icon: 'mdi:widgets-outline' } ], [ @@ -197,7 +197,7 @@ export const menuSectionMap = new Map([ name: 'widgets-bundle.widgets-bundles', type: 'link', path: '/resources/widgets-library/widgets-bundles', - icon: 'now_widgets' + icon: 'mdi:widgets-outline' } ], [ @@ -227,7 +227,7 @@ export const menuSectionMap = new Map([ name: 'resource.files', type: 'link', path: '/resources/resources-library', - icon: 'mdi:rhombus-split' + icon: 'mdi:rhombus-split-outline' } ], [ @@ -383,7 +383,7 @@ export const menuSectionMap = new Map([ name: 'admin.settings', type: 'link', path: '/settings', - icon: 'settings' + icon: 'mdi:cog-outline' } ], [ @@ -394,7 +394,7 @@ export const menuSectionMap = new Map([ fullName: 'admin.general-settings', type: 'link', path: '/settings/general', - icon: 'settings_applications' + icon: 'mdi:cog-outline' } ], [ @@ -404,7 +404,7 @@ export const menuSectionMap = new Map([ name: 'admin.outgoing-mail', type: 'link', path: '/settings/outgoing-mail', - icon: 'mail' + icon: 'mail_outline' } ], [ @@ -415,7 +415,7 @@ export const menuSectionMap = new Map([ fullName: 'admin.home-settings', type: 'link', path: '/settings/home', - icon: 'settings_applications' + icon: 'mdi:cog-outline' } ], [ @@ -426,7 +426,7 @@ export const menuSectionMap = new Map([ fullName: 'admin.notifications-settings', type: 'link', path: '/settings/notifications', - icon: 'mdi:message-badge' + icon: 'mdi:message-badge-outline' } ], [ @@ -479,7 +479,7 @@ export const menuSectionMap = new Map([ fullName: 'security.general-settings', type: 'link', path: '/security-settings/general', - icon: 'settings_applications' + icon: 'mdi:cog-outline' } ], [ @@ -499,7 +499,7 @@ export const menuSectionMap = new Map([ name: 'admin.oauth2.oauth2', type: 'link', path: '/security-settings/oauth2', - icon: 'mdi:shield-account' + icon: 'mdi:shield-account-outline' } ], [ @@ -579,7 +579,7 @@ export const menuSectionMap = new Map([ name: 'dashboard.dashboards', type: 'link', path: '/dashboards', - icon: 'dashboards' + icon: 'mdi:view-dashboard-outline' } ], [ @@ -619,7 +619,7 @@ export const menuSectionMap = new Map([ name: 'entity-view.entity-views', type: 'link', path: '/entities/entityViews', - icon: 'view_quilt' + icon: 'mdi:view-quilt-outline' } ], [ @@ -649,7 +649,7 @@ export const menuSectionMap = new Map([ name: 'device-profile.device-profiles', type: 'link', path: '/profiles/deviceProfiles', - icon: 'mdi:alpha-d-box' + icon: 'mdi:alpha-d-box-outline' } ], [ @@ -659,7 +659,7 @@ export const menuSectionMap = new Map([ name: 'asset-profile.asset-profiles', type: 'link', path: '/profiles/assetProfiles', - icon: 'mdi:alpha-a-box' + icon: 'mdi:alpha-a-box-outline' } ], [ @@ -679,7 +679,7 @@ export const menuSectionMap = new Map([ name: 'customer.customers', type: 'link', path: '/customers', - icon: 'supervisor_account' + icon: 'mdi:account-supervisor-outline' } ], [ diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/navigation-card-widget.component.scss b/ui-ngx/src/app/modules/home/components/widget/lib/navigation-card-widget.component.scss index 6296614c92..08a527182f 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/navigation-card-widget.component.scss +++ b/ui-ngx/src/app/modules/home/components/widget/lib/navigation-card-widget.component.scss @@ -26,6 +26,7 @@ display: flex; flex-direction: column; align-items: center; + color: rgba(0,0,0,0.76); .mat-icon { margin: auto !important; } diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/navigation-cards-widget.component.scss b/ui-ngx/src/app/modules/home/components/widget/lib/navigation-cards-widget.component.scss index 6470ed3f71..18ace8935b 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/navigation-cards-widget.component.scss +++ b/ui-ngx/src/app/modules/home/components/widget/lib/navigation-cards-widget.component.scss @@ -49,6 +49,7 @@ display: flex; flex-direction: column; align-items: center; + color: rgba(0,0,0,0.76); .mat-icon { margin: auto; } diff --git a/ui-ngx/src/app/modules/home/home.component.html b/ui-ngx/src/app/modules/home/home.component.html index 184b07a1ba..f1a0fc0136 100644 --- a/ui-ngx/src/app/modules/home/home.component.html +++ b/ui-ngx/src/app/modules/home/home.component.html @@ -55,40 +55,40 @@ - -
- - - -
- + @if (searchEnabled) { +
+ + + +
+ + + } @if (fullscreenEnabled) { } diff --git a/ui-ngx/src/app/modules/home/pages/home-links/home-links.component.scss b/ui-ngx/src/app/modules/home/pages/home-links/home-links.component.scss index 1d0dc71f00..4938e8dc54 100644 --- a/ui-ngx/src/app/modules/home/pages/home-links/home-links.component.scss +++ b/ui-ngx/src/app/modules/home/pages/home-links/home-links.component.scss @@ -49,6 +49,7 @@ display: flex; flex-direction: column; align-items: center; + color: rgba(0,0,0,0.76); .mat-icon { margin: auto; } diff --git a/ui-ngx/src/app/modules/home/pages/rulechain/rulechain-page.component.html b/ui-ngx/src/app/modules/home/pages/rulechain/rulechain-page.component.html index 7a2966d3c4..d36a36a11a 100644 --- a/ui-ngx/src/app/modules/home/pages/rulechain/rulechain-page.component.html +++ b/ui-ngx/src/app/modules/home/pages/rulechain/rulechain-page.component.html @@ -185,7 +185,7 @@ } - @if (!isImport) { -