User:Patrick87/common.css

From Inkscape Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* ########## 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;
}