Add duplicate list item action

This commit is contained in:
Misode
2021-09-29 01:02:24 +02:00
parent a0b7cb1c81
commit c51acd34e7
5 changed files with 36 additions and 12 deletions

View File

@@ -547,7 +547,7 @@ main.has-preview {
.tooltipped::before {
content: '';
position: absolute;
z-index: 100;
z-index: 101;
display: none;
right: 50%;
width: 0;
@@ -564,6 +564,10 @@ main.has-preview {
animation: tooltip-appear 0.1s ease-in 0.4s forwards;
}
.tooltipped:not([disabled]):hover::after {
box-shadow: 0 1px 3px 0 #0007;
}
@keyframes tooltip-appear {
from { opacity: 0; }
to { opacity: 1; }