From dc6ede04536523695ce633acae2a7d4dceee8efe Mon Sep 17 00:00:00 2001 From: sommersoft Date: Fri, 26 Jun 2020 13:48:45 -0500 Subject: [PATCH] use customcss for viewing-outdate-docs message --- conf.py | 3 +++ docs/static/customstyle.css | 13 +++++++++++++ 2 files changed, 16 insertions(+) diff --git a/conf.py b/conf.py index 7353ad0387..80eab92bf8 100644 --- a/conf.py +++ b/conf.py @@ -336,3 +336,6 @@ texinfo_documents = [ intersphinx_mapping = {"cpython": ('https://docs.python.org/3/', None), "bus_device": ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None), "register": ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None)} +def setup(app): + app.add_stylesheet("customstyle.css") + diff --git a/docs/static/customstyle.css b/docs/static/customstyle.css index 6c964b762c..1136edcd31 100644 --- a/docs/static/customstyle.css +++ b/docs/static/customstyle.css @@ -10,6 +10,19 @@ } +/* 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) {