MediaWiki:Common.css: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 1: | Line 1: | ||
/* Remove bullets and spacing */ | |||
/* Remove bullets */ | .latest-edited-page ul, | ||
.latest-edited-page ul { | .latest-edited-page li { | ||
margin: 0; | margin: 0; | ||
padding: 0; | padding: 0; | ||
list-style: none; | list-style: none; | ||
} | } | ||
/* Hide | /* Hide EVERYTHING inside the RecentChanges entry */ | ||
.latest-edited-page .mw-changeslist-line-inner | .latest-edited-page .mw-changeslist-line-inner * { | ||
display: none; | display: none !important; | ||
} | } | ||
/* | /* EXCEPT the page title link */ | ||
.latest-edited-page .mw-changeslist-line-inner | .latest-edited-page .mw-changeslist-line-inner a.mw-changeslist-title { | ||
display: inline; | display: inline !important; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: 1.1em; | font-size: 1.1em; | ||
} | } | ||
Revision as of 23:44, 9 March 2026
/* Remove bullets and spacing */
.latest-edited-page ul,
.latest-edited-page li {
margin: 0;
padding: 0;
list-style: none;
}
/* Hide EVERYTHING inside the RecentChanges entry */
.latest-edited-page .mw-changeslist-line-inner * {
display: none !important;
}
/* EXCEPT the page title link */
.latest-edited-page .mw-changeslist-line-inner a.mw-changeslist-title {
display: inline !important;
font-weight: bold;
font-size: 1.1em;
}