doc: tweak CSS for option table display

Noticed in docs.zephyrproject.org/subsystems/test/sanitycheck.html that
the first column of the option table display is too narrow (for short
option names that are shown on the same line as the description).  This
PR tweaks the CSS to widen the first column enough to stop wrapping in
most cases.

Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
This commit is contained in:
David B. Kinder 2018-05-24 11:59:30 -07:00 committed by Anas Nashif
parent 45221a9706
commit 11c6306f76

View file

@ -29,3 +29,8 @@ th,td {
.rst-content div.breathe-sectiondef {
padding-left: 0 !important;
}
/* tweak display of option tables to make first column wider */
col.option {
width: 25%;
}