MediaWiki:Vector.css: Unterschied zwischen den Versionen

Aus wiki.danokar.de
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Hauptseitenbereich */
/* Sidebar-Hintergrund deutlich heller als Hauptbereich */
html, body {
  background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
}
 
/* Seitenleiste (Navigation) */
#mw-panel {
#mw-panel {
   background-color: #2e2e2e !important;
   background-color: #3a3a3a !important; /* Helleres Dunkelgrau */
   color: #dddddd !important;
   color: #f0f0f0 !important;
}
}


/* Navigationsboxen */
/* Titel in der Sidebar (Navigation, Werkzeuge etc.) */
.portlet {
  background-color: #333 !important;
  border: none !important;
}
 
/* Navigationstitel */
.portlet h3 {
.portlet h3 {
   color: #8dcaff !important;
   color: #ffffff !important;
   border-bottom: 1px solid #444;
  font-weight: bold;
   border-bottom: 1px solid #666;
  margin-bottom: 0.5em;
}
}


/* Menüeinträge (Links in Sidebar) */
/* Menü-Links in der Sidebar */
.vector-menu-content li a {
.vector-menu-content li a {
   color: #b0d8ff !important;
   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;
   background-color: #444 !important;
   text-decoration: underline;
}
}


/* Kopfbereich */
/* Aktive Menüeinträge (z. B. aktuelle Seite) */
#mw-head,
.vector-menu-content li a:active {
#p-personal {
   color: #ffffff !important;
   background-color: #2b2b2b !important;
   font-weight: bold;
   color: #dddddd !important;
}
 
/* Footer */
#footer {
  background-color: #1e1e1e !important;
  color: #999 !important;
}
}

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;
}