Difference between revisions of "User:Patrick87/common.css"

From Inkscape Wiki
Jump to navigation Jump to search
 
m (Moini moved page User:Eduard/common.css to User:Patrick87/common.css: Automatically moved page while renaming the user "Eduard" to "Patrick87")
 
(No difference)

Latest revision as of 20:18, 23 November 2018

/* ########## interwiki content ########## */


/* WATCHLIST */

/* highlight "update since my last visit" with green text */
span.updatedmarker {
    background-color: transparent;
    color: #006400;
}

/* green bullets for updated entries in watchlist, history and recent/related changes */
li.mw-changeslist-line-watched,
li.mw-history-line-updated {
    list-style-image: url(//upload.wikimedia.org/wikipedia/commons/c/cd/ChangedBulletVector2.png);
}



/* EDITSECTIONS */

/* hide editsections early to prevent flickering when they are subsequently replaced by [[de:Benutzer:Schnark/js/section-links.js]] */
.mw-editsection {
	display: none;
}

/* scale down section links of [[de:Benutzer:Schnark/js/section-links.js]] a little */
.section-links {
	transform: scale(0.9);
}



/* HIDE SOME UNNECESSARY THINGS */

/* hide "From Wiki***, the free ***" text under page title */
#siteSub {
	display: none;
}

/* hide help text from upload pages */
#uploadtext {
    display: none;
}

/* hide copyright warnings from edit pages */
.editpage-head-copywarn, #editpage-copywarn {
    display: none;
}

/* hide legend on history pages */
.mw-history-legend {
	display: none;
}

/* hide "View templates on this page" and "View hidden categories on this page" on edit conflict resolution pages */
.mw-explainconflict ~ #editform .templatesUsed,
.mw-explainconflict ~ #editform .hiddencats {
    display: none;
}

/* hide notification-area ("the page has been added/removed from your watchlist") */
#mw-notification-area {
	display: none !important;	
}



/* REMOVE ANNOYANCES */

/* position siteNotice absolutely at the top of the page to avoid content text being shifted around on display */
#siteNotice {
    position:absolute;
    top:0;
    left:300px;
    width:500px;
    z-index: 99999;
}

/* remove stupid grayish text color #252525 introduced by [[mw:Typography refresh]] */
div#content {
    color:#000;
}

/* prevent sub/sup to increase line-height */
sub,sup {
    line-height:0;
}
h1,h2,h3,h4,h5,h6 {
	overflow: visible;
}

/* hide label from vectorMenu items (introduced in [[bugzilla:44591]]) */
div.vectorMenu h3 span {
    display: none;
}
div.vectorMenu h3,
div.vectorMenu h3 a {
    width: 24px;
}