From 5cdd08ee1d31655cf5e078a5e6ba543aff55e7df Mon Sep 17 00:00:00 2001 From: silversword411 Date: Sat, 13 Aug 2022 15:19:09 -0400 Subject: [PATCH 1/3] docs - fixing mobile menu text color --- docs/docs/stylesheets/extra.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/docs/stylesheets/extra.css b/docs/docs/stylesheets/extra.css index d43f2cf7..d3cbf40d 100644 --- a/docs/docs/stylesheets/extra.css +++ b/docs/docs/stylesheets/extra.css @@ -64,6 +64,9 @@ background-color: #113962; background: linear-gradient(to bottom, #104893 0%,#113962 100%); } +.md-nav__link { + color: black; +} a:link { color: #c8c8c8; } @@ -77,4 +80,13 @@ a:link { padding:4px; border-radius:4px; box-shadow: 2px 2px 4px black; +} +.md-typeset .tabbed-set { + border-left-width: 0.2rem; + border-left-color: rgb(244, 244, 244); + border-left-style: solid; + border-radius: 4px; + background-color: rgba(68,138,255,.1); + border-color: rgb(244, 244, 244); + padding: 5px; } \ No newline at end of file From 5e1664c700f7a8d993d638f8d3b48e671b1edbe4 Mon Sep 17 00:00:00 2001 From: silversword411 Date: Sat, 13 Aug 2022 15:19:42 -0400 Subject: [PATCH 2/3] Fixing menus --- docs/docs/meshcentral/agents.md | 7 ++++--- docs/mkdocs.yml | 14 ++++---------- docs/startdevmkdocsonwindows.ps1 | 2 +- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/docs/docs/meshcentral/agents.md b/docs/docs/meshcentral/agents.md index d6383ec3..0e1c983c 100644 --- a/docs/docs/meshcentral/agents.md +++ b/docs/docs/meshcentral/agents.md @@ -17,12 +17,11 @@ xxx Path: `c:\Program Files\Mesh Agent\meshagent.msh` - Start: `net start "mesh agent"` - Stop: `net stop "mesh agent"` - Restart: `net restart "mesh agent"` - - Status: - - Checking for nats or websocket problems `sudo journalctl --no-pager -u nats` and `sudo journalctl --no-pager -u nats-api` + - Status: Needs info === ":material-console-line: Troubleshooting" - Troubleshooting steps + Troubleshooting steps: Needs info ## Linux / BSD @@ -44,4 +43,6 @@ For macOS 10.x including Catalina, Mojave, High Sierra, Sierra, El Capitan, Yose ## MeshCentral Assistant +See [Assistant](assistant.md) + ## Apple MacOS Binary Installer diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 6753e2f8..7cf05b48 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -9,12 +9,13 @@ nav: - MeshCentral2: - 'MeshCentral2 Guide': 'meshcentral/index.md' - 'All Configuration Options': 'meshcentral/config.md' - - 'Device Tabs': 'meshcentral/devicetabs.md' - - 'Tokens': 'meshcentral/tokens.md' + - 'Agent Information': 'meshcentral/agents.md' - 'Assistant': 'meshcentral/assistant.md' - 'Code Signing': 'meshcentral/codesigning.md' - - 'Plugins': 'meshcentral/plugins.md' - 'Debugging': 'meshcentral/debugging.md' + - 'Device Tabs': 'meshcentral/devicetabs.md' + - 'Plugins': 'meshcentral/plugins.md' + - 'Tokens': 'meshcentral/tokens.md' - Design and Architecture: - design/index.md @@ -75,13 +76,6 @@ markdown_extensions: - admonition - pymdownx.details - pymdownx.highlight - - pymdownx.inlinehilite - - pymdownx.keys - - pymdownx.mark - - pymdownx.smartsymbols - - pymdownx.highlight - - pymdownx.inlinehilite - - pymdownx.keys - pymdownx.mark - pymdownx.smartsymbols - codehilite: diff --git a/docs/startdevmkdocsonwindows.ps1 b/docs/startdevmkdocsonwindows.ps1 index a8fcb55e..833433bf 100644 --- a/docs/startdevmkdocsonwindows.ps1 +++ b/docs/startdevmkdocsonwindows.ps1 @@ -14,8 +14,8 @@ pip install mkdocs #only 1st time pip install mkdocs-material #only 1st time #Run mkdocs and look at changes as you make them +start-process http://localhost:8010 #Opens Browser mkdocs serve -start http://localhost:8010 #Opens Browser #Stop python deactivate \ No newline at end of file From 7d731c978a3f89c4d10fb7acba6f83ed976add79 Mon Sep 17 00:00:00 2001 From: silversword411 Date: Sat, 13 Aug 2022 15:34:15 -0400 Subject: [PATCH 3/3] docs - mobile css fix --- docs/docs/stylesheets/extra.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/docs/stylesheets/extra.css b/docs/docs/stylesheets/extra.css index d3cbf40d..ef3b6050 100644 --- a/docs/docs/stylesheets/extra.css +++ b/docs/docs/stylesheets/extra.css @@ -64,9 +64,6 @@ background-color: #113962; background: linear-gradient(to bottom, #104893 0%,#113962 100%); } -.md-nav__link { - color: black; -} a:link { color: #c8c8c8; } @@ -89,4 +86,9 @@ a:link { background-color: rgba(68,138,255,.1); border-color: rgb(244, 244, 244); padding: 5px; -} \ No newline at end of file +} +@media only screen and (max-width: 76.1875em) { + .md-nav__link { + color: black; + } + }