新讨论

This commit is contained in:
A1300399510
2025-02-14 18:55:06 +08:00
parent 8fbda2d907
commit 2ad6ef4247
4 changed files with 97 additions and 36 deletions

View File

@@ -980,8 +980,8 @@
.menu-box {
position: relative;
&:hover .report-box {
display: flex;
&:hover .operate-box {
display: block;
}
.menu-icon {
@@ -990,20 +990,26 @@
cursor: pointer;
}
.report-box {
.operate-box {
display: none;
flex-direction: column;
position: absolute;
top: 24px;
right: 0;
width: 60px;
height: 24px;
background-color: rgba(246, 246, 246, 1);
border: 1px solid rgba(215, 215, 215, 1);
border-radius: 5px;
font-size: 12px;
color: #7f7f7f;
cursor: pointer;
width: 60px;
z-index: 2;
border-radius: 5px;
background-color: rgba(246, 246, 246, 1);
border: 1px solid rgba(215, 215, 215, 1);
.item {
height: 24px;
&:not(:last-of-type) {
border-bottom: 1px solid rgba(215, 215, 215, 1);
}
}
&::after {
content: "";
width: 58px;
@@ -1011,6 +1017,7 @@
position: absolute;
top: -14px;
right: 0;
z-index: -1;
}
}
}