Common.css: Unterschied zwischen den Versionen
Aus Geodäsie Knowledge Hub
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* Tagline ausblenden */ | |||
h3#tagline { | h3#tagline { | ||
display: none; | display: none; | ||
} | } | ||
/* ============================= */ | |||
/* FBG Standard-Link-Button */ | |||
/* ============================= */ | |||
.fbg-button-label { | .fbg-button-label { | ||
display: inline-block; | display: inline-block; | ||
| Zeile 11: | Zeile 17: | ||
border-radius: 10px; | border-radius: 10px; | ||
box-sizing: border-box; | box-sizing: border-box; | ||
color: #e2001a; /* Fachbereichs-Rot */ | |||
color: #e2001a; | |||
font-weight: 500; | font-weight: 500; | ||
transition: background-color 0.15s ease-in-out; | transition: background-color 0.15s ease-in-out; | ||
} | } | ||
| Zeile 20: | Zeile 24: | ||
a:hover .fbg-button-label { | a:hover .fbg-button-label { | ||
background: #eef0f2; | background: #eef0f2; | ||
color: # | color: #c00000; | ||
} | } | ||
/* ============================= */ | |||
/* Inhaltsverzeichnis rechts */ | |||
/* ============================= */ | |||
#toc, .toc { | #toc, .toc { | ||
| Zeile 29: | Zeile 37: | ||
} | } | ||
/* ============================= */ | |||
/* Page Forms – Eingabefeld */ | |||
/* ============================= */ | |||
.fbg-create-form { | .fbg-create-form { | ||
| Zeile 52: | Zeile 52: | ||
} | } | ||
/* Textfeld */ | |||
.fbg-create-form input[type="text"] { | .fbg-create-form input[type="text"] { | ||
height: 38px; | height: 38px; | ||
| Zeile 98: | Zeile 64: | ||
} | } | ||
.fbg-create-form input[type="submit"] { | /* Submit-Button (auch OOUI berücksichtigen) */ | ||
height: 38px; | .fbg-create-form input[type="submit"], | ||
box-sizing: border-box; | .fbg-create-form button, | ||
padding: 0 14px; | .fbg-create-form .oo-ui-buttonElement-button { | ||
border: 1px solid #c8ccd1; | height: 38px !important; | ||
border-radius: 10px; | box-sizing: border-box !important; | ||
background: #ffffff; | padding: 0 14px !important; | ||
color: # | border: 1px solid #c8ccd1 !important; | ||
border-radius: 10px !important; | |||
background: #ffffff !important; | |||
color: #e2001a !important; | |||
cursor: pointer; | cursor: pointer; | ||
font-weight: 500; | |||
appearance: none; | |||
-webkit-appearance: none; | |||
} | } | ||
.fbg-create-form input[type="submit"]:hover { | /* Hover */ | ||
background: #eef0f2; | .fbg-create-form input[type="submit"]:hover, | ||
.fbg-create-form button:hover, | |||
.fbg-create-form .oo-ui-buttonElement-button:hover { | |||
background: #eef0f2 !important; | |||
} | } | ||
Version vom 7. März 2026, 21:05 Uhr
/* Tagline ausblenden */
h3#tagline {
display: none;
}
/* ============================= */
/* FBG Standard-Link-Button */
/* ============================= */
.fbg-button-label {
display: inline-block;
min-width: 120px;
padding: 7px 14px;
text-align: center;
background: #ffffff;
border: 1px solid #c8ccd1;
border-radius: 10px;
box-sizing: border-box;
color: #e2001a; /* Fachbereichs-Rot */
font-weight: 500;
transition: background-color 0.15s ease-in-out;
}
a:hover .fbg-button-label {
background: #eef0f2;
color: #c00000;
}
/* ============================= */
/* Inhaltsverzeichnis rechts */
/* ============================= */
#toc, .toc {
float: right;
margin: 0 0 1em 1.5em;
width: 300px;
}
/* ============================= */
/* Page Forms – Eingabefeld */
/* ============================= */
.fbg-create-form {
display: inline-block;
}
.fbg-create-form form {
margin: 0;
display: inline-flex;
align-items: center;
gap: 8px;
}
/* Textfeld */
.fbg-create-form input[type="text"] {
height: 38px;
box-sizing: border-box;
padding: 6px 10px;
border: 1px solid #c8ccd1;
border-radius: 10px;
background: #ffffff;
min-width: 190px;
color: #202122;
}
/* Submit-Button (auch OOUI berücksichtigen) */
.fbg-create-form input[type="submit"],
.fbg-create-form button,
.fbg-create-form .oo-ui-buttonElement-button {
height: 38px !important;
box-sizing: border-box !important;
padding: 0 14px !important;
border: 1px solid #c8ccd1 !important;
border-radius: 10px !important;
background: #ffffff !important;
color: #e2001a !important;
cursor: pointer;
font-weight: 500;
appearance: none;
-webkit-appearance: none;
}
/* Hover */
.fbg-create-form input[type="submit"]:hover,
.fbg-create-form button:hover,
.fbg-create-form .oo-ui-buttonElement-button:hover {
background: #eef0f2 !important;
}