diff options
author | Rich Bennett <rb2745@att.com> | 2018-10-02 19:07:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-02 19:07:48 +0000 |
commit | a126959e7742101ac73e11f260e5651c1d6492f6 (patch) | |
tree | 37c1f5cb8a50139ea6abb0ff61397434a9d7a83f /docs/_static | |
parent | dc9b43827ed8c46bcd422e58461d73120c871e26 (diff) | |
parent | 64c09816ca29ff81ea98b6f209fbc65f6c5004f8 (diff) |
Merge "DOC - Fixing the width of tables and web pages"
Diffstat (limited to 'docs/_static')
-rw-r--r-- | docs/_static/css/ribbon.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/_static/css/ribbon.css b/docs/_static/css/ribbon.css index b378f432d..6008cb1a0 100644 --- a/docs/_static/css/ribbon.css +++ b/docs/_static/css/ribbon.css @@ -34,3 +34,30 @@ background: #c11; color: #fff; } + + +/* override table width restrictions */ +@media screen and (min-width: 767px) { + + .wy-table-responsive table td, .wy-table-responsive table th { + /* !important prevents the common CSS stylesheets from overriding + this as on RTD they are loaded after this stylesheet */ + white-space: normal !important; + } + + .wy-table-responsive { + overflow: visible !important; + } +} + +@media screen and (max-width: 767px) { + .wy-table-responsive table td { + white-space: nowrap; + } +} + +/* fix width of the screen */ + +.wy-nav-content { + max-width: none; +} |