Skip to content

Commit 4ca8456

Browse files
authored
Merge pull request #482 from gemini-testing/users/shadowusr/INFRADUTY-25214
fix: add a delay before hiding burger menu
2 parents cd66fb0 + 85cdd87 commit 4ca8456

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

lib/static/styles.css

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,21 @@ main.container {
8888
height: 25px;
8989
}
9090

91+
.menu-bar>.ui.dropdown .menu {
92+
height: auto;
93+
width: auto;
94+
top: 100% !important;
95+
transition: visibility 0.1s, opacity 0.1s linear;
96+
transition-delay: 0.3s;
97+
visibility: hidden;
98+
}
99+
100+
.menu-bar>.ui.dropdown:hover .menu {
101+
visibility: visible;
102+
opacity: 1;
103+
transition-delay: 0s;
104+
}
105+
91106
.menu-bar .icon {
92107
margin: 0;
93108
}
@@ -283,7 +298,7 @@ main.container {
283298
.tests-group__title .ui.checkbox {
284299
vertical-align: bottom;
285300
margin-right: 5px;
286-
301+
287302
width: 18px;
288303
height: 18px;
289304
}

0 commit comments

Comments
 (0)