Module:Navbar/styles.css: Difference between revisions

    From Nonbinary Wiki
    (be safe and limit these to minerva for time being (but I think we can consolidate these with MediaWiki:Common.css))
    (integrate 2 sheets)
    Line 1: Line 1:
    body.skin-minerva .navbar {
    /* CSS below is common */
    .navbar {
    display: inline;
    display: inline;
    font-size: 88%;
    font-size: 88%;
    font-weight: normal;
    font-weight: normal;
    }
    }
    body.skin-minerva .navbar ul {
     
    display: inline;
    .navbar ul {
    display: inline-block;
    white-space: nowrap;
    white-space: nowrap;
    }
    }
    body.skin-minerva .navbar li {
     
    body.skin-Minerva .navbar ul {
    display: inline; /* why does mobile differ here? */
    }
     
    .navbar li {
    word-spacing: -0.125em;
    word-spacing: -0.125em;
    }
    }
    .body.skin-minerva navbar.mini li span {
    /*
    font-variant: small-caps;
    Space reserved for remaining common fixes.
    }
     
     
     
     
    */
     
    /* Navbar styling when nested in infobox and navbox */
    /* Navbar styling when nested in infobox and navbox */
    body.skin-minerva .navbox .navbar,
    /* Should consider having a separate TemplateStyles for those specific places
    body.skin-minerva .infobox .navbar {
    using an infobox/navbox and a navbar */
    .infobox .navbar {
    font-size: 100%;
    font-size: 100%;
    }
    }
    body.skin-minerva .navbox .navbar {
     
    .navbox .navbar {
    display: block;
    display: block;
    font-size: 100%;
    }
    }
    body.skin-minerva .navbox-title .navbar {
     
    .navbox-title .navbar {
    /* @noflip */
    /* @noflip */
    float: left;
    float: left;
    Line 29: Line 45:
    /* @noflip */
    /* @noflip */
    margin-right: 0.5em;
    margin-right: 0.5em;
    width: 6em;
    }
     
    body.skin-Minerva .navbox-title .navbar {
    width: 6em; /* Why does mobile set this width? */
    }
     
    /* CSS below is from Common.css */
    .mw-body-content .navbar ul {
    line-height: inherit; /* Why is this missing in Minerva? */
    }
    .navbar.mini li abbr[title] {
    font-variant: small-caps;
    border-bottom: none;
    text-decoration: none;
    cursor: inherit;
    }
     
    /* CSS below is from Mobile.css */
    .navbar.mini li span {
    font-variant: small-caps; /* This just looks like it missed the update to abbr */
    }
    }

    Revision as of 08:25, 3 December 2020

    /* CSS below is common */
    .navbar {
    	display: inline;
    	font-size: 88%;
    	font-weight: normal;
    }
    
    .navbar ul {
    	display: inline-block;
    	white-space: nowrap;
    }
    
    body.skin-Minerva .navbar ul {
    	display: inline; /* why does mobile differ here? */
    }
    
    .navbar li {
    	word-spacing: -0.125em;
    }
    /*
    Space reserved for remaining common fixes.
    
    
    
    
    */
    
    /* Navbar styling when nested in infobox and navbox */
    /* Should consider having a separate TemplateStyles for those specific places
    using an infobox/navbox and a navbar */
    .infobox .navbar {
    	font-size: 100%;
    }
    
    .navbox .navbar {
    	display: block;
    	font-size: 100%;
    }
    
    .navbox-title .navbar {
    	/* @noflip */
    	float: left;
    	/* @noflip */
    	text-align: left;
    	/* @noflip */
    	margin-right: 0.5em;
    }
    
    body.skin-Minerva .navbox-title .navbar {
    	width: 6em; /* Why does mobile set this width? */
    }
    
    /* CSS below is from Common.css */
    .mw-body-content .navbar ul {
    	line-height: inherit; /* Why is this missing in Minerva? */
    }
    .navbar.mini li abbr[title] {
    	font-variant: small-caps;
    	border-bottom: none;
    	text-decoration: none;
    	cursor: inherit;
    }
    
    /* CSS below is from Mobile.css */
    .navbar.mini li span {
    	font-variant: small-caps; /* This just looks like it missed the update to abbr */
    }