MediaWiki:Common.css: Difference between revisions

From CCMDB Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(21 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 */
/* turn background of private pages greenish */
.ns-3000 #content, .ns-3001 #content { background-color: #CBF5D6; }
.ns-3000 div.thumb, .ns-3001 div.thumb { border-color: #CBF5D6; }


/*  hide talk links from watch pages and recent changes */
/*  hide talk links from watch pages and recent changes */
.mw-usertoollinks-talk {
.mw-usertoollinks-talk { display : none; }
  display : none;
#ca-talk { display: none !important; }
}


div = document.getElementById("pt-mytalk");
/* make links bold so they are more visible as links */
if (div) {
.mw-body-content a:link {font-weight:bold !IMPORTANT;}
    div.style.display = "none";
    div.delete;
}

Latest revision as of 14:21, 2021 November 17


/* CSS placed here will be applied to all skins */

/*  hide talk links from watch pages and recent changes */
.mw-usertoollinks-talk { display : none; }
#ca-talk { display: none !important; }

/* make links bold so they are more visible as links */
.mw-body-content a:link {font-weight:bold !IMPORTANT;}