MediaWiki: Common.css: Unterschied zwischen den Versionen
Aus Schularchive
Keine Bearbeitungszusammenfassung |
Hocker (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
(75 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
Zeile 13: | Zeile 13: | ||
p { color: #333333; font-family: "Arial", sans-serif; } | p { color: #333333; font-family: "Arial", sans-serif; } | ||
#footer-places-about { | |||
display: none; | |||
} | |||
#footer-places-disclaimer{ display: none; } | |||
/* Die Farbgebung folgt den Vorgaben des Corporate Design. */ | |||
/* Ausnahmen: a:link ist nicht rot (aus optischen Gründen); a:visited wird als "besucht" (helleres Grau) gekennzeichnet */ | |||
a:link { color: #333333; text-decoration: underline;} | a:link { color: #333333; text-decoration: underline;} | ||
a:visited { color: # | a:visited { color: #707070; text-decoration: underline;} | ||
a:hover { color: #AF122C; text-decoration: underline; } | a:hover { color: #AF122C; text-decoration: underline; } | ||
Zeile 22: | Zeile 29: | ||
a:active { color: #AF122C; text-decoration: underline; } | a:active { color: #AF122C; text-decoration: underline; } | ||
/* Im Hauptmenü sollen die Menüpunkte (die ja Links sind) nicht unterstrichen dargestellt werden. */ | |||
/* Dies gilt auch für die Dropdown-Menü-Unterpunkte. */ | |||
#n-Einstieg { text-decoration: none; } | |||
#n-Mitmachen { text-decoration: none; } | |||
#n-Anmelden { text-decoration: none; } | |||
#t-tools { text-decoration: none; } | |||
#pt-personaltools { text-decoration: none; } | |||
/* Tabellenfarbe */ | |||
th { background-color: ededed; } | th { background-color: ededed; } | ||
td { background-color: #f6f6f6; } | td { background-color: #f6f6f6; } | ||
/* das Kästchen mit dem Pfeil am "Bearbeiten"-Button */ | |||
a.dropdown-toggle.btn.btn-primary.btn-block { color: white; background-color: #af122c; } | |||
.btn-primary { | .btn-primary { | ||
color: # | color: #ffffff; | ||
background-image: linear-gradient( to bottom, #af122c 0, #931225 100% ); | |||
background-image: linear-gradient(to bottom,# | border-color: #75111e; | ||
background- | } | ||
border-color: # | |||
#ca-edit{ | |||
color: #ffffff; | |||
} | |||
.btn-primary:hover { | |||
color: #ffffff; | |||
background-image: linear-gradient( to bottom, #c0564c 0, #af122c 100% ); | |||
background-color: #af122c; /* Notwendig, da ein Teil des Buttons sonst blau ist - warum auch immer */ | |||
border-color: #75111e; | |||
} | |||
.btn-primary:active { | |||
color: #ffffff; | |||
background-image: linear-gradient( to bottom, #c0564c 0, #af122c 100%); | |||
background-color: #af122c; | |||
border-color: #75111e; | |||
} | |||
.ul.dropdown-menu { text-decoration: none; } | |||
/* Schrift des "Bearbeiten-Button": weiß, nicht unterstrichen, Umbruch zulassen */ | |||
.sidebar-wrapper #ca-edit-ext { | |||
color: white; | |||
text-decoration: none; | |||
white-space: normal; | |||
word-wrap: break-word; | |||
} | |||
.mw-ui-button { | |||
background-color: #af122c; | |||
color: #ffffff; | |||
border-color: #75111e;; | |||
text-shadow: 0 1px rgba(0,0,0,0.1); | |||
} | } | ||
.oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-constructive > .oo-ui-buttonElement-button { | |||
color: #ffffff; | |||
background-color: #af122c; | |||
border-color: #75111e; | |||
} | } | ||
. | .oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-constructive > .oo-ui-buttonElement-button { | ||
color: # | color: #ffffff; | ||
background-color: # | background-color: #af122c; | ||
border-color: # | border-color: #75111e; | ||
} | } |
Aktuelle Version vom 30. Juli 2021, 09:23 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
body.page-Hauptseite.action-view h1.firstHeading, body.rootpage-Hauptseite.action-submit h1.firstHeading { display: none; }
h1 { color: #AF122C; font-family: "Arial", sans-serif; font-size: 250%;}
h2 { color: #AF122C; font-family: "Arial", sans-serif; }
h3 { color: #AF122C; font-family: "Arial", sans-serif; }
h4 { color: #AF122C; font-family: "Arial", sans-serif; }
p { color: #333333; font-family: "Arial", sans-serif; }
#footer-places-about {
display: none;
}
#footer-places-disclaimer{ display: none; }
/* Die Farbgebung folgt den Vorgaben des Corporate Design. */
/* Ausnahmen: a:link ist nicht rot (aus optischen Gründen); a:visited wird als "besucht" (helleres Grau) gekennzeichnet */
a:link { color: #333333; text-decoration: underline;}
a:visited { color: #707070; text-decoration: underline;}
a:hover { color: #AF122C; text-decoration: underline; }
a:active { color: #AF122C; text-decoration: underline; }
/* Im Hauptmenü sollen die Menüpunkte (die ja Links sind) nicht unterstrichen dargestellt werden. */
/* Dies gilt auch für die Dropdown-Menü-Unterpunkte. */
#n-Einstieg { text-decoration: none; }
#n-Mitmachen { text-decoration: none; }
#n-Anmelden { text-decoration: none; }
#t-tools { text-decoration: none; }
#pt-personaltools { text-decoration: none; }
/* Tabellenfarbe */
th { background-color: ededed; }
td { background-color: #f6f6f6; }
/* das Kästchen mit dem Pfeil am "Bearbeiten"-Button */
a.dropdown-toggle.btn.btn-primary.btn-block { color: white; background-color: #af122c; }
.btn-primary {
color: #ffffff;
background-image: linear-gradient( to bottom, #af122c 0, #931225 100% );
border-color: #75111e;
}
#ca-edit{
color: #ffffff;
}
.btn-primary:hover {
color: #ffffff;
background-image: linear-gradient( to bottom, #c0564c 0, #af122c 100% );
background-color: #af122c; /* Notwendig, da ein Teil des Buttons sonst blau ist - warum auch immer */
border-color: #75111e;
}
.btn-primary:active {
color: #ffffff;
background-image: linear-gradient( to bottom, #c0564c 0, #af122c 100%);
background-color: #af122c;
border-color: #75111e;
}
.ul.dropdown-menu { text-decoration: none; }
/* Schrift des "Bearbeiten-Button": weiß, nicht unterstrichen, Umbruch zulassen */
.sidebar-wrapper #ca-edit-ext {
color: white;
text-decoration: none;
white-space: normal;
word-wrap: break-word;
}
.mw-ui-button {
background-color: #af122c;
color: #ffffff;
border-color: #75111e;;
text-shadow: 0 1px rgba(0,0,0,0.1);
}
.oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-constructive > .oo-ui-buttonElement-button {
color: #ffffff;
background-color: #af122c;
border-color: #75111e;
}
.oo-ui-buttonElement-framed.oo-ui-widget-enabled.oo-ui-flaggedElement-primary.oo-ui-flaggedElement-constructive > .oo-ui-buttonElement-button {
color: #ffffff;
background-color: #af122c;
border-color: #75111e;
}