MediaWiki:Common.css: Unterschied zwischen den Versionen
Aus smw-dev03
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| (12 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 12: | Zeile 12: | ||
} | } | ||
label.checkbox-list { | label.checkbox-list { | ||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif; | ||
font-size: 1em; | font-size: 1em; | ||
color: #333; | color: #333; | ||
line-height: 1.6; | line-height: 1.6; | ||
display: block !important; | display: block !important; | ||
margin-bottom: 8px; | margin-bottom: 8px; | ||
| Zeile 34: | Zeile 30: | ||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif; | ||
} | } | ||
.btn-primary:hover { | .btn-primary:hover { | ||
background-color: #2980b9; | background-color: #2980b9; | ||
} | } | ||
/* | |||
/* ===== REFERENT & KOREFERENT Layout ===== */ | |||
/* Layout für Referent und Koreferent */ | |||
.dozent-row { | .dozent-row { | ||
display: flex; | display: flex; | ||
gap: 32px; | |||
margin-bottom: 16px; | |||
align-items: flex-start; | |||
} | } | ||
/* Container | /* Gemeinsamer Container */ | ||
.unterschrift | .dozent-unterschrift { | ||
flex: 1; | |||
display: flex; | display: flex; | ||
flex-direction: column; | |||
gap: | gap: 4px; | ||
} | } | ||
/* | /* Titel */ | ||
.unterschrift | .dozent-unterschrift h3 { | ||
margin: 0; | |||
margin: 0; /* | font-size: 1.2em; | ||
color: #2c3e50; | |||
} | |||
/* Beschreibungstext */ | |||
.dozent-unterschrift p { | |||
margin: 0; | |||
font-size: 0.95em; | |||
color: #7f8c8d; | |||
line-height: 1.2; | |||
} | |||
/* Dropdown-Wrapper */ | |||
.checkbox-container { | |||
padding: 0; | |||
margin: 0; | |||
border: none; | |||
background: transparent; | |||
} | } | ||
/* | /* Dropdown selbst */ | ||
. | .checkbox-container select { | ||
padding: 4px 6px; | |||
font-size: 1em; | |||
border: 1px solid # | border: 1px solid #ccc; | ||
border-radius: | border-radius: 4px; | ||
background: white; | |||
width: auto; | |||
min-width: 160px; | |||
} | } | ||
/* | /* Unterschrift-Zeile */ | ||
. | .unterschrift-row { | ||
display: flex; | display: flex; | ||
align-items: center; | |||
gap: | gap: 6px; | ||
margin-top: 4px; | |||
} | } | ||
/* | /* Text neben Checkbox */ | ||
. | .unterschrift-row p { | ||
margin: 0; | |||
font-size: 0.95em; | |||
color: #7f8c8d; | |||
line-height: 1.2; | |||
} | } | ||
/* | /* Kompakter Checkbox-Stil */ | ||
. | .unterschrift-checkbox-container { | ||
padding: 0; | |||
border: none; | |||
display: inline-block; | |||
line-height: 1; | |||
} | } | ||
. | .unterschrift-checkbox input[type="checkbox"] { | ||
margin: 0; | width: 16px; | ||
height: 16px; | |||
margin: 0; | |||
padding: 0; | |||
vertical-align: middle; | |||
} | } | ||
.checkbox-list input[type="checkbox"] { | |||
. | margin-right: 8px; | ||
margin: | |||
} | } | ||
Aktuelle Version vom 7. Juli 2025, 13:55 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
}
.checkboxcolumns {
display: block !important;
margin-left: 0em;
}
label.checkbox-list {
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
color: #333;
line-height: 1.6;
display: block !important;
margin-bottom: 8px;
}
.btn-primary {
background-color: #3498db;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-family: Arial, Helvetica, sans-serif;
}
.btn-primary:hover {
background-color: #2980b9;
}
/* ===== REFERENT & KOREFERENT Layout ===== */
/* Layout für Referent und Koreferent */
.dozent-row {
display: flex;
gap: 32px;
margin-bottom: 16px;
align-items: flex-start;
}
/* Gemeinsamer Container */
.dozent-unterschrift {
flex: 1;
display: flex;
flex-direction: column;
gap: 4px;
}
/* Titel */
.dozent-unterschrift h3 {
margin: 0;
font-size: 1.2em;
color: #2c3e50;
}
/* Beschreibungstext */
.dozent-unterschrift p {
margin: 0;
font-size: 0.95em;
color: #7f8c8d;
line-height: 1.2;
}
/* Dropdown-Wrapper */
.checkbox-container {
padding: 0;
margin: 0;
border: none;
background: transparent;
}
/* Dropdown selbst */
.checkbox-container select {
padding: 4px 6px;
font-size: 1em;
border: 1px solid #ccc;
border-radius: 4px;
background: white;
width: auto;
min-width: 160px;
}
/* Unterschrift-Zeile */
.unterschrift-row {
display: flex;
align-items: center;
gap: 6px;
margin-top: 4px;
}
/* Text neben Checkbox */
.unterschrift-row p {
margin: 0;
font-size: 0.95em;
color: #7f8c8d;
line-height: 1.2;
}
/* Kompakter Checkbox-Stil */
.unterschrift-checkbox-container {
padding: 0;
border: none;
display: inline-block;
line-height: 1;
}
.unterschrift-checkbox input[type="checkbox"] {
width: 16px;
height: 16px;
margin: 0;
padding: 0;
vertical-align: middle;
}
.checkbox-list input[type="checkbox"] {
margin-right: 8px;
}