MediaWiki:Common.css: Difference between revisions

From SNAFU Con Wiki
Jump to navigation Jump to search
(Make visited red links black.)
(inherit redlink style, don't force black)
Line 9: Line 9:
}
}


a.new {
a.new:link,
    color: black;
a.new:active,
}
 
a.new:visited {
a.new:visited {
     color: black;
     color: inherit;
    text-decoration: inherit;
}
}

Revision as of 20:35, 30 January 2015

/* suppress stuff we don't want on the main page */
.page-Main_Page #deleteconfirm,
.page-Main_Page #t-cite,
.page-Main_Page #footer-info-lastmod,
.action-view.page-Main_Page #siteSub,
.action-view.page-Main_Page #contentSub,
.action-view.page-Main_Page .firstHeading {
    display: none !important;
}

a.new:link,
a.new:active,
a.new:visited {
    color: inherit;
    text-decoration: inherit;
}