Anonymous
×
Create a new article
Write your page title here:
We currently have 33 articles on Monster Amor. Type your article name above or click on one of the titles below and start writing!



Monster Amor
33Articles

MediaWiki:Cosmos.css: Difference between revisions



Virtual photographs of monster girls in the real world
mNo edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* First, hide the actions section by default (handles both old browsers and view source case) */
/* Hide page header if logged out */
#cosmos-page-header {
#cosmos-page-header:has(#ca-viewsource) {
     display: none !important;
     display: none !important;
}
}


/* Then, only in browsers that support has(), re-enable it specifically for edit source */
/* Hide page header if browser doesn't support has() */
#cosmos-page-header:has(#ca-edit) {
@supports not selector(:has(*)) {
    display: flex !important;
    #cosmos-page-header {
        display: none !important;
    }
}
}


/* Hide categories */
/* Hide toolbar */
#cosmos-toolbar {
#cosmos-toolbar {
     display: none !important;
     display: none !important;

Latest revision as of 19:53, 18 November 2024

/* Hide page header if logged out */
#cosmos-page-header:has(#ca-viewsource) {
    display: none !important;
}

/* Hide page header if browser doesn't support has() */
@supports not selector(:has(*)) {
    #cosmos-page-header {
        display: none !important;
    }
}

/* Hide toolbar */
#cosmos-toolbar {
    display: none !important;
}

/* Add padding to bottom */
#cosmos-footerContent-footerLinks {
    padding-bottom: 10px;
}