new menu
This commit is contained in:
@@ -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
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user