Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

enh(ui) : better delimitation of menu #7253

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions www/front_src/src/styles/partials/_side-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
text-align: center;
background: #e0e0e0;
transition: all 0.2s;
border-right: 1px solid $grey-medium;
z-index: 2;
.sidebar-logo {
display: none;
}
Expand Down Expand Up @@ -181,7 +183,6 @@ a {
background: $turquoise-centreon-primary;
color: $white-color;
}

}
&:hover {
.collapsed-level-item-link {
Expand Down Expand Up @@ -395,7 +396,7 @@ a {
font-size: 0.8rem;
background-color: $white-color;
display: block;
padding: 3px 10px 3px 47px;
padding: 3px 10px 3px 56px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this modification is from another PR not yet approved by the QA : https://github.com/centreon/centreon/pull/7251

border-bottom: 1px solid #f7f7f7;
text-align: left;
}
Expand Down Expand Up @@ -437,11 +438,7 @@ a {
.collapsed-level-item {
background-color: $white-color;
.collapsed-level-item-link {
padding: 8px 10px 8px 47px;
// &:hover {
// color: $white-color;
// background-color: #0a78a5;
// }
padding: 8px 10px 8px 56px;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this modification is from another PR not yet approved by the QA : https://github.com/centreon/centreon/pull/7251

}
}
}
Expand Down
1 change: 1 addition & 0 deletions www/front_src/src/styles/partials/_variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* Colors */
$white-color: #ffffff;
$black-color: #000000;
$grey-medium: rgba(209, 210, 212, 1);

$lime-centreon-primary: rgba(132, 189, 0, 1);
$green-centreon-primary: rgba(67, 176, 42, 1);
Expand Down