summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-07-19 16:22:03 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-07-19 16:22:03 +0300
commitf12076965d2b0984fcffff061be2bc461971a803 (patch)
treeb33557b9830d1a997d53ffe4f73d7bfa5460ceca
parentd3cd10e6112972df7134274b92472cc0d4c530b8 (diff)
downloadwebui-vue-f12076965d2b0984fcffff061be2bc461971a803.tar.xz
SILABMC-191: Fix displaying of left menu
-rw-r--r--src/components/_sila/AppNavigation/AppNavigation.vue9
-rw-r--r--src/locales/en-US.json1
2 files changed, 9 insertions, 1 deletions
diff --git a/src/components/_sila/AppNavigation/AppNavigation.vue b/src/components/_sila/AppNavigation/AppNavigation.vue
index acfabe76..6f5dfa23 100644
--- a/src/components/_sila/AppNavigation/AppNavigation.vue
+++ b/src/components/_sila/AppNavigation/AppNavigation.vue
@@ -111,9 +111,13 @@ svg {
list-style: none;
padding-left: 0;
margin-left: 0;
+ background-color: $gray-5;
.nav-item {
outline: none;
+ & > a {
+ border-bottom: 1px solid $gray-20;
+ }
}
.nav-link {
@@ -195,6 +199,10 @@ svg {
}
}
+.nav-item > button {
+ border-bottom: 1px solid $gray-20;
+}
+
.nav-container {
position: fixed;
width: $navigation-width;
@@ -203,7 +211,6 @@ svg {
left: 0;
z-index: $zindex-fixed;
overflow-y: auto;
- background-color: theme-color('light');
transform: translateX(-$navigation-width);
transition: transform $exit-easing--productive $duration--moderate-02;
border-right: 1px solid theme-color-level('light', 2.85);
diff --git a/src/locales/en-US.json b/src/locales/en-US.json
index e43167c6..6e1f6f76 100644
--- a/src/locales/en-US.json
+++ b/src/locales/en-US.json
@@ -98,6 +98,7 @@
"titleRefresh": "Refresh application data"
},
"appNavigation": {
+ "system":"System",
"resourceManagement": "Resource management",
"securityAndAccess": "Security and access",
"sessions": "@:appPageTitle.sessions",