MediaWiki:Standard.css: Difference between revisions
Jump to navigation
Jump to search
Created page with "→CSS placed here will affect users of the Standard skin: →hides third ("Blank") anchor: div#quickbar a:nth-of-type(3){ visibility:hidden; }" |
mNo edit summary |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
/* CSS placed here will affect users of the Standard skin */ | /* CSS placed here will affect users of the Standard skin */ | ||
/* hides third ("Blank") anchor */ | |||
div#quickbar a:nth-of-type(3){ | /* the following adjustments work but are moot b/c we now hide this skin b/c it looks bad (in LocalSettings.php) */ | ||
/* hides third ("Blank") anchor, but fails for IE, so use the selector below this one */ | |||
/* div#quickbar a:nth-of-type(3){ */ | |||
/* visibility:hidden; */ | |||
/* } */ | |||
/* hides third ("Blank") anchor (b/c "Aboutsite" in sidebar indirectly leads to M204wiki_home) */ | |||
div#quickbar a[href="/index.php/M204wiki_home"] { | |||
visibility:hidden; | visibility:hidden; | ||
} | } | ||
Latest revision as of 16:45, 9 October 2013
/* CSS placed here will affect users of the Standard skin */
/* the following adjustments work but are moot b/c we now hide this skin b/c it looks bad (in LocalSettings.php) */
/* hides third ("Blank") anchor, but fails for IE, so use the selector below this one */
/* div#quickbar a:nth-of-type(3){ */
/* visibility:hidden; */
/* } */
/* hides third ("Blank") anchor (b/c "Aboutsite" in sidebar indirectly leads to M204wiki_home) */
div#quickbar a[href="/index.php/M204wiki_home"] {
visibility:hidden;
}