diff options
| author | sommersoft <sommersoft@gmail.com> | 2020-06-29 18:18:25 -0500 |
|---|---|---|
| committer | sommersoft <sommersoft@gmail.com> | 2020-06-29 18:18:25 -0500 |
| commit | 47849a9e58d5f6d06bb92e00b3de567da1a356dd (patch) | |
| tree | 8a3cd03004d27595c933e2894171f32a7609a750 | |
| parent | 51dbe9109fb6a474fe7f4cf4e3766e27ba0b34b5 (diff) | |
add custom css for 'viewing-old-docs' message
| -rw-r--r-- | docs/static/customstyle.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/static/customstyle.css b/docs/static/customstyle.css index 6c964b762..1136edcd3 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) { |
