phase 4
This commit is contained in:
@@ -43,3 +43,17 @@
|
||||
--panel-border: 1px solid var(--border);
|
||||
--panel-header-height: 36px;
|
||||
}
|
||||
|
||||
/* Animated gradient outline for buttons in a waiting state.
|
||||
Usage: add class="waiting" to any button/element. */
|
||||
@keyframes waiting-glow {
|
||||
0% { box-shadow: 0 0 3px 1px var(--status-processing); }
|
||||
33% { box-shadow: 0 0 3px 1px var(--status-live); }
|
||||
66% { box-shadow: 0 0 3px 1px var(--status-escalating); }
|
||||
100% { box-shadow: 0 0 3px 1px var(--status-processing); }
|
||||
}
|
||||
|
||||
.waiting {
|
||||
animation: waiting-glow 2s linear infinite;
|
||||
outline: 1px solid transparent;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user