aboutsummaryrefslogtreecommitdiffstats
path: root/docs/_static
diff options
context:
space:
mode:
authorwpank <will.pankiewicz@gmail.com>2018-06-28 03:01:48 +0800
committerwpank <will.pankiewicz@gmail.com>2018-06-28 03:01:48 +0800
commit3cc780de33cf3a524d80f8b34b57183fe7b93168 (patch)
tree7d65963fc094913f71712a8b87bf8aea1088f432 /docs/_static
parent4a842ecc823c2d4152cdf2639eb83f2318499f1c (diff)
downloaddexon-solidity-3cc780de33cf3a524d80f8b34b57183fe7b93168.tar.gz
dexon-solidity-3cc780de33cf3a524d80f8b34b57183fe7b93168.tar.zst
dexon-solidity-3cc780de33cf3a524d80f8b34b57183fe7b93168.zip
Added static CSS to Sphinx in order to fix bug with RTD theme table wrapping
Diffstat (limited to 'docs/_static')
-rw-r--r--docs/_static/theme_overrides.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/_static/theme_overrides.css b/docs/_static/theme_overrides.css
new file mode 100644
index 00000000..d750f4f1
--- /dev/null
+++ b/docs/_static/theme_overrides.css
@@ -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 sphinx_rtd_theme they are loaded after this stylesheet */
+ white-space: normal !important;
+ }
+
+ .wy-table-responsive {
+ overflow: visible !important;
+ }
+}