File size: 1,096 Bytes
da273f4 957b832 09e5dc7 da273f4 09e5dc7 da273f4 957b832 09e5dc7 da273f4 09e5dc7 da273f4 09e5dc7 da273f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
/* Custom styles that complement Tailwind */
.document-row {
@apply grid grid-cols-12 gap-4 p-4 border-b border-gray-100 hover:bg-blue-50 transition-colors cursor-pointer;
}
.document-row:nth-child(even) {
@apply bg-gray-50;
}
.document-details {
@apply col-span-12 mt-3 pt-3 border-t border-dashed border-gray-200 hidden bg-gray-50 p-4 rounded;
}
.document-row.expanded .document-details {
@apply block;
}
.status-indicator {
@apply w-3 h-3 rounded-full inline-block mr-2;
}
.status-indicator.normal {
@apply bg-green-500;
}
.status-indicator.warning {
@apply bg-amber-500;
}
.status-indicator.danger {
@apply bg-red-500;
}
.status-indicator.expired {
@apply bg-red-600 animate-pulse;
}
.notification.error {
@apply bg-red-600;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.document-header {
@apply hidden;
}
.document-row {
@apply grid-cols-1 gap-2 p-4;
}
.document-row > div:not(:first-child) {
@apply mt-2;
}
.row-actions {
@apply mt-3 justify-end;
}
} |