Module:Navbar/styles.css: Difference between revisions

From Frontierpedia, the Microsoft Agent encyclopedia
en>Izno
(integrate 2 sheets)
en>Izno
(poke)
Line 55: Line 55:
line-height: inherit; /* Why is this missing in Minerva? */
line-height: inherit; /* Why is this missing in Minerva? */
}
}
.navbar.mini li abbr[title] {
.navbar.mini li abbr[title] { /* Not entirely certain why this is restricted to abbr with title; all abbrs must have a title */
 
font-variant: small-caps;
font-variant: small-caps;
/* Below 3 rules missing from Minerva */
border-bottom: none;
border-bottom: none;
text-decoration: none;
text-decoration: none;

Revision as of 08:27, 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] { /* Not entirely certain why this is restricted to abbr with title; all abbrs must have a title */

	font-variant: small-caps;
	/* Below 3 rules missing from Minerva */
	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 */
}