Die Seite für Alsterweiler von Matthias C.S. Dreyer u.a.

MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus Alsterweiler
Zur Navigation springen Zur Suche springen
K
K
Zeile 8: Zeile 8:
 
body.page-Main_Page #mp-topbanner {
 
body.page-Main_Page #mp-topbanner {
 
     clear: both;
 
     clear: both;
}
 
 
/* Styling for citations. Breaks long urls, etc., rather than overflowing box */
 
.citation {
 
    word-wrap: break-word;
 
}
 
 
 
/* Highlight linked elements (such as clicked references) in blue */
 
body.action-info :target,
 
.citation:target {
 
    background-color: #DEF;  /* Fallback */
 
    background-color: rgba(0, 127, 255, 0.133);
 
 
}
 
}
  
Zeile 37: Zeile 24:
 
body.page-Hauptseite div#breadcrumbs {
 
body.page-Hauptseite div#breadcrumbs {
 
   display: none;
 
   display: none;
}
 
 
 
 
 
 
 
 
 
 
 
 
 
/**
 
* Icons on the top right of the article.
 
* See also JS
 
*
 
* @source https://www.mediawiki.org/wiki/Snippets/Top_icons
 
* @version 5
 
*/
 
/* Hide without javascript */
 
.Top_icon_raw {
 
display: none;
 
}
 
/* With JavaScript */
 
.Top_icon_dynamic {
 
float: right;
 
padding-left: 10px;
 
font-size: 50%;
 
width: auto !important;
 
}
 
.Top_icon_raw p, .Top_icon_dynamic p {
 
padding: 0;
 
margin: 0;
 
 
}
 
}

Version vom 16. November 2015, 12:48 Uhr

/* Überschrift der Hauptseite verbergen, übernommen aus dem 
 * MediaWiki:Common.css der deutschen Wikipedia
 * http://de.wikipedia.org/w/index.php?title=MediaWiki:Common.css&oldid=54662738
 */
body.page-Hauptseite h1.firstHeading {
  display: none;
}
body.page-Main_Page #mp-topbanner {
    clear: both;
}

/*Diskussionseite entfernen
 */
#ca-talk { 
  display:none!important; 
}


/* Breadcrumbs beeinflussen
 */
div#breadcrumbs {
  font-size:0.8em;
}
body.page-Hauptseite div#breadcrumbs {
  display: none;
}