parent
bcac7fc375
commit
0273eab753
8 changed files with 127 additions and 8 deletions
|
|
@ -354,6 +354,43 @@ select {
|
|||
color: var(--text-strong);
|
||||
}
|
||||
|
||||
.copied-badge {
|
||||
background: var(--brand);
|
||||
color: #fff;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.4px;
|
||||
animation: fadeInOut 2s ease forwards;
|
||||
pointer-events: none;
|
||||
white-space: nowrap;
|
||||
order: -1;
|
||||
}
|
||||
|
||||
@keyframes fadeInOut {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(4px);
|
||||
}
|
||||
|
||||
15% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
85% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
}
|
||||
|
||||
.header-action-btn i {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue