This commit is contained in:
2026-07-19 21:16:54 +02:00
parent 96f38ce72e
commit cc4cebdb45
4 changed files with 81 additions and 2 deletions
+30
View File
@@ -225,4 +225,34 @@ h1 {
text-align: center;
text-decoration: none;
box-sizing: border-box;
}
.comment-loading {
display: flex;
align-items: center;
gap: 8px;
margin-top: 10px;
}
.comment-loading[hidden] {
display: none;
}
.comment-spinner {
width: 16px;
height: 16px;
border: 2px solid #cbd5e1;
border-top-color: #1f2937;
border-radius: 50%;
animation: comment-spinner-rotation 0.8s linear infinite;
}
@keyframes comment-spinner-rotation {
to {
transform: rotate(360deg);
}
}
#comment-form button[type="submit"]:disabled {
cursor: wait;
opacity: 0.65;
}