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

From Yugipedia
Jump to: navigation, search
(disambig link coloring, tweak redirect link coloring)
(rm one style that's been gadgetized and one that's useless here)
Line 33: Line 33:
 
.mw-disambig:active {
 
.mw-disambig:active {
 
color: #FF8921;
 
color: #FF8921;
}
 
 
/* Monospaced font and preserved whitespace for diffs */
 
.diff-addedline, .diff-deletedline, .diff-context {
 
font-family: monospace, monospace; /* has to be doubled to fix the font-size issue in Webkit */
 
white-space: pre-wrap;
 
 
}
 
}
  
Line 54: Line 48:
 
.page-Yu-Gi-Oh_Requests_for_mover_requests #wpSummaryLabel {
 
.page-Yu-Gi-Oh_Requests_for_mover_requests #wpSummaryLabel {
 
display: inline-block;
 
display: inline-block;
}
 
 
/* für die lols */
 
.usermessage {
 
background-image: url(//vignette3.wikia.nocookie.net/dinoguy10e4/images/5/55/Lolface.png/revision/latest/scale-to-width-down/40);
 
background-size: auto 40px;
 
background-repeat: no-repeat;
 
background-position: left;
 
padding-left: 38px;
 
 
}
 
}

Revision as of 11:52, 10 August 2018

/* make it easier to find redirects */
.mw-redirect,
.mw-redirect:link,
.mw-redirect:visited,
.mw-redirect:hover,
.mw-redirect:active {
	color: #308050;
}

/* but not for diff comments */
.comment .mw-redirect,
.mw-usertoollinks .mw-redirect,
.comment .mw-redirect:link,
.mw-usertoollinks .mw-redirect:link {
    color: #0645AD;
}
.comment .mw-redirect:visited,
.mw-usertoollinks .mw-redirect:visited {
    color: #0B0080;
}
.comment .mw-redirect:hover,
.mw-usertoollinks .mw-redirect:hover,
.comment .mw-redirect:active,
.mw-usertoollinks .mw-redirect:active {
    color: #FAA700;
}

/* disambig link coloring */
.mw-disambig,
.mw-disambig:link,
.mw-disambig:visited,
.mw-disambig:hover,
.mw-disambig:active {
	color: #FF8921;
}

/* taller textboxes */
/* except for #wpUploadDescription */
#wpTextbox1, .ui-resizable {
	max-height: none;
	height: 50em;
}

/* unhide the summary field on RFP request pages (from [[User:Deltaneos/common.css]]) */
.page-Yu-Gi-Oh_Requests_for_rollback_requests #wpSummary,
.page-Yu-Gi-Oh_Requests_for_rollback_requests #wpSummaryLabel,
.page-Yu-Gi-Oh_Requests_for_mover_requests #wpSummary,
.page-Yu-Gi-Oh_Requests_for_mover_requests #wpSummaryLabel {
	display: inline-block;
}