summaryrefslogtreecommitdiff
path: root/docs/static
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2020-07-13 15:53:44 -0700
committerGitHub <noreply@github.com>2020-07-13 15:53:44 -0700
commitd712d1281c6f7bde36629767ce429cc646ed0a29 (patch)
tree6cb982ba12020332f2d9cbed3eb515ccdf8f510e /docs/static
parentc8752ff93eb62f115e9129f7b2d20d8ed5a8ed88 (diff)
parent3fcd999130fcd87ccbabb65dbe6a6a6cadc08d90 (diff)
Merge branch 'main' into master
Diffstat (limited to 'docs/static')
-rw-r--r--docs/static/customstyle.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/static/customstyle.css b/docs/static/customstyle.css
index 6c964b762..ce2140e70 100644
--- a/docs/static/customstyle.css
+++ b/docs/static/customstyle.css
@@ -9,7 +9,19 @@
margin: 4px;
}
+/* custom CSS to sticky the ' viewing outdated version'
+ warning
+*/
+.document > .admonition {
+ position: sticky;
+ top: 0px;
+ background-color: salmon;
+ z-index: 2;
+}
+body {
+ overflow-x: unset!important;
+}
/* override table width restrictions */
@media screen and (min-width: 767px) {
@@ -24,3 +36,7 @@
overflow: visible !important;
}
}
+
+.strike {
+ text-decoration: line-through;
+}