MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
(Added Visited Link Colour Change) |
mNo edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will be applied to all skins */ | /* CSS placed here will be applied to all skins */ | ||
/* unvisited link */ | |||
a:link { | |||
color: blue; | |||
} | |||
/* visited link */ | /* visited link */ | ||
a:visited { | a:visited { | ||
color: | color: blue; | ||
} | |||
a.external { | |||
color: blue !important; | |||
} | |||
a.external:visited { | |||
color: blue !important; | |||
} | } | ||
.vector-menu-tabs .mw-list-item.new a,.vector-menu-tabs .mw-list-item.new a:visited { | |||
color: black !important | |||
} |
Latest revision as of 11:15, 17 January 2024
/* CSS placed here will be applied to all skins */ /* unvisited link */ a:link { color: blue; } /* visited link */ a:visited { color: blue; } a.external { color: blue !important; } a.external:visited { color: blue !important; } .vector-menu-tabs .mw-list-item.new a,.vector-menu-tabs .mw-list-item.new a:visited { color: black !important }