Add Export to CSV or Excel.

This commit is contained in:
Jens Luedicke
2025-06-28 12:54:48 +02:00
parent dc4229e468
commit b9aa7ad413
6 changed files with 202 additions and 11 deletions

View File

@@ -69,19 +69,20 @@ main {
}
.form-group {
margin-bottom: 15px;
margin-bottom: 1rem;
}
.form-group label {
display: block;
margin-bottom: 5px;
margin-bottom: 0.5rem;
font-weight: bold;
}
.form-group input,
.form-group textarea {
.form-group textarea,
.form-group select {
width: 100%;
padding: 8px;
padding: 0.5rem;
border: 1px solid #ddd;
border-radius: 4px;
}
@@ -96,12 +97,16 @@ button {
}
.btn {
padding: 8px 16px;
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 0.5rem 1rem;
text-decoration: none;
border: none;
border-radius: 4px;
cursor: pointer;
background-color: #4CAF50;
color: white;
font-size: 1rem;
text-align: center;
}
.btn:hover {
@@ -413,4 +418,30 @@ input[type="time"]::-webkit-datetime-edit {
color: #666;
margin-top: 4px;
font-style: italic;
}
}
.export-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
.export-section {
background-color: #f9f9f9;
padding: 1.5rem;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.export-section h3 {
color: #4CAF50;
margin-top: 0;
margin-bottom: 1rem;
}
.quick-export-buttons {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.5rem;
}