Skip to content

Commit

Permalink
Merge branch 'feature/DEplugin' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelduchesne committed Apr 17, 2018
2 parents a8b966e + b908045 commit c5f0f31
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions _static/theme_overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* override table width restrictions */
@media screen and (min-width: 767px) {

.wy-table-responsive table td {
/* !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;
}
}
5 changes: 5 additions & 0 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

html_context = {
'css_files': [
'_static/theme_overrides.css', # override wide tables in RTD theme
],
}

# -- Options for HTMLHelp output ------------------------------------------

Expand Down

0 comments on commit c5f0f31

Please sign in to comment.