Walter Mazza wrote:
> I can't seem to find (or maybe not looking in the right places!) if it is
> possible to assign a CSS class to links that point to pages to a specific
> namespace, similar to how external links are given the CSS class of
> "externa". is it possible via extensions or editing something like
> LocalSettings.php?
> 
> for example: if I create an interwiki link from the main namespace to lets
> say the "community" namespace (wiki: [[Community:Main]]), I want those links
> to have a CSS class of "link-ns100"
> 
> any pointers would be greatly appreciated. :)
> 
> Walter Mazza

CSS have selectors based on the attributes. So you can filter based on
how the url start, ie. the namespace :)

a[href^="/wiki/Talk:"] {
  color: green;
}


_______________________________________________
MediaWiki-l mailing list
MediaWiki-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to