mirror of
https://github.com/netdata/netdata.git
synced 2025-04-26 22:04:46 +00:00
Add CSS to restore navigation in mobile and better links (#6533)
This commit is contained in:
parent
19f1bd14de
commit
8e695f03c9
1 changed files with 18 additions and 3 deletions
|
@ -6,6 +6,12 @@
|
||||||
font-size: .75rem
|
font-size: .75rem
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Underline text */
|
||||||
|
|
||||||
|
.md-typeset a:not(.nav-button):not(.md-icon):not(.headerlink) {
|
||||||
|
border-bottom: 1px solid #272b30;
|
||||||
|
}
|
||||||
|
|
||||||
/* Custom styling for the new documentation homepage.
|
/* Custom styling for the new documentation homepage.
|
||||||
In particular, the three buttons for install/getting started/configuration. */
|
In particular, the three buttons for install/getting started/configuration. */
|
||||||
|
|
||||||
|
@ -36,9 +42,13 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Hide the label at the top of the navigation menu. Does nothing. */
|
/* Hide the label at the top of the navigation menu. Does nothing.
|
||||||
.md-nav__title {
|
Well, it does do something on mobile, and this media query makes
|
||||||
display: none;
|
sure it's hidden only on screens wide enough to not use the mobile sidebar. */
|
||||||
|
@media only screen and (min-width:76.25em) {
|
||||||
|
.md-nav--primary .md-nav__title {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Change the language selector dropdown to match new color. */
|
/* Change the language selector dropdown to match new color. */
|
||||||
|
@ -57,4 +67,9 @@
|
||||||
/* Make sure inline code in tables doesn't break. */
|
/* Make sure inline code in tables doesn't break. */
|
||||||
.md-typeset__table code {
|
.md-typeset__table code {
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bold the first item on the docs sidebar: Netdata Documentation */
|
||||||
|
.md-nav--primary > .md-nav__list > .md-nav__item:first-of-type {
|
||||||
|
font-weight: 700;
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue