MediaWiki:Vector.css: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zero (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Zero (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
/* | /* Sidebar-Hintergrund deutlich heller als Hauptbereich */ | ||
#mw-panel { | #mw-panel { | ||
background-color: # | background-color: #3a3a3a !important; /* Helleres Dunkelgrau */ | ||
color: # | color: #f0f0f0 !important; | ||
} | } | ||
/* | /* Titel in der Sidebar (Navigation, Werkzeuge etc.) */ | ||
. | |||
.portlet h3 { | .portlet h3 { | ||
color: # | color: #ffffff !important; | ||
border-bottom: 1px solid # | font-weight: bold; | ||
border-bottom: 1px solid #666; | |||
margin-bottom: 0.5em; | |||
} | } | ||
/* | /* Menü-Links in der Sidebar */ | ||
.vector-menu-content li a { | .vector-menu-content li a { | ||
color: # | color: #eeeeee !important; | ||
background-color: transparent !important; | |||
} | } | ||
.vector-menu-content li a:hover { | |||
/* Hover- und Fokus-Effekt */ | |||
.vector-menu-content li a:hover, | |||
.vector-menu-content li a:focus { | |||
background-color: #555 !important; | |||
color: #ffffff !important; | color: #ffffff !important; | ||
text-decoration: underline; | |||
} | } | ||
/* | /* Aktive Menüeinträge (z. B. aktuelle Seite) */ | ||
.vector-menu-content li a:active { | |||
color: #ffffff !important; | |||
font-weight: bold; | |||
} | } | ||
Version vom 16. Mai 2025, 15:58 Uhr
/* Sidebar-Hintergrund deutlich heller als Hauptbereich */
#mw-panel {
background-color: #3a3a3a !important; /* Helleres Dunkelgrau */
color: #f0f0f0 !important;
}
/* Titel in der Sidebar (Navigation, Werkzeuge etc.) */
.portlet h3 {
color: #ffffff !important;
font-weight: bold;
border-bottom: 1px solid #666;
margin-bottom: 0.5em;
}
/* Menü-Links in der Sidebar */
.vector-menu-content li a {
color: #eeeeee !important;
background-color: transparent !important;
}
/* Hover- und Fokus-Effekt */
.vector-menu-content li a:hover,
.vector-menu-content li a:focus {
background-color: #555 !important;
color: #ffffff !important;
text-decoration: underline;
}
/* Aktive Menüeinträge (z. B. aktuelle Seite) */
.vector-menu-content li a:active {
color: #ffffff !important;
font-weight: bold;
}