summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJoel Hans <joel@netdata.cloud>2019-07-24 09:49:28 -0700
committerGitHub <noreply@github.com>2019-07-24 09:49:28 -0700
commit8e695f03c9e8425ff88222b2dfbc0f43f9962cf3 (patch)
tree10b90b04d630d63d0160a08977887cd13b0d3877 /docs
parent19f1bd14debbc3654f156d05e44b792efc45d3d3 (diff)
Add CSS to restore navigation in mobile and better links (#6533)
Diffstat (limited to 'docs')
-rw-r--r--docs/generator/custom/css/netdata.css21
1 files changed, 18 insertions, 3 deletions
diff --git a/docs/generator/custom/css/netdata.css b/docs/generator/custom/css/netdata.css
index 437c4ad175..27f1b08cc5 100644
--- a/docs/generator/custom/css/netdata.css
+++ b/docs/generator/custom/css/netdata.css
@@ -6,6 +6,12 @@
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.
In particular, the three buttons for install/getting started/configuration. */
@@ -36,9 +42,13 @@
text-align: center;
}
-/* Hide the label at the top of the navigation menu. Does nothing. */
-.md-nav__title {
- display: none;
+/* Hide the label at the top of the navigation menu. Does nothing.
+ Well, it does do something on mobile, and this media query makes
+ 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. */
@@ -57,4 +67,9 @@
/* Make sure inline code in tables doesn't break. */
.md-typeset__table code {
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;
} \ No newline at end of file