More actions
m (style CargoTable drilldown display) |
m (highlight changes in diffs) |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
/* CSS placed here will affect users of the Azure skin */ | /* CSS placed here will affect users of the Azure skin */ | ||
/* highlight changes in diffs */ | |||
.diffchange.diffchange-inline { | |||
color: #cb1818; | |||
} | |||
/* .dropdown class CSS */ | /* .dropdown class CSS */ | ||
Line 32: | Line 37: | ||
/* change sortable table headers' arrows from black to white */ | /* change sortable table headers' arrows from black to white */ | ||
table.jquery-tablesorter th.headerSort { background-image: url(https://blazblue.wiki/images/4/41/Sort_both_white.png); } | table.jquery-tablesorter th.headerSort { background-image: url(https://blazblue.wiki/images/4/41/Sort_both_white.png); } | ||
table.jquery-tablesorter th.headerSortUp { background-image: url(https://blazblue.wiki/images/ | table.jquery-tablesorter th.headerSortUp { background-image: url(https://blazblue.wiki/images/7/70/Sort_up_white.png); } | ||
table.jquery-tablesorter th.headerSortDown { background-image: url(https://blazblue.wiki/images/ | table.jquery-tablesorter th.headerSortDown { background-image: url(https://blazblue.wiki/images/3/3a/Sort_down_white.png); } | ||
/* Give darker border color than the default grey for inline-block wikitables | /* Give darker border color than the default grey for inline-block wikitables | ||
Line 54: | Line 59: | ||
background-color: inherit; | background-color: inherit; | ||
color: inherit; | color: inherit; | ||
} | |||
/* CargoTable drilldown results dropdown styling */ | |||
.ui-menu, .ui-menu-item { background-color: inherit; } | |||
/* recent changes page */ | |||
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button { | |||
color: #bbb; | |||
} | |||
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend { | |||
background-color: #152148; | |||
} | |||
/* tabs */ | |||
.tabs-togglebox > * > .tabs-content { | |||
color: inherit !important; | |||
} | } |
Latest revision as of 02:47, 31 October 2019
/* CSS placed here will affect users of the Azure skin */
/* highlight changes in diffs */
.diffchange.diffchange-inline {
color: #cb1818;
}
/* .dropdown class CSS */
.dropdown {
text-align: left;
}
/*
* Override width:0 on div.mw-prefixindex-body so dropdown lists won't be transparent
* This one needs the overqualification of .dropdown div.mw-* inorder to override the
* original rule without using !important
*/
.dropdown div.mw-prefixindex-body {
width: auto;
}
/* Template:Tt - tooltip CSS */
.tooltip {
border-bottom-color: var(--NOL-grey);
}
.tooltiptext,
.tooltiptext:after,
.tooltip .tooltip .tooltiptext:after {
background: var(--NOL-black);
}
/* Template:Command_List_(Header) alternate colored header CSS */
.th-divider, .th-divider th, .th-divider td {
background-color: var(--NOL-burntgold) !important;
color: var(--NOL-black) !important;
}
/* change sortable table headers' arrows from black to white */
table.jquery-tablesorter th.headerSort { background-image: url(https://blazblue.wiki/images/4/41/Sort_both_white.png); }
table.jquery-tablesorter th.headerSortUp { background-image: url(https://blazblue.wiki/images/7/70/Sort_up_white.png); }
table.jquery-tablesorter th.headerSortDown { background-image: url(https://blazblue.wiki/images/3/3a/Sort_down_white.png); }
/* Give darker border color than the default grey for inline-block wikitables
* and all cargotables (both the outer table and each individual td)
*/
table.wikitable,
table.cargoTable,
table.cargoTable td {
border-color: var(--NOL-lightcharcoal);
}
/* style cargotable background colors. Overqualification is necessary to override
* the default values, which are similarly overqualified */
table.cargoTable { background-color: var(--NOL-darkcharcoal); }
table.cargoTable td.odd { background-color: var(--NOL-charcoal); }
table.cargoTable td.even { background-color: var(--NOL-darkcharcoal); }
/* have file thumbnails inherit the background color of the row they're in */
.cargoTable .thumbinner { background-color:inherit; }
/* style the drilldown results to inherit from the background */
.drilldown-results .drilldown-filters-wrapper {
background-color: inherit;
color: inherit;
}
/* CargoTable drilldown results dropdown styling */
.ui-menu, .ui-menu-item { background-color: inherit; }
/* recent changes page */
.oo-ui-buttonElement-frameless.oo-ui-widget-enabled > .oo-ui-buttonElement-button {
color: #bbb;
}
.mw-rcfilters-ui-changesListWrapperWidget .mw-changeslist-legend {
background-color: #152148;
}
/* tabs */
.tabs-togglebox > * > .tabs-content {
color: inherit !important;
}