MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
try THISSS |
+rule |
||
Line 34: | Line 34: | ||
div.ext-discussiontools-emptystate:first-child:not(:only-of-type) { | div.ext-discussiontools-emptystate:first-child:not(:only-of-type) { | ||
display: none; | display: none; | ||
} | |||
/* Display [[MediaWiki:Tagline]] */ | |||
#siteSub { | |||
display: block; font-weight: normal; font-size: normal; | |||
} | |||
/* But hide it on the Main Page */ | |||
.page-WickedGov_Main_Page #siteSub { | |||
display: none; | |||
} | } |
Revision as of 18:05, 29 December 2024
/* CSS placed here will be applied to all skins */
/* Remove bullets when there are multiple edit page warnings */
/* From en.wikipedia.org/wiki/MediaWiki:Common.css */
ul.permissions-errors {
margin: 0;
}
ul.permissions-errors > li {
list-style: none;
}
/* Suppressed content should be double-stricken in dark black */
.mw-history-suppressed {
color:#202122 !important;
text-decoration:line-through !important;
text-decoration-style:double !important;
}
/* Hide certain messages displayed only to certain groups */
.hidden-by-default {
display:none;
}
/* Nowrap from [[wikipedia:MediaWiki:Common.css]] */
.nowrap,
.nowraplinks a {
white-space: nowrap;
}
/* Remove duplicate DiscussionTools messages
This is caused by the jerry-rigged hook
to display protection indicators:
[[MediaWiki:Site-protection-indicators]] */
div.ext-discussiontools-emptystate:first-child:not(:only-of-type) {
display: none;
}
/* Display [[MediaWiki:Tagline]] */
#siteSub {
display: block; font-weight: normal; font-size: normal;
}
/* But hide it on the Main Page */
.page-WickedGov_Main_Page #siteSub {
display: none;
}