Editing Module:Navbar/styles.css
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
/* | /* CSS below is common */ | ||
.navbar { | .navbar { | ||
display: inline; | display: inline; | ||
font-size: 88%; | font-size: 88%; | ||
font-weight: normal; | font-weight: normal; | ||
} | } | ||
Line 18: | Line 9: | ||
display: inline-block; | display: inline-block; | ||
white-space: nowrap; | white-space: nowrap; | ||
} | } | ||
.navbar | body.skin-Minerva .navbar ul { | ||
display: inline; /* why does mobile differ here? */ | |||
} | } | ||
Line 34: | Line 18: | ||
word-spacing: -0.125em; | word-spacing: -0.125em; | ||
} | } | ||
/* | |||
Space reserved for remaining common fixes. | |||
*/ | |||
/* 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 */ | ||
.infobox .navbar { | .infobox .navbar { | ||
font-size: 100%; | font-size: 100%; | ||
Line 71: | Line 45: | ||
/* @noflip */ | /* @noflip */ | ||
margin-right: 0.5em; | 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 */ | |||
} | } |