Merge branch 'master' into feature-user-management

This commit is contained in:
Jens Luedicke
2025-06-29 15:52:56 +02:00
committed by GitHub
5 changed files with 189 additions and 8 deletions

View File

@@ -127,19 +127,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;
}
@@ -158,8 +159,8 @@ button {
border: none;
border-radius: 4px;
cursor: pointer;
background-color: #4CAF50;
color: white;
font-size: 1rem;
text-align: center;
}
.btn-primary {
@@ -706,4 +707,30 @@ input[type="time"]::-webkit-datetime-edit {
display: flex;
align-items: center;
gap: 5px;
}
}
=======
.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;
}