MediaWiki:Vector.css: Unterschied zwischen den Versionen

Aus wiki.danokar.de
Zur Navigation springen Zur Suche springen
Die Seite wurde neu angelegt: „Das folgende CSS wird für Benutzer der Vector-Benutzeroberfläche geladen.: Allgemeiner Hintergrund & Text: body { background-color: #2a2a2a; Dunkelgrau, nicht schwarz: color: #e0e0e0; } Inhaltsbereich: #content { background-color: #2f2f2f; Etwas heller als body: color: #e0e0e0; } Seitenleisten und Menüs: #p-personal, #p-navigation, #mw-panel { background-color: #252525; color: #ddd; } Linkfarben: a {…“
 
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
/* Das folgende CSS wird für Benutzer der Vector-Benutzeroberfläche geladen. */
/* Hauptseitenbereich */
 
html, body {
/* Allgemeiner Hintergrund & Text */
   background-color: #2a2a2a !important;
body {
   color: #e0e0e0 !important;
   background-color: #2a2a2a; /* Dunkelgrau, nicht schwarz */
   color: #e0e0e0;
}
}


/* Inhaltsbereich */
/* Seitenleiste (Navigation) */
#content {
#mw-panel {
   background-color: #2f2f2f; /* Etwas heller als body */
   background-color: #2e2e2e !important;
   color: #e0e0e0;
   color: #dddddd !important;
}
}


/* Seitenleisten und Menüs */
/* Navigationsboxen */
#p-personal, #p-navigation, #mw-panel {
.portlet {
   background-color: #252525;
   background-color: #333 !important;
   color: #ddd;
   border: none !important;
}
}


/* Linkfarben */
/* Navigationstitel */
a {
.portlet h3 {
   color: #8dcaff;
   color: #8dcaff !important;
}
   border-bottom: 1px solid #444;
a:visited {
   color: #b0aaff;
}
a:hover {
  color: #ffffff;
  text-decoration: underline;
}
}


/* Tabellenrahmen und Inhalte */
/* Menüeinträge (Links in Sidebar) */
table {
.vector-menu-content li a {
   border-color: #444;
   color: #b0d8ff !important;
}
}
th, td {
.vector-menu-content li a:hover {
   background-color: #2f2f2f;
   color: #ffffff !important;
   color: #e0e0e0;
   background-color: #444 !important;
}
}


/* Kopfzeile – optisch abgesetzt */
/* Kopfbereich */
#mw-head {
#mw-head,
   background-color: #1e1e1e;
#p-personal {
   border-bottom: 1px solid #444;
   background-color: #2b2b2b !important;
   color: #dddddd !important;
}
}


/* Footer */
/* Footer */
#footer {
#footer {
   background-color: #1e1e1e;
   background-color: #1e1e1e !important;
   color: #999;
   color: #999 !important;
}
}

Version vom 16. Mai 2025, 15:56 Uhr

/* Hauptseitenbereich */
html, body {
  background-color: #2a2a2a !important;
  color: #e0e0e0 !important;
}

/* Seitenleiste (Navigation) */
#mw-panel {
  background-color: #2e2e2e !important;
  color: #dddddd !important;
}

/* Navigationsboxen */
.portlet {
  background-color: #333 !important;
  border: none !important;
}

/* Navigationstitel */
.portlet h3 {
  color: #8dcaff !important;
  border-bottom: 1px solid #444;
}

/* Menüeinträge (Links in Sidebar) */
.vector-menu-content li a {
  color: #b0d8ff !important;
}
.vector-menu-content li a:hover {
  color: #ffffff !important;
  background-color: #444 !important;
}

/* Kopfbereich */
#mw-head,
#p-personal {
  background-color: #2b2b2b !important;
  color: #dddddd !important;
}

/* Footer */
#footer {
  background-color: #1e1e1e !important;
  color: #999 !important;
}