diff options
author | chriseth <chris@ethereum.org> | 2018-08-10 04:42:19 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-08-10 04:42:29 +0800 |
commit | 4fc15a5beb4dd643318b9f6cd75ae56336be69d1 (patch) | |
tree | fc1f74905c394e9809934e3f21d6f141e01439c4 | |
parent | 43db88b8363d73ee2f5ffa094ff506414261bd11 (diff) | |
download | dexon-solidity-4fc15a5beb4dd643318b9f6cd75ae56336be69d1.tar.gz dexon-solidity-4fc15a5beb4dd643318b9f6cd75ae56336be69d1.tar.zst dexon-solidity-4fc15a5beb4dd643318b9f6cd75ae56336be69d1.zip |
Fix table css.
-rw-r--r-- | docs/_static/css/custom.css (renamed from docs/docs-css/custom.css) | 6 | ||||
-rw-r--r-- | docs/conf.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/docs-css/custom.css b/docs/_static/css/custom.css index 970148ed..fd506203 100644 --- a/docs/docs-css/custom.css +++ b/docs/_static/css/custom.css @@ -7,8 +7,8 @@ pre { } .wy-table-responsive table td, .wy-table-responsive table th { - white-space: pre-wrap; + white-space: normal; } -.wy-table-responsive table td, .wy-table-responsive table th { - white-space: pre-wrap; +.rst-content table.docutils td { + vertical-align: top; } diff --git a/docs/conf.py b/docs/conf.py index 55f4f1a8..233ff7b6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -143,7 +143,7 @@ html_theme = 'sphinx_rtd_theme' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = [] +html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied |