Navbar/styles.css: Difference between revisions
From Aurora Wiki
More actions
< Navbar
Content deleted Content added
Template>Izno adj |
m 1 revision imported |
||
| Line 1: | Line 1: | ||
/* {{ |
/** {{Shared Template Warning}} |
||
* This TemplateStyles page is separately used for [[Template:Navbar]] |
|||
* because of course there are two versions of the same template. |
|||
* Be careful when adjusting styles accordingly. |
|||
*/ |
|||
.navbar { |
.navbar { |
||
display: inline; |
display: inline; |
||
font-size: 88%; |
font-size: 88%; |
||
font-weight: normal; |
font-weight: normal; |
||
} |
|||
.navbar-collapse { |
|||
| ⚫ | |||
| ⚫ | |||
} |
|||
.navbar-boxtext { |
|||
word-spacing: 0; |
|||
} |
} |
||
.navbar ul { |
.navbar ul { |
||
display: inline |
display: inline; |
||
white-space: nowrap; |
white-space: nowrap; |
||
line-height: inherit; |
|||
} |
|||
.navbar-brackets::before { |
|||
| ⚫ | |||
content: '[ '; |
|||
} |
|||
.navbar-brackets::after { |
|||
margin-left: -0.125em; |
|||
content: ' ]'; |
|||
} |
} |
||
| Line 35: | Line 19: | ||
} |
} |
||
/* Navbar styling when nested in navbox */ |
|||
.navbar a > span, |
|||
.navbar |
.navbox .navbar { |
||
display: block; |
|||
text-decoration: inherit; |
|||
| ⚫ | |||
} |
} |
||
. |
.navbox-title .navbar { |
||
/* @noflip */ |
|||
font-variant: small-caps; |
|||
| ⚫ | |||
border-bottom: none; |
|||
/* @noflip */ |
|||
text-decoration: none; |
|||
| ⚫ | |||
cursor: inherit; |
|||
/* @noflip */ |
|||
} |
|||
| ⚫ | |||
width: 6em; |
|||
.navbar-ct-full { |
|||
| ⚫ | |||
margin: 0 7em; |
|||
} |
|||
.navbar-ct-mini { |
|||
font-size: 114%; |
|||
margin: 0 4em; |
|||
} |
|||
/* not the usual @media screen, we simply remove navbar in @media print */ |
|||
html.skin-theme-clientpref-night .navbar li a abbr { |
|||
color: var(--color-base) !important; |
|||
} |
|||
@media (prefers-color-scheme: dark) { |
|||
html.skin-theme-clientpref-os .navbar li a abbr { |
|||
color: var(--color-base) !important; |
|||
} |
|||
} |
|||
@media print { |
|||
.navbar { |
|||
display: none !important; |
|||
} |
|||
} |
} |
||
Revision as of 12:05, 18 February 2025
/** {{Shared Template Warning}}
* This TemplateStyles page is separately used for [[Template:Navbar]]
* because of course there are two versions of the same template.
* Be careful when adjusting styles accordingly.
*/
.navbar {
display: inline;
font-size: 88%;
font-weight: normal;
}
.navbar ul {
display: inline;
white-space: nowrap;
}
.navbar li {
word-spacing: -0.125em;
}
/* Navbar styling when nested in navbox */
.navbox .navbar {
display: block;
font-size: 100%;
}
.navbox-title .navbar {
/* @noflip */
float: left;
/* @noflip */
text-align: left;
/* @noflip */
margin-right: 0.5em;
width: 6em;
}