29-01-2024

This commit is contained in:
2024-01-29 10:44:49 +07:00
parent 545c404fdf
commit ff274416dd
5 changed files with 15 additions and 12 deletions

View File

@@ -320,10 +320,10 @@ a {
transition: 0.3s all;
position: relative;
}
.admin-menu .item:hover {
.admin-menu .item:hover, .admin-menu .item.current {
background: #81b5e4;
}
.admin-menu .item:hover .icons {
.admin-menu .item:hover .icons, .admin-menu .item.current .icons {
filter: brightness(100);
}
.admin-menu .item:hover .sub-menu {

File diff suppressed because one or more lines are too long

View File

@@ -301,11 +301,13 @@ a {
align-items: center;
transition: 0.3s all;
position: relative;
&:hover {
&:hover, &.current{
background: #81b5e4;
.icons {
filter: brightness(100);
}
}
&:hover {
.sub-menu {
left: calc(100% + 8px);
opacity: 1;