MediaWiki:Vector.css: Unterschied zwischen den Versionen

Aus Wiki der Akademie der Bildenden Künste Nürnberg
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „→‎Changes the background color of the bottom and left of each page, up to behind half of the logo:: body { background: red; } /* Changes the background c…“)
 
Zeile 1: Zeile 1:
/* Changes the background color of the bottom and left of each page, up to behind half of the logo: */
a {
body {
    color: #6f6f6f !important;
  background: red;
}
}


/* Changes the background color behind the top half of the logo and at top of each page: */
a:visited {
#mw-page-base {
    color: #6f6f6f !important;
  background: red;
}
 
a.new {
    color: #ba0000 !important;
}
 
.mw-body {
    border-top: 1px solid #a2a9b1;
}
.vector-menu-tabs li {
    background-image: none;
}
 
.mw-logo {
    display: none;
}
 
#searchform {
    max-width: none
}
 
#p-search {
    margin-left: auto;
}
 
#p-personal {
    flex-grow: unset;
}
 
#p-search > #searchform, #p-search .wvui-typeahead-search {
    max-width: none;
}
 
.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), #a2a9b1);
}
}

Version vom 3. Januar 2022, 00:16 Uhr

a {
    color: #6f6f6f !important;
}

a:visited {
    color: #6f6f6f !important;
}

a.new {
    color: #ba0000 !important;
}

.mw-body {
    border-top: 1px solid #a2a9b1;
}
.vector-menu-tabs li {
    background-image: none;
}

.mw-logo {
    display: none;
}

#searchform {
    max-width: none
}

#p-search {
    margin-left: auto;
}

#p-personal {
    flex-grow: unset;
}

#p-search > #searchform, #p-search .wvui-typeahead-search {
    max-width: none;
}

.vector-menu-tabs, .vector-menu-tabs a, #mw-head .vector-menu-dropdown h3 {
    background-image: linear-gradient(rgba(255, 255, 255, 0), #a2a9b1);
}