Skip to content

Add page for Grafana and other goodies #203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.14.2
22.10.0
2 changes: 1 addition & 1 deletion bin/dbuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/env bash
#!/usr/bin/env bash

docker run -u $(id -u) -v $PWD:/antora:Z --rm -t antora/antora --cache-dir=./.cache/antora antora-playbook.yml $@

1 change: 1 addition & 0 deletions docs/en/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@
*** xref:develop:deploy.adoc[Deploy]
*** xref:develop:docker.adoc[Docker]
*** xref:develop:fixing_locales.adoc[Fixing locales]
*** xref:develop:grafana.adoc[Grafana]

Check failure on line 213 in docs/en/modules/ROOT/nav.adoc

View workflow job for this annotation

GitHub Actions / prose

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'Grafana'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'Grafana'?", "location": {"path": "docs/en/modules/ROOT/nav.adoc", "range": {"start": {"line": 213, "column": 31}}}, "severity": "ERROR"}
*** xref:develop:maps.adoc[Maps]
*** xref:develop:managing_translations_i18n.adoc[i18n]
*** Maintainers
Expand Down
6 changes: 6 additions & 0 deletions supplemental_ui/css/medium-zoom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.medium-zoom-overlay,
img.medium-zoom-image {
z-index: 1000;
cursor: pointer;
}

4 changes: 4 additions & 0 deletions supplemental_ui/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/* quick fix until we move this to the actual UI repository */
article.doc {
max-width: clamp(55em,60%,90rem);
}
3 changes: 3 additions & 0 deletions supplemental_ui/js/medium-zoom.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
mediumZoom('.doc img', {
background: '#fff'
})
2 changes: 2 additions & 0 deletions supplemental_ui/js/vendor/medium-zoom.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions supplemental_ui/partials/footer-scripts.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<script src="{{uiRootPath}}/js/vendor/medium-zoom.min.js"></script>
<script src="{{uiRootPath}}/js/medium-zoom.config.js"></script>

2 changes: 2 additions & 0 deletions supplemental_ui/partials/head-meta.hbs
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
<link rel="stylesheet" href="{{{uiRootPath}}}/css/styles.css">
<link rel="stylesheet" href="{{uiRootPath}}/css/icons.css">
<link rel="stylesheet" href="{{{uiRootPath}}}/css/medium-zoom.css">
Loading