Weitere Optionen
Max (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung Markierung: Zurückgesetzt |
Max (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
(24 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | /* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ | ||
/* MediaWiki:Common.css */ | |||
.ve-only { | |||
display: none; | |||
} | |||
.ve-init-mw-desktopArticleTarget .ve-only { | |||
display: block; | |||
color: red; | |||
background-color: yellow; | |||
padding: 5px; | |||
border: 1px solid red; | |||
} | |||
.firstHeading { | |||
min-width: 200px; | |||
} | |||
.approver-group-link { | |||
margin-left: 0.25em; | |||
margin-right: 0.25em; | |||
} | |||
.cdx-card__text__description, | |||
.cdx-card__text__title { | |||
color: var(--color-base); | |||
} | |||
#contentSub { | |||
overflow: visible; | |||
} | |||
.noapprove { | |||
font-size: large; | |||
font-weight: bold; | |||
} | |||
/* Hide title and edit tools on main page */ | /* Hide title and edit tools on main page */ | ||
.page-Hauptseite .mw-side, | .page-Hauptseite .mw-side, | ||
.page-Hauptseite .mw-body-header, | .page-Hauptseite .mw-body-header, | ||
.page-Hauptseite # | .page-Hauptseite #contentSub, | ||
.page-Hauptseite .citizen-page-sidebar, | |||
.mw-footer { | .mw-footer { | ||
display: none!important; | display: none!important; | ||
} | |||
.page-Hauptseite .citizen-body-container { | |||
grid-template-columns: minmax(0, calc(var(--width-layout) + var(--width-toc))); | |||
} | } | ||
Zeile 13: | Zeile 53: | ||
padding: 0; | padding: 0; | ||
} | } | ||
.mw-headline:target, | .mw-headline:target { | ||
.mw-page-title- | background-color: gold; | ||
font-size: | } | ||
.mw-page-title-separator::after { | |||
content: "\A"; /* Zeilenumbruch-Charakter in CSS */ | |||
white-space: pre; /* Damit der Zeilenumbruch wirksam wird */ | |||
} | |||
.mw-page-title-separator, | |||
.mw-page-title-namespace { | |||
font-size: var(--font-size-small); | |||
} | |||
.skin-citizen { | |||
margin-bottom: 0px !important; | |||
} | } |
Aktuelle Version vom 27. Dezember 2024, 18:46 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */ /* MediaWiki:Common.css */ .ve-only { display: none; } .ve-init-mw-desktopArticleTarget .ve-only { display: block; color: red; background-color: yellow; padding: 5px; border: 1px solid red; } .firstHeading { min-width: 200px; } .approver-group-link { margin-left: 0.25em; margin-right: 0.25em; } .cdx-card__text__description, .cdx-card__text__title { color: var(--color-base); } #contentSub { overflow: visible; } .noapprove { font-size: large; font-weight: bold; } /* Hide title and edit tools on main page */ .page-Hauptseite .mw-side, .page-Hauptseite .mw-body-header, .page-Hauptseite #contentSub, .page-Hauptseite .citizen-page-sidebar, .mw-footer { display: none!important; } .page-Hauptseite .citizen-body-container { grid-template-columns: minmax(0, calc(var(--width-layout) + var(--width-toc))); } /* Force override until skin is updated */ .skin-citizen blockquote { margin: 0.8rem 20px; padding: 0; } .mw-headline:target { background-color: gold; } .mw-page-title-separator::after { content: "\A"; /* Zeilenumbruch-Charakter in CSS */ white-space: pre; /* Damit der Zeilenumbruch wirksam wird */ } .mw-page-title-separator, .mw-page-title-namespace { font-size: var(--font-size-small); } .skin-citizen { margin-bottom: 0px !important; }