MediaWiki:Common.css: Difference between revisions

From Fonline The Long Journey Wiki
Jump to navigation Jump to search
Trying to do it via css
 
mNo edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Hide everything except the page link */
/* Remove bullets */
.latest-edited-page ul li {
.latest-edited-page ul {
    margin: 0;
    padding: 0;
}
 
.latest-edited-page li {
     list-style: none;
     list-style: none;
}
}


.latest-edited-page .mw-changeslist-line-inner > span:not(:first-child) {
/* Hide everything except the page link */
.latest-edited-page .mw-changeslist-line-inner > span {
     display: none;
     display: none;
}
/* Show ONLY the page title */
.latest-edited-page .mw-changeslist-line-inner > a {
    display: inline;
    font-weight: bold;
    font-size: 1.1em;
}
}

Revision as of 23:42, 9 March 2026

/* CSS placed here will be applied to all skins */
/* Remove bullets */
.latest-edited-page ul {
    margin: 0;
    padding: 0;
}

.latest-edited-page li {
    list-style: none;
}

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

/* Show ONLY the page title */
.latest-edited-page .mw-changeslist-line-inner > a {
    display: inline;
    font-weight: bold;
    font-size: 1.1em;
}