Module:Navbar/styles.css: Difference between revisions
From All Skies Encyclopaedia
imported>Izno m (Izno moved page Template:Navbar/styles.css to Module:Navbar/styles.css without leaving a redirect: navbar is implemented in module space) |
imported>Izno (clean) |
||
Line 11: | Line 11: | ||
} |
} |
||
⚫ | |||
body.skin-Minerva .navbar ul { |
|||
float: left; |
|||
display: inline; /* why does mobile differ here? */ |
|||
text-align: left; |
|||
⚫ | |||
.navbar-boxtext { |
|||
word-spacing: 0; |
|||
} |
} |
||
Line 18: | Line 23: | ||
word-spacing: -0.125em; |
word-spacing: -0.125em; |
||
} |
} |
||
/* |
|||
Space reserved for remaining common fixes. |
|||
.navbar-lbracket { |
|||
margin-right: -0.125em; |
|||
⚫ | |||
.navbar-rbracket { |
|||
margin-left: -0.125em; |
|||
} |
|||
.navbar-c-title-full { |
|||
font-size: 114%; |
|||
margin: 0 7em; |
|||
} |
|||
.navbar-c-title-mini { |
|||
*/ |
|||
font-size: 114%; |
|||
margin: 0 4em; |
|||
} |
|||
.navbar.mini li abbr, |
|||
.navbar.mini li span { |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
} |
|||
/* Navbar styling when nested in infobox and navbox */ |
/* Navbar styling when nested in infobox and navbox */ |
||
/* Should consider having a separate TemplateStyles for those specific places |
/* Should consider having a separate TemplateStyles for those specific places |
||
using an infobox/navbox and a navbar */ |
using an infobox/navbox and a navbar, or possibly override from using template */ |
||
.infobox .navbar { |
.infobox .navbar { |
||
font-size: 100%; |
font-size: 100%; |
||
Line 51: | Line 75: | ||
} |
} |
||
⚫ | |||
/* CSS below is from Common.css */ |
|||
line-height: inherit; |
|||
⚫ | |||
line-height: inherit; /* Why is this missing in Minerva? */ |
|||
⚫ | |||
.navbar.mini li abbr[title] { /* Not entirely certain why this is restricted to abbr with title; all abbrs must have a title */ |
|||
⚫ | |||
/* Below 3 rules missing from Minerva */ |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
/* CSS below is from Mobile.css */ |
|||
⚫ | |||
font-variant: small-caps; /* This just looks like it missed the update to abbr */ |
|||
} |
} |
Revision as of 05:00, 4 December 2020
/* CSS below is common */
.navbar {
display: inline;
font-size: 88%;
font-weight: normal;
}
.navbar ul {
display: inline-block;
white-space: nowrap;
}
.navbar-collapse {
float: left;
text-align: left;
}
.navbar-boxtext {
word-spacing: 0;
}
.navbar li {
word-spacing: -0.125em;
}
.navbar-lbracket {
margin-right: -0.125em;
}
.navbar-rbracket {
margin-left: -0.125em;
}
.navbar-c-title-full {
font-size: 114%;
margin: 0 7em;
}
.navbar-c-title-mini {
font-size: 114%;
margin: 0 4em;
}
.navbar.mini li abbr,
.navbar.mini li span {
font-variant: small-caps;
border-bottom: none;
text-decoration: none;
cursor: inherit;
}
/* 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, or possibly override from using template */
.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? */
}
/* body.everyoneelse */ .mw-body-content .navbar ul {
line-height: inherit;
}