MediaWiki:Cathedral.css: Difference between revisions

MediaWiki interface page
m (visibility: make user messages and account creation textboxes' text more visible)
m (command list table css)
Line 57: Line 57:
.smw-column-header  { color: inherit !important; } /*override default styling*/
.smw-column-header  { color: inherit !important; } /*override default styling*/
.smwfact { background-color: inherit !important; } /*override default styling*/
.smwfact { background-color: inherit !important; } /*override default styling*/
/* CSS for Template:Command List (and its related templates) */
.th-divider, .th-divider th, .th-divider td {
    background-color: var(--NOL-burntgold) !important;
    color: var(--NOL-black) !important;
}

Revision as of 20:01, 19 May 2018

/* CSS placed here will affect users of the Cathedral skin */

/* Account creation page */
fieldset textarea {
    color: black; /* make text readable against forced white bg */
}

/* User message */
.usermessage {
	background-color:#0b5287; /* blue */
	border-color:#3f86cb;
	color:#ddd; /* light grey */
}

/* NOL-tabs */
.NOL-tabs p a {
    background-color: #222; /*var(--NOL-darkblack);*/
    border-radius: 0 !important;
    border: 1px solid #aaa; /*var(--NOL-grey);*/
}

.NOL-tabs p .mw-selflink {  
    background-color: #333; /*var(--NOL-black);*/
	border-bottom: 1.6px solid #333; /*var(--NOL-black);*/
	color: #ccc; /*var(--NOL-lightgrey);*/
}

/* dropdown colors - main code is in /wiki/MediaWiki:Common.css */

.dropdown ul,
.dropdown div ul {
    background-color: #222;
    text-align: left;
}

/* Have Media Viewer use the default link colors */

.mw-mmv-wrapper a {
	color: #0645ad; /* blue */
}
.mv-mmv-wrapper a:visited {
	color: #0b0080; /* dark blue */
}

/* Tooltip */
.tooltip {
  border-bottom-color: var(--NOL-grey);
}

.tooltiptext,
.tooltiptext:after,
.tooltip .tooltip .tooltiptext:after {
  background: var(--NOL-black);
}

/* SMW Styling */
.smw-column-header  { color: inherit !important; } /*override default styling*/
.smwfact { background-color: inherit !important; } /*override default styling*/

/* CSS for Template:Command List (and its related templates) */
.th-divider, .th-divider th, .th-divider td {
    background-color: var(--NOL-burntgold) !important;
    color: var(--NOL-black) !important;
}