Jump to content

User:Victor Schmidt/global.css

From Meta, a Wikimedia project coordination wiki

Note: After publishing, 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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Quick hack to force the Search tab on [[Special:Contribs]] open. Credit: Volker E. (WMF) - [[m:Special:Permalink/19431311#Reverting the new "collapsed search interface" on Special:Contribs|Tech]] */
.mw-special-Contributions .oo-ui-fieldsetLayout-group.mw-collapsible-content { display: block !important; }
/* fix that nerving self-made table overflow handlers, which aren't working anyway */
.content-table-wrapper, .content-table{
	overflow: visible !important;
}
.content-table-toggle{
	display:none;
}
/* undo that purple link colouring for external links, I can't stand that*/
.mw-parser-output a.extiw, .mw-parser-output a.extiw:active, .mw-parser-output a.external{
	color:#3366cc !important;
}
/* undo menu hacks from the devs */
@media screen and (min-width:851px){
	.skin-timeless #ca-addsection a,
    .skin-timeless #ca-history a,
    .skin-timeless #ca-addsection span,
    .skin-timeless #ca-history span {
       text-indent:0 !important;
       width:200px !important;
       overflow:hidden;
       box-sizing:border-box;
       padding:0 2px 0 20px;;
    }
}
/*
	Add some special markings to supressed edits so I don't have to check the log to find out wether they are.
*/
.mw-history-suppressed{
	font-weight:bold;
	color:darkgray;
}

.mediawiki .user-blocked-partial{
	/* revert anyoing text decoration making stuff hard to read*/
	text-decoration: none !important;
}

/* flaggedrevs review form could do with some padding */
.skin-timeless .flaggedrevs_reviewform{
	padding:5px 20px;
}