MediaWiki:Common.css: Difference between revisions

From Fonline The Long Journey Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* 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;
}
.latest-edited-page li {
     list-style: none;
     list-style: none;
}
}


/* Hide everything except the page link */
/* Hide EVERYTHING inside the RecentChanges entry */
.latest-edited-page .mw-changeslist-line-inner > span {
.latest-edited-page .mw-changeslist-line-inner * {
     display: none;
     display: none !important;
}
}


/* Show ONLY the page title */
/* EXCEPT the page title link */
.latest-edited-page .mw-changeslist-line-inner > a {
.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;
}