This commit is contained in:
2025-02-21 14:24:40 +07:00
parent ef51a9d6f4
commit 1b461f0e86
3 changed files with 50 additions and 6 deletions

View File

@@ -204,7 +204,8 @@ a {
}
.admin-menu-container .sub-menu a {
display: block;
padding: 10px 10px 10px 45px;
padding: 10px;
margin-left: 25px;
position: relative;
}
.admin-menu-container .sub-menu a:hover {
@@ -216,8 +217,28 @@ a {
background: #22a2ff;
border-radius: 4px;
}
.admin-menu-container .sub-menu a:last-child {
margin: 0;
.admin-menu-container .sub-menu a:last-child::after {
display: none;
}
.admin-menu-container .sub-menu a::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: #79b0e2;
position: absolute;
top: 16px;
left: -16px;
z-index: 9;
}
.admin-menu-container .sub-menu a::after {
content: "";
width: 1px;
height: 100%;
background: #fff;
position: absolute;
top: 16px;
left: -12px;
}
.admin-menu-container .sub-menu.active {
display: block;

File diff suppressed because one or more lines are too long

View File

@@ -193,7 +193,8 @@ a {
display: none;
a {
display: block;
padding: 10px 10px 10px 45px;
padding: 10px;
margin-left: 25px;
position: relative;
&:hover {
text-decoration: underline;
@@ -205,7 +206,29 @@ a {
border-radius: 4px;
}
&:last-child {
margin: 0;
&::after {
display: none;
}
}
&::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: #79b0e2;
position: absolute;
top: 16px;
left: -16px;
z-index: 9;
}
&::after {
content: "";
width: 1px;
height: 100%;
background: #fff;
position: absolute;
top: 16px;
left: -12px;
}
}
&.active {