doc: allow table head and content to wrap

rtd theme prevents table headings and content from wrapping and can
cause tables to display to wide.  This patch overrides that CSS.

Change-Id: I4885b959a0dd075ff4c8edb9cfb4b17a611e6775
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2017-02-17 16:24:18 -08:00 committed by Anas Nashif
commit e86c503185

View file

@ -4,3 +4,8 @@
table.hlist { table.hlist {
width: 95% !important; width: 95% !important;
} }
/* override rtd theme white-space no-wrap in table heading and content */
th,td {
white-space: normal !important;
}