ux: ollama flow

This commit is contained in:
2026-05-07 03:03:25 -04:00
parent 3b6e3c34d5
commit 767e929bf9
3 changed files with 83 additions and 12 deletions
+25
View File
@@ -1078,6 +1078,31 @@ button.secondary {
width: 100%;
}
.attention-pulse {
position: relative;
border-color: rgba(47, 125, 50, 0.72) !important;
box-shadow: 0 0 0 0 rgba(55, 148, 61, 0.54);
animation: green-attention-pulse 1.35s ease-out infinite;
}
.attention-pulse:disabled,
.attention-pulse[hidden] {
animation: none;
box-shadow: none;
}
@keyframes green-attention-pulse {
0% {
box-shadow: 0 0 0 0 rgba(55, 148, 61, 0.58);
}
70% {
box-shadow: 0 0 0 10px rgba(55, 148, 61, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(55, 148, 61, 0);
}
}
.update-box {
display: grid;
gap: 10px;