Skip to content

Commit

Permalink
Merge pull request #482 from gemini-testing/users/shadowusr/INFRADUTY…
Browse files Browse the repository at this point in the history
…-25214

fix: add a delay before hiding burger menu
  • Loading branch information
shadowusr committed Aug 1, 2023
2 parents cd66fb0 + 85cdd87 commit 4ca8456
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion lib/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,21 @@ main.container {
height: 25px;
}

.menu-bar>.ui.dropdown .menu {
height: auto;
width: auto;
top: 100% !important;
transition: visibility 0.1s, opacity 0.1s linear;
transition-delay: 0.3s;
visibility: hidden;
}

.menu-bar>.ui.dropdown:hover .menu {
visibility: visible;
opacity: 1;
transition-delay: 0s;
}

.menu-bar .icon {
margin: 0;
}
Expand Down Expand Up @@ -283,7 +298,7 @@ main.container {
.tests-group__title .ui.checkbox {
vertical-align: bottom;
margin-right: 5px;

width: 18px;
height: 18px;
}
Expand Down

0 comments on commit 4ca8456

Please sign in to comment.