assettrack/static/css/csv_preview.css
candifloss 23419e9ceb Move css to separate files
Move css styles from `<style>` tags to `static/css/`.
More modularity.
2025-04-06 16:44:45 +05:30

39 lines
842 B
CSS

/* Custom styles for the preview page */
.table-container {
overflow-x: auto;
margin-bottom: 2rem;
border: 1px solid #dee2e6;
border-radius: 0.25rem;
}
.table-valid-entries {
background-color: rgba(212, 237, 218, 0.1);
}
.table-invalid-entries {
background-color: rgba(248, 215, 218, 0.1);
}
[contenteditable="true"] {
padding: 0.5rem;
min-width: 100px;
}
[contenteditable="true"]:focus {
outline: 2px solid #86b7fe;
background-color: white;
}
.sticky-actions {
position: sticky;
bottom: 0;
background: white;
padding: 1rem 0;
border-top: 1px solid #dee2e6;
margin-top: 2rem;
}
.error-details {
background-color: #f8d7da;
border-left: 4px solid #dc3545;
padding: 1rem;
margin-bottom: 2rem;
}
.error-details summary {
font-weight: bold;
cursor: pointer;
}