aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/styles/components/menu.css
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/app/styles/components/menu.css')
-rw-r--r--server/sonar-web/src/main/js/app/styles/components/menu.css15
1 files changed, 14 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/app/styles/components/menu.css b/server/sonar-web/src/main/js/app/styles/components/menu.css
index 5e479d6fc20..11e247b18a0 100644
--- a/server/sonar-web/src/main/js/app/styles/components/menu.css
+++ b/server/sonar-web/src/main/js/app/styles/components/menu.css
@@ -56,6 +56,10 @@
background-color: var(--barBorderColor);
}
+.menu > li > a.disabled {
+ color: #bbb !important;
+}
+
.menu > li > a:hover,
.menu > li > a:focus {
text-decoration: none;
@@ -75,11 +79,20 @@
background-color: var(--barBackgroundColor);
}
-.menu .menu-vertically-limited {
+.menu .menu-vertically-limited,
+.menu.menu-vertically-limited {
max-height: 300px;
overflow-y: auto;
}
+.menu-vertically-limited.with-top-separator {
+ border-top: 1px solid #e6e6e6;
+}
+
+.menu-vertically-limited.with-bottom-separator {
+ border-bottom: 1px solid #e6e6e6;
+}
+
.menu .menu-footer > a > span {
border-bottom: 1px solid var(--gray80);
color: var(--secondFontColor);