style(24-01): add recording button pulse animation
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
89a9d4ced3
commit
42eac0d304
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -82,3 +82,21 @@ table.vu td {
|
|||
width:12px;
|
||||
height:12px;
|
||||
}
|
||||
|
||||
// Recording button active state
|
||||
.btn-recording-active {
|
||||
animation: recording-pulse 1.5s ease-in-out infinite;
|
||||
|
||||
&:hover {
|
||||
animation: none;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes recording-pulse {
|
||||
0%, 100% {
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue