MediaWiki:Common.css: Difference between revisions

From WikiIndex
Jump to navigation Jump to search
(Category pages, remove bullets from sub-category lists)
(rv Category pages, remove bullets from sub-category lists - not as expected, Italicize disambiguations in Special:AllPages)
 
Line 3: Line 3:
/* Italicize redirects in [[Special:AllPages]] */
/* Italicize redirects in [[Special:AllPages]] */
.allpagesredirect {
.allpagesredirect {
font-style: italic;
}
/* Italicize disambiguations in [[Special:AllPages]] */
.allpagesdisambiguation {
font-style: italic;
font-style: italic;
}
}
Line 14: Line 19:
.smwtt {
.smwtt {
font-size: 127%;
font-size: 127%;
}
/* Category pages, remove bullets from sub-category lists
*
*/
#mw-subcategories ul, .mw-special-Categories ul {
margin-left: 0;
}
#mw-subcategories li, .mw-special-Categories li {
display: block;
}
}

Latest revision as of 00:42, 18 February 2020

/* CSS placed here will affect all skins */

/* Italicize redirects in [[Special:AllPages]] */
.allpagesredirect {
	font-style: italic;
}

/* Italicize disambiguations in [[Special:AllPages]] */
.allpagesdisambiguation {
	font-style: italic;
}

/* No page name on main page */
.page-Welcome .firstHeading {
	display: none;
}

/* Make the info in the semantic bubbles readable */
.smwtt {
	font-size: 127%;
}