This commit is contained in:
Tony Zhang 2022-05-08 01:58:24 +08:00
parent c3e8c15f10
commit ceb598dbab
3 changed files with 11 additions and 10 deletions

View File

@ -18048,16 +18048,13 @@ .notes .note .delete-wrapper {
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
width: 10%;
height: 100%;
align-items: center;
justify-content: center;
cursor: pointer;
}
.notes .note .delete-wrapper:hover {
display: flex;
}
.notes .note .delete-wrapper .bg {
background: red;
opacity: 0.7;
@ -18073,3 +18070,6 @@ .notes .note .delete-wrapper .delete {
font-weight: bold;
font-size: 1.2rem;
}
.notes .note:hover .delete-wrapper {
display: flex;
}

View File

@ -1,4 +1,4 @@
{
"/js/app.js": "/js/app.js?id=c98255a330e87e9652070f2535faf5ac",
"/css/app.css": "/css/app.css?id=2256531870611bc5ca65bc01fa411952"
"/css/app.css": "/css/app.css?id=0e09613f38f38595f7ffc7902940b5d6"
}

View File

@ -17,15 +17,12 @@
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
width: 10%;
height: 100%;
align-items: center;
justify-content: center;
cursor: pointer;
&:hover {
display: flex;
}
.bg {
background: red;
opacity: .7;
@ -42,6 +39,10 @@
font-size: 1.2rem;
}
}
&:hover {
.delete-wrapper {
display: flex;
}
}
}
}