Instead of a click button, the lists for genders and country searches

are hovering now
This commit is contained in:
Torsten Schulz
2024-02-23 15:46:05 +01:00
parent 94d2985334
commit 359f379b18
3 changed files with 55 additions and 36 deletions

View File

@@ -185,3 +185,23 @@ main {
background-color: lightgray;
margin: 0.1em 0.2em;
}
.selectBoxes-drop-down-trigger {
cursor: pointer;
}
.selectBoxes-drop-down-trigger > .selectBoxes-dropdown {
display: none;
position: absolute;
top: 1.2em;
overflow: auto;
background: RGBA(248, 248, 248, 0.8);
max-height: 10em;
z-index: 1;
border: 1px solid #666;
box-shadow: 2px 2px 4px #666;
padding: 2px;
left: 9em;
}
.selectBoxes-drop-down-trigger:hover > .selectBoxes-dropdown {
display: inline-block;
}