39 lines
842 B
CSS
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;
|
|
} |