implemented step 12 by Gemini

- Task actions
This commit is contained in:
2026-06-14 12:42:41 +02:00
parent c01eb30632
commit 2b9b62b0aa
5 changed files with 174 additions and 3 deletions

View File

@ -482,6 +482,33 @@ textarea:focus, input[type="text"]:focus, input[type="email"]:focus, input[type=
padding: 0;
}
/* Generation Loader */
.generation-loader {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
padding: 3rem 0;
}
.spinner {
width: 3rem;
height: 3rem;
border: 4px solid var(--border-color);
border-top-color: var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
#generation-status {
font-weight: 500;
color: var(--primary-color);
}
button:disabled {
opacity: 0.5;
cursor: not-allowed;