Vorlage:Infobar/style.css: Unterschied zwischen den Versionen
Erscheinungsbild
RaWen (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
RaWen (Diskussion | Beiträge) KKeine Bearbeitungszusammenfassung |
||
| (15 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
.infobar { | .infobar { | ||
max-width: 400px; | max-width: 400px; | ||
overflow: hidden; | overflow: hidden; | ||
display: flex; | display: flex; | ||
flex-direction: row; | flex-direction: row; | ||
gap: 1. | gap: 1.3rem; | ||
border-radius: 6px; | border-radius: 6px; | ||
padding: 0.8rem; | padding: 0.8rem; | ||
margin-bottom: 1rem; | margin-bottom: 1rem; | ||
} | |||
.pagewide { | .pagewide { | ||
max-width: 100% !important; | |||
max-width: 100% !important;} | } | ||
. | .sub { | ||
margin: 1.2rem 0 0 0 !important; | |||
} | } | ||
| Zeile 28: | Zeile 23: | ||
margin: auto 0; | margin: auto 0; | ||
display: flex; | display: flex; | ||
flex-shrink: 0 !important;} | flex-shrink: 0 !important; | ||
} | |||
.infobar-icon img { | .infobar-icon img { | ||
width: 100%; | |||
height: 100%; | |||
object-position: center; | |||
object-fit: cover; | |||
} | |||
.infobar-text { | .infobar-text { | ||
display: flex; | display: flex; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
align-items: center; | align-items: center; | ||
gap: 0.2rem; | gap: 0.2rem; | ||
width: 100%; | width: 100%; | ||
padding: 0; | padding: 0; | ||
margin: 0; | margin: 0; | ||
color: inherit;} | color: inherit; | ||
} | |||
.infobar-text .head { | .infobar-text .head { | ||
line-height: 1; | line-height: 1; | ||
flex: 0 0 100%; | flex: 0 0 100%; | ||
font-size: 0. | font-size: 0.9rem; | ||
font-weight: bold; | |||
} | |||
.solo { | .solo { | ||
line-height: 1.4 !important; | line-height: 1.4 !important; | ||
font-weight: normal !important; | |||
} | |||
.infobar-text .item { | .infobar-text .item { | ||
line-height: 1.3; | line-height: 1.3; | ||
display: inline-block; | display: inline-block; | ||
align-items: center; | align-items: center; | ||
height: max-content; | height: max-content; | ||
padding: 0.05rem 0.8rem; | padding: 0.05rem 0.8rem; | ||
border-radius: 12px; | border-radius: 12px; | ||
font-size: 0.75rem;} | font-size: 0.75rem; | ||
} | |||
.boxless { | .boxless { | ||
| Zeile 71: | Zeile 72: | ||
padding: 0.05em 0 !important; | padding: 0.05em 0 !important; | ||
background-color: inherit !important; | background-color: inherit !important; | ||
border-radius: 0 !important; | border-radius: 0 !important; | ||
} | |||
.infobar-img { | .infobar-img { | ||
flex-shrink: 0; | flex-shrink: 0; | ||
padding: 0; | padding: 0; | ||
align-self: center;} | align-self: center; | ||
} | |||
.infobar-img img { | .infobar-img img { | ||
box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.15); | box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.15); | ||
max-width: 50px !important; | max-width: 50px !important; | ||
max-height: 50px !important; | max-height: 50px !important; | ||
border-radius: 6px; | border-radius: 6px; | ||
object-fit: cover;} | object-fit: cover; | ||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .infobar-img img { | |||
box-shadow: 0px 1px 4px 0px rgba(255,255,255,0.1); | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .infobar-img img { | |||
box-shadow: 0px 1px 4px 0px rgba(255,255,255,0.1); | |||
} | |||
} | |||
/* Neutral - Grau */ | |||
.grau { | |||
background: var(--background-color-neutral-subtle, #f8f9fa); | |||
color: var(--color-base, #202122); | |||
} | |||
.grau .head { | |||
color: var(--color-emphasized, #000); | |||
} | |||
.grau .item { | |||
background-color: var(--background-color-base, #fff); | |||
color: var(--color-base, #202122); | |||
} | |||
/* Grün */ | |||
.gruen { | |||
background: #d1eed6; | |||
color: #026827; | |||
} | |||
.gruen .head { | |||
color: #026827; | |||
} | |||
.gruen .item { | |||
background-color: #e8f5ea; | |||
color: #004d1f; | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .gruen { | |||
background: #112C15; | |||
color: #81c784; | |||
} | |||
html.skin-theme-clientpref-night .gruen .head { | |||
color: #a5d6a7; | |||
} | |||
html.skin-theme-clientpref-night .gruen .item { | |||
background-color: #37F2F3; | |||
color: #B2DCB4; | |||
} | |||
html.skin-theme-clientpref-night .gruen .infobar-icon img { | |||
filter: brightness(3) contrast(0.3); | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .gruen { | |||
background: #112C15; | |||
color: #81c784; | |||
} | |||
html.skin-theme-clientpref-os .gruen .head { | |||
color: #a5d6a7; | |||
} | |||
html.skin-theme-clientpref-os .gruen .item { | |||
background-color: #37F2F3; | |||
color: #099A83; | |||
} | |||
html.skin-theme-clientpref-os .gruen .infobar-icon img { | |||
filter: brightness(2) contrast(0.4); | |||
} | |||
} | |||
/* Türkis */ | |||
.tuerkis { | |||
background: #e8f8f7; | |||
color: #00695c; | |||
} | |||
.tuerkis .head { | |||
color: #00695c; | |||
} | |||
.tuerkis .item { | |||
background-color: #cdece9; | |||
color: #004d40; | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .tuerkis { | |||
background: #102a28; | |||
color: #94FFF3; | |||
} | |||
html.skin-theme-clientpref-night .tuerkis .head { | |||
color: #94FFF3; | |||
} | |||
html.skin-theme-clientpref-night .tuerkis .item { | |||
background-color: #143431; | |||
color: #B3FFF2; | |||
} | |||
html.skin-theme-clientpref-night .tuerkis .infobar-icon img { | |||
filter: brightness(3) contrast(0.6); | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .tuerkis { | |||
background: #102a28; | |||
color: #94FFF3; | |||
} | |||
html.skin-theme-clientpref-os .tuerkis .head { | |||
color: #94FFF3; | |||
} | |||
html.skin-theme-clientpref-os .tuerkis .item { | |||
background-color: #143431; | |||
color: #B3FFF2; | |||
} | |||
html.skin-theme-clientpref-os .tuerkis .infobar-icon img { | |||
filter: brightness(2) contrast(0.4); | |||
} | |||
} | |||
/* Grau mit grüner Überschrift */ | |||
.grau-gruen { | |||
background: var(--background-color-neutral-subtle, #f8f9fa); | |||
color: var(--color-base, #202122); | |||
} | |||
.grau-gruen .head { | |||
color: #048454; | |||
} | |||
.grau-gruen .item { | |||
background-color: var(--background-color-base, #fff); | |||
color: var(--color-base, #202122); | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .grau-gruen .head { | |||
color: #66bb6a; | |||
} | |||
html.skin-theme-clientpref-night .grau-gruen .infobar-icon img { | |||
filter: brightness(1.2) contrast(0.8); | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .grau-gruen .head { | |||
color: #66bb6a; | |||
} | |||
html.skin-theme-clientpref-os .grau-gruen .infobar-icon img { | |||
filter: brightness(1.2) contrast(0.8); | |||
} | |||
} | |||
/* Braun */ | |||
.braun { | |||
background: #f7f2f1; | |||
color: #8c5a51; | |||
} | |||
.braun .head { | |||
color: #8c5a51; | |||
} | |||
.braun .item { | |||
background-color: #f0e6e4; | |||
color: #6d4238; | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .braun { | |||
background: #1A100E; | |||
color: #AF7D74; | |||
} | |||
html.skin-theme-clientpref-night .braun .head { | |||
color: #e6b8a6; | |||
} | |||
html.skin-theme-clientpref-night .braun .item { | |||
background-color: #0D0807; | |||
color: #f0e6e4; | |||
} | |||
html.skin-theme-clientpref-night .braun .infobar-icon img { | |||
filter: brightness(1.4) contrast(0.9); | |||
} | |||
} | |||
/* Media Query für Bildschirme | @media screen and (prefers-color-scheme: dark) { | ||
@media (max-width: | html.skin-theme-clientpref-os .braun { | ||
.infobar { | background: #1A100E; | ||
color: #AF7D74; | |||
} | |||
html.skin-theme-clientpref-os .braun .head { | |||
color: #e6b8a6; | |||
} | |||
html.skin-theme-clientpref-os .braun .item { | |||
background-color: #0D0807; | |||
color: #f0e6e4; | |||
} | |||
html.skin-theme-clientpref-os .braun .infobar-icon img { | |||
filter: brightness(1.4) contrast(0.9); | |||
} | |||
} | |||
/* Dark Mode: Standard Icon-Filter für graue Boxen */ | |||
@media screen { | |||
html.skin-theme-clientpref-night .grau .infobar-icon img { | |||
filter: brightness(1.2) contrast(0.8); | |||
} | |||
html.skin-theme-clientpref-night .infobar-icon.keep-colors img { | |||
filter: brightness(1.2) contrast(0.8) !important; | |||
} | |||
html.skin-theme-clientpref-night .infobar-icon.keep-colors100 img { | |||
filter: none !important; | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .grau .infobar-icon img { | |||
filter: brightness(1.2) contrast(0.8); | |||
} | |||
html.skin-theme-clientpref-os .infobar-icon.keep-colors img { | |||
filter: brightness(1.2) contrast(0.8) !important; | |||
} | |||
html.skin-theme-clientpref-os .infobar-icon.keep-colors100 img { | |||
filter: none !important; | |||
} | |||
} | |||
/* Spezielle Item-Farbe für Stelen */ | |||
.grau .item.special { | |||
background-color: #e8e8e8; | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .grau .item.special { | |||
background-color: #3a3a3a; | |||
color: var(--color-base, #a2a9b1); | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .grau .item.special { | |||
background-color: #3a3a3a; | |||
color: var(--color-base, #a2a9b1); | |||
} | |||
} | |||
/* Rot - für Warnungen/Überarbeitungsbedarf */ | |||
.rot { | |||
background: #FFE5E4; | |||
color: #C73127; | |||
} | |||
.rot .head { | |||
color: #C73127; | |||
} | |||
.rot .item { | |||
background-color: #FFD1CF; | |||
color: #A52A2A; | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .rot { | |||
background: #2C1111; | |||
color: #FF6B6B; | |||
} | |||
html.skin-theme-clientpref-night .rot .head { | |||
color: #FF8A80; | |||
} | |||
html.skin-theme-clientpref-night .rot .item { | |||
background-color: #3D1A1A; | |||
color: #FFCDD2; | |||
} | |||
html.skin-theme-clientpref-night .rot .infobar-icon img { | |||
filter: brightness(1.4) contrast(0.9); | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .rot { | |||
background: #2C1111; | |||
color: #FF6B6B; | |||
} | |||
html.skin-theme-clientpref-os .rot .head { | |||
color: #FF8A80; | |||
} | |||
html.skin-theme-clientpref-os .rot .item { | |||
background-color: #3D1A1A; | |||
color: #FFCDD2; | |||
} | |||
html.skin-theme-clientpref-os .rot .infobar-icon img { | |||
filter: brightness(1.4) contrast(0.9); | |||
} | |||
} | |||
/* Blau - für Informationen/Stubs */ | |||
.blau { | |||
background: #e3f3fb; | |||
color: #2075A1; | |||
} | |||
.blau .head { | |||
color: #2075A1; | |||
} | |||
.blau .item { | |||
background-color: #d1e9f7; | |||
color: #1565C0; | |||
} | |||
@media screen { | |||
html.skin-theme-clientpref-night .blau { | |||
background: #0F1F2C; | |||
color: #64B5F6; | |||
} | |||
html.skin-theme-clientpref-night .blau .head { | |||
color: #90CAF9; | |||
} | |||
html.skin-theme-clientpref-night .blau .item { | |||
background-color: #1A2B3D; | |||
color: #BBDEFB; | |||
} | |||
html.skin-theme-clientpref-night .blau .infobar-icon img { | |||
filter: brightness(1.4) contrast(0.9); | |||
} | |||
html.skin-theme-clientpref-night .infobar.sub.blau .infobar-icon img { | |||
filter: none !important; | |||
} | |||
} | |||
@media screen and (prefers-color-scheme: dark) { | |||
html.skin-theme-clientpref-os .blau { | |||
background: #0F1F2C; | |||
color: #64B5F6; | |||
} | |||
html.skin-theme-clientpref-os .blau .head { | |||
color: #90CAF9; | |||
} | |||
html.skin-theme-clientpref-os .blau .item { | |||
background-color: #1A2B3D; | |||
color: #BBDEFB; | |||
} | |||
html.skin-theme-clientpref-os .blau .infobar-icon img { | |||
filter: brightness(1.4) contrast(0.9); | |||
} | |||
html.skin-theme-clientpref-os .infobar.sub.blau .infobar-icon img { | |||
filter: none !important; | |||
} | |||
} | |||
/* Media Query für kleine Bildschirme */ | |||
@media (max-width: 480px) { | |||
.pagewide.infobar { | |||
gap: 0.5rem; | |||
padding: 0.6rem; | |||
align-items: flex-start; | |||
} | |||
.pagewide .infobar-icon { | |||
max-width: 20px; | |||
max-height: 20px; | |||
margin: 0; | |||
flex-shrink: 0; | |||
} | |||
.pagewide .infobar-text { | |||
width: 100%; | |||
font-size: 0.85rem; | |||
gap: 0.2rem; | |||
} | |||
.pagewide .infobar-text .head { | |||
font-size: 0.8rem; | |||
line-height: 1.2; | |||
margin-bottom: 0.1rem; | |||
margin-top: 0.2rem; /* Überschrift leicht nach unten */ | |||
} | |||
. | .pagewide .boxless, | ||
.pagewide .item { | |||
font-size: 0.8rem; | |||
line-height: 1.3; | |||
} | |||
} | } | ||
Aktuelle Version vom 22. August 2025, 13:42 Uhr
.infobar {
max-width: 400px;
overflow: hidden;
display: flex;
flex-direction: row;
gap: 1.3rem;
border-radius: 6px;
padding: 0.8rem;
margin-bottom: 1rem;
}
.pagewide {
max-width: 100% !important;
}
.sub {
margin: 1.2rem 0 0 0 !important;
}
.infobar-icon {
max-width: 50px;
max-height: 50px;
margin: auto 0;
display: flex;
flex-shrink: 0 !important;
}
.infobar-icon img {
width: 100%;
height: 100%;
object-position: center;
object-fit: cover;
}
.infobar-text {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.2rem;
width: 100%;
padding: 0;
margin: 0;
color: inherit;
}
.infobar-text .head {
line-height: 1;
flex: 0 0 100%;
font-size: 0.9rem;
font-weight: bold;
}
.solo {
line-height: 1.4 !important;
font-weight: normal !important;
}
.infobar-text .item {
line-height: 1.3;
display: inline-block;
align-items: center;
height: max-content;
padding: 0.05rem 0.8rem;
border-radius: 12px;
font-size: 0.75rem;
}
.boxless {
flex-basis: 100% !important;
height: max-content !important;
display: inline-block !important;
padding: 0.05em 0 !important;
background-color: inherit !important;
border-radius: 0 !important;
}
.infobar-img {
flex-shrink: 0;
padding: 0;
align-self: center;
}
.infobar-img img {
box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.15);
max-width: 50px !important;
max-height: 50px !important;
border-radius: 6px;
object-fit: cover;
}
@media screen {
html.skin-theme-clientpref-night .infobar-img img {
box-shadow: 0px 1px 4px 0px rgba(255,255,255,0.1);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .infobar-img img {
box-shadow: 0px 1px 4px 0px rgba(255,255,255,0.1);
}
}
/* Neutral - Grau */
.grau {
background: var(--background-color-neutral-subtle, #f8f9fa);
color: var(--color-base, #202122);
}
.grau .head {
color: var(--color-emphasized, #000);
}
.grau .item {
background-color: var(--background-color-base, #fff);
color: var(--color-base, #202122);
}
/* Grün */
.gruen {
background: #d1eed6;
color: #026827;
}
.gruen .head {
color: #026827;
}
.gruen .item {
background-color: #e8f5ea;
color: #004d1f;
}
@media screen {
html.skin-theme-clientpref-night .gruen {
background: #112C15;
color: #81c784;
}
html.skin-theme-clientpref-night .gruen .head {
color: #a5d6a7;
}
html.skin-theme-clientpref-night .gruen .item {
background-color: #37F2F3;
color: #B2DCB4;
}
html.skin-theme-clientpref-night .gruen .infobar-icon img {
filter: brightness(3) contrast(0.3);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .gruen {
background: #112C15;
color: #81c784;
}
html.skin-theme-clientpref-os .gruen .head {
color: #a5d6a7;
}
html.skin-theme-clientpref-os .gruen .item {
background-color: #37F2F3;
color: #099A83;
}
html.skin-theme-clientpref-os .gruen .infobar-icon img {
filter: brightness(2) contrast(0.4);
}
}
/* Türkis */
.tuerkis {
background: #e8f8f7;
color: #00695c;
}
.tuerkis .head {
color: #00695c;
}
.tuerkis .item {
background-color: #cdece9;
color: #004d40;
}
@media screen {
html.skin-theme-clientpref-night .tuerkis {
background: #102a28;
color: #94FFF3;
}
html.skin-theme-clientpref-night .tuerkis .head {
color: #94FFF3;
}
html.skin-theme-clientpref-night .tuerkis .item {
background-color: #143431;
color: #B3FFF2;
}
html.skin-theme-clientpref-night .tuerkis .infobar-icon img {
filter: brightness(3) contrast(0.6);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .tuerkis {
background: #102a28;
color: #94FFF3;
}
html.skin-theme-clientpref-os .tuerkis .head {
color: #94FFF3;
}
html.skin-theme-clientpref-os .tuerkis .item {
background-color: #143431;
color: #B3FFF2;
}
html.skin-theme-clientpref-os .tuerkis .infobar-icon img {
filter: brightness(2) contrast(0.4);
}
}
/* Grau mit grüner Überschrift */
.grau-gruen {
background: var(--background-color-neutral-subtle, #f8f9fa);
color: var(--color-base, #202122);
}
.grau-gruen .head {
color: #048454;
}
.grau-gruen .item {
background-color: var(--background-color-base, #fff);
color: var(--color-base, #202122);
}
@media screen {
html.skin-theme-clientpref-night .grau-gruen .head {
color: #66bb6a;
}
html.skin-theme-clientpref-night .grau-gruen .infobar-icon img {
filter: brightness(1.2) contrast(0.8);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .grau-gruen .head {
color: #66bb6a;
}
html.skin-theme-clientpref-os .grau-gruen .infobar-icon img {
filter: brightness(1.2) contrast(0.8);
}
}
/* Braun */
.braun {
background: #f7f2f1;
color: #8c5a51;
}
.braun .head {
color: #8c5a51;
}
.braun .item {
background-color: #f0e6e4;
color: #6d4238;
}
@media screen {
html.skin-theme-clientpref-night .braun {
background: #1A100E;
color: #AF7D74;
}
html.skin-theme-clientpref-night .braun .head {
color: #e6b8a6;
}
html.skin-theme-clientpref-night .braun .item {
background-color: #0D0807;
color: #f0e6e4;
}
html.skin-theme-clientpref-night .braun .infobar-icon img {
filter: brightness(1.4) contrast(0.9);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .braun {
background: #1A100E;
color: #AF7D74;
}
html.skin-theme-clientpref-os .braun .head {
color: #e6b8a6;
}
html.skin-theme-clientpref-os .braun .item {
background-color: #0D0807;
color: #f0e6e4;
}
html.skin-theme-clientpref-os .braun .infobar-icon img {
filter: brightness(1.4) contrast(0.9);
}
}
/* Dark Mode: Standard Icon-Filter für graue Boxen */
@media screen {
html.skin-theme-clientpref-night .grau .infobar-icon img {
filter: brightness(1.2) contrast(0.8);
}
html.skin-theme-clientpref-night .infobar-icon.keep-colors img {
filter: brightness(1.2) contrast(0.8) !important;
}
html.skin-theme-clientpref-night .infobar-icon.keep-colors100 img {
filter: none !important;
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .grau .infobar-icon img {
filter: brightness(1.2) contrast(0.8);
}
html.skin-theme-clientpref-os .infobar-icon.keep-colors img {
filter: brightness(1.2) contrast(0.8) !important;
}
html.skin-theme-clientpref-os .infobar-icon.keep-colors100 img {
filter: none !important;
}
}
/* Spezielle Item-Farbe für Stelen */
.grau .item.special {
background-color: #e8e8e8;
}
@media screen {
html.skin-theme-clientpref-night .grau .item.special {
background-color: #3a3a3a;
color: var(--color-base, #a2a9b1);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .grau .item.special {
background-color: #3a3a3a;
color: var(--color-base, #a2a9b1);
}
}
/* Rot - für Warnungen/Überarbeitungsbedarf */
.rot {
background: #FFE5E4;
color: #C73127;
}
.rot .head {
color: #C73127;
}
.rot .item {
background-color: #FFD1CF;
color: #A52A2A;
}
@media screen {
html.skin-theme-clientpref-night .rot {
background: #2C1111;
color: #FF6B6B;
}
html.skin-theme-clientpref-night .rot .head {
color: #FF8A80;
}
html.skin-theme-clientpref-night .rot .item {
background-color: #3D1A1A;
color: #FFCDD2;
}
html.skin-theme-clientpref-night .rot .infobar-icon img {
filter: brightness(1.4) contrast(0.9);
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .rot {
background: #2C1111;
color: #FF6B6B;
}
html.skin-theme-clientpref-os .rot .head {
color: #FF8A80;
}
html.skin-theme-clientpref-os .rot .item {
background-color: #3D1A1A;
color: #FFCDD2;
}
html.skin-theme-clientpref-os .rot .infobar-icon img {
filter: brightness(1.4) contrast(0.9);
}
}
/* Blau - für Informationen/Stubs */
.blau {
background: #e3f3fb;
color: #2075A1;
}
.blau .head {
color: #2075A1;
}
.blau .item {
background-color: #d1e9f7;
color: #1565C0;
}
@media screen {
html.skin-theme-clientpref-night .blau {
background: #0F1F2C;
color: #64B5F6;
}
html.skin-theme-clientpref-night .blau .head {
color: #90CAF9;
}
html.skin-theme-clientpref-night .blau .item {
background-color: #1A2B3D;
color: #BBDEFB;
}
html.skin-theme-clientpref-night .blau .infobar-icon img {
filter: brightness(1.4) contrast(0.9);
}
html.skin-theme-clientpref-night .infobar.sub.blau .infobar-icon img {
filter: none !important;
}
}
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .blau {
background: #0F1F2C;
color: #64B5F6;
}
html.skin-theme-clientpref-os .blau .head {
color: #90CAF9;
}
html.skin-theme-clientpref-os .blau .item {
background-color: #1A2B3D;
color: #BBDEFB;
}
html.skin-theme-clientpref-os .blau .infobar-icon img {
filter: brightness(1.4) contrast(0.9);
}
html.skin-theme-clientpref-os .infobar.sub.blau .infobar-icon img {
filter: none !important;
}
}
/* Media Query für kleine Bildschirme */
@media (max-width: 480px) {
.pagewide.infobar {
gap: 0.5rem;
padding: 0.6rem;
align-items: flex-start;
}
.pagewide .infobar-icon {
max-width: 20px;
max-height: 20px;
margin: 0;
flex-shrink: 0;
}
.pagewide .infobar-text {
width: 100%;
font-size: 0.85rem;
gap: 0.2rem;
}
.pagewide .infobar-text .head {
font-size: 0.8rem;
line-height: 1.2;
margin-bottom: 0.1rem;
margin-top: 0.2rem; /* Überschrift leicht nach unten */
}
.pagewide .boxless,
.pagewide .item {
font-size: 0.8rem;
line-height: 1.3;
}
}