+display bearbeitunsstatus +vermerk

This commit is contained in:
Simon Martens
2026-01-12 19:56:49 +01:00
parent 801c0a8da4
commit 98b9888e83
5 changed files with 86 additions and 65 deletions

View File

@@ -82,6 +82,41 @@
.status-select[data-status="Unknown"] + .status-icon {
@apply text-gray-900;
}
/* Status badge display (read-only view) */
.status-badge {
@apply inline-flex items-center gap-2 px-2 py-0.5 rounded-md font-sans font-semibold text-sm;
}
.status-badge[data-status="Edited"] {
@apply bg-green-100 text-green-900;
}
.status-badge[data-status="Seen"] {
@apply bg-blue-100 text-blue-900;
}
.status-badge[data-status="Review"] {
@apply bg-orange-100 text-orange-900;
}
.status-badge[data-status="ToDo"] {
@apply bg-red-100 text-red-900;
}
.status-badge[data-status="Unknown"] {
@apply bg-gray-300 text-gray-900;
}
.status-badge .status-icon {
@apply text-base;
}
/* Comment content styling in view mode */
.comment-content {
@apply italic;
}
.dbform .submitbutton {
@apply w-full inline-flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-slate-700 hover:bg-slate-800 cursor-pointer focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-slate-500 active:bg-slate-900 transition-all duration-75;
}