Backend korrigiert, icons korrigiert, menü-aufklappen verbessert

This commit is contained in:
Torsten Schulz
2024-08-21 21:58:00 +02:00
parent 16a59daf39
commit dfdb1660ff
12 changed files with 29 additions and 16 deletions

View File

@@ -123,9 +123,20 @@ a {
position: absolute;
border: 1px solid #7E471B;
background-color: #F9A22C;
display: none;
left: 0;
top: 2.5em;
max-height: 0;
overflow: hidden;
opacity: 0;
visibility: hidden;
transition: max-height 0.25s ease-in-out, opacity 0.05s ease-in-out, visibility 0s 0.05s;
}
.mainmenuitem:hover .submenu1 {
max-height: 500px;
opacity: 1;
visibility: visible;
transition: max-height 0.25s ease-in-out, opacity 0.05s ease-in-out, visibility 0s;
}
.submenu1>li {