diff --git a/app/assets/javascripts/app/views/navigation/menu.jst.eco b/app/assets/javascripts/app/views/navigation/menu.jst.eco
index 8f39ef7e9..f747830a3 100644
--- a/app/assets/javascripts/app/views/navigation/menu.jst.eco
+++ b/app/assets/javascripts/app/views/navigation/menu.jst.eco
@@ -1,6 +1,7 @@
<% for item in @items: %>
<% if item.child: %>
-
+
+
<% else: %>
-
+
<% end %>
<% end %>
\ No newline at end of file
diff --git a/app/assets/stylesheets/zammad.scss b/app/assets/stylesheets/zammad.scss
index 2f65be11d..3f39324b0 100644
--- a/app/assets/stylesheets/zammad.scss
+++ b/app/assets/stylesheets/zammad.scss
@@ -2289,6 +2289,12 @@ footer {
height: 22px;
}
+ .menu .dropdown-menu {
+ left: 10px;
+ right: 15px;
+ min-width: 0;
+ }
+
.menu-item {
padding: 0 15px;
height: 48px;
@@ -2297,12 +2303,13 @@ footer {
text-decoration: none;
display: flex;
align-items: center;
+ cursor: pointer;
&:hover {
background: hsl(230,10%,13%);
border-bottom-color: rgba(240, 250, 255, .08);
}
-
+
&.is-active,
&.is-hovered {
background: none;
@@ -2325,13 +2332,7 @@ footer {
}
.dropdown-icon {
- fill: hsl(206,7%,37%);
- }
-
- .dropdown-menu {
- left: 10px;
- right: 15px;
- min-width: 0;
+ fill: currentColor;
}
}