summaryrefslogtreecommitdiffstats
path: root/docs/_static
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2018-08-09 16:12:20 -0400
committerDave Barach <openvpp@barachs.net>2018-08-10 15:05:09 +0000
commit8e83bcb9ae6abca841abaaef3cd7f9fa5bc613d6 (patch)
tree7a97bb60121e95d081ac1e83fe2b182a6e312e51 /docs/_static
parenta38d001cfe80c29291fb02a02fe8b624562db91c (diff)
DOC-ONLY: build system details
The tables need some TLC from someone familiar with making pretty tables. Fixed text-wrapping onto newlines for all tables in our docs. Changed Environment Variables to ENV Variables so that the specific column header fits properly. Change-Id: Ie758612e561eefe44e771dac63b63bf026a52c2d Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'docs/_static')
-rw-r--r--docs/_static/css/rules.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/_static/css/rules.css b/docs/_static/css/rules.css
index 15ce9c3951a..ceb0d5abcf2 100644
--- a/docs/_static/css/rules.css
+++ b/docs/_static/css/rules.css
@@ -1,5 +1,19 @@
+/* Allows for tables to be center-aligned */
table.center-align-table td {
text-align: center;
}
+/* 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;
+ }
+}