update csss: increase border by 50px
chore: add line break to names
chore: restyle the dateselector to use same design as other fields
This commit is contained in:
2025-11-19 18:27:17 +01:00
parent 36b968998e
commit 85ba0bf07c
2 changed files with 15 additions and 6 deletions

View File

@@ -89,7 +89,7 @@ body {
/* Layout */
.container {
max-width: 1200px;
max-width: 1250px;
margin: 0 auto;
padding: 0 20px;
}
@@ -165,6 +165,7 @@ h2 {
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
width: 100%;
@@ -178,6 +179,14 @@ textarea {
font-family: inherit;
}
/* Normalize date input appearance */
input[type="date"] {
-webkit-appearance: none;
appearance: none;
font-family: inherit;
/* Ensure text is legible and consistent */
}
textarea {
resize: vertical;
min-height: 80px;

View File

@@ -84,7 +84,7 @@
</select>
</div>
<div class="form-field">
<label for="classname">Lehrveranstaltungsname</label>
<label for="classname">Veranstaltungsname</label>
<input type="text" name="classname" id="classname" required>
</div>
<div class="form-field">
@@ -188,7 +188,7 @@
title = 'Monografie';
tableHtml = '<table class="data-table media-table" id="table-' + sectionId + '">' +
'<tr>' +
'<th>Autor (Nachname, Vorname)</th>' +
'<th>Autor<br>(Nachname, Vorname)</th>' +
'<th>Jahr</th>' +
'<th>Auflage</th>' +
'<th>Titel</th>' +
@@ -202,7 +202,7 @@
title = 'Zeitschriftenartikel';
tableHtml = '<table class="data-table media-table" id="table-' + sectionId + '">' +
'<tr>' +
'<th>Autor (Nachname, Vorname)</th>' +
'<th>Autor<br>(Nachname, Vorname)</th>' +
'<th>Jahr</th>' +
'<th>Band</th>' +
'<th>Titel des Artikels</th>' +
@@ -217,11 +217,11 @@
title = 'Herausgeberwerk';
tableHtml = '<table class="data-table media-table" id="table-' + sectionId + '">' +
'<tr>' +
'<th>Herausgeber (Nachname, Vorname)</th>' +
'<th>Herausgeber<br>(Nachname, Vorname)</th>' +
'<th>Titel des Werks</th>' +
'<th>Jahr</th>' +
'<th>Auflage</th>' +
'<th>Autor des Artikels (Nachname, Vorname)</th>' +
'<th>Autor des Artikels<br>(Nachname, Vorname)</th>' +
'<th>Titel des Artikels</th>' +
'<th>Signatur</th>' +
'<th>Seiten von</th>' +