- Introduced a new CSS file for form styles (forms.css) to enhance form layout and design. - Removed deprecated button styles from imports.css and updated button classes across templates to use the new utility classes. - Updated various templates to reflect the new button styles, ensuring a consistent look and feel throughout the application. - Refactored form-related styles in main.css and removed redundant styles from projects.css and scenarios.css. - Ensured responsive design adjustments for form actions in smaller viewports.
75 lines
1.2 KiB
CSS
75 lines
1.2 KiB
CSS
.import-upload {
|
|
background-color: var(--surface-color);
|
|
border: 1px dashed var(--border-color);
|
|
border-radius: var(--radius-md);
|
|
padding: 1.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.import-upload__header {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.import-upload__dropzone {
|
|
border: 2px dashed var(--border-color);
|
|
border-radius: var(--radius-sm);
|
|
padding: 2rem;
|
|
text-align: center;
|
|
transition: border-color 0.2s ease, background-color 0.2s ease;
|
|
}
|
|
|
|
.import-upload__dropzone.dragover {
|
|
border-color: var(--primary-color);
|
|
background-color: rgba(0, 123, 255, 0.05);
|
|
}
|
|
|
|
.import-upload__actions {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.table-cell-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.toast {
|
|
position: fixed;
|
|
right: 1rem;
|
|
bottom: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 1rem 1.25rem;
|
|
border-radius: var(--radius-md);
|
|
color: #fff;
|
|
box-shadow: var(--shadow-lg);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.toast.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.toast--success {
|
|
background-color: #198754;
|
|
}
|
|
|
|
.toast--error {
|
|
background-color: #dc3545;
|
|
}
|
|
|
|
.toast--info {
|
|
background-color: #0d6efd;
|
|
}
|
|
|
|
.toast__close {
|
|
background: none;
|
|
border: none;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
font-size: 1.1rem;
|
|
}
|