del
All checks were successful
/ upload (release) Successful in 22s

This commit is contained in:
pavel 2026-02-24 02:12:26 +01:00
commit e4cc833ccc
4 changed files with 143 additions and 1 deletions

View file

@ -729,6 +729,32 @@ select {
transform: scale(0.95);
}
.sound-delete {
position: absolute;
top: 4px;
right: 4px;
width: 18px;
height: 18px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.6);
color: var(--text-muted);
display: grid;
place-items: center;
opacity: 0;
transition: all var(--transition);
z-index: 2;
}
.sound-delete:hover {
background: var(--danger);
color: #fff;
transform: scale(1.1);
}
.sound-item:hover .sound-delete {
opacity: 1;
}
.sound-icon {
font-size: 24px;
}