MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus SWPedia
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 22: Zeile 22:
.char-card a.new:visited {
.char-card a.new:visited {
     color: #ff6b6b !important;
     color: #ff6b6b !important;
}
/* =================================
  INTERNE LINKS IM PROFIL UMFAERBEN
  ================================= */
/* 1. Normale interne Wiki-Links ([[Link]]) */
.char-card a,
.char-card a:visited,
.char-card a.mw-redirect {
    color: #d4a017 !important; /* Gold-Gelb passend zum Design */
    text-decoration: none;
    font-weight: bold;
}
/* 2. Wenn man mit der Maus drüberfährt */
.char-card a:hover {
    color: #ffffff !important; /* Wird Weiß */
    text-decoration: underline;
}
/* 3. Links zu Seiten, die es noch nicht gibt (normalerweise Dunkelrot) */
.char-card a.new,
.char-card a.new:visited {
    color: #ff6b6b !important; /* Helles Rot, gut lesbar auf Grau */
}
}

Version vom 5. Januar 2026, 14:01 Uhr

/* =================================
   LINK-FARBEN FÜR CHARACTER CARD
   ================================= */

/* Normale Links (Gold statt Blau) */
.char-card a,
.char-card a:visited {
    color: #d4a017 !important; /* Gold */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

/* Hover-Effekt (Weiß) */
.char-card a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Links zu nicht existierenden Seiten (Helles Rot statt Dunkelrot) */
.char-card a.new,
.char-card a.new:visited {
    color: #ff6b6b !important;
}


/* =================================
   INTERNE LINKS IM PROFIL UMFAERBEN
   ================================= */

/* 1. Normale interne Wiki-Links ([[Link]]) */
.char-card a,
.char-card a:visited,
.char-card a.mw-redirect {
    color: #d4a017 !important; /* Gold-Gelb passend zum Design */
    text-decoration: none;
    font-weight: bold;
}

/* 2. Wenn man mit der Maus drüberfährt */
.char-card a:hover {
    color: #ffffff !important; /* Wird Weiß */
    text-decoration: underline;
}

/* 3. Links zu Seiten, die es noch nicht gibt (normalerweise Dunkelrot) */
.char-card a.new,
.char-card a.new:visited {
    color: #ff6b6b !important; /* Helles Rot, gut lesbar auf Grau */
}