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>
37 lines
890 B
CSS
37 lines
890 B
CSS
/* -- Extra CSS styles for Zephyr content (RTD theme) ----------------------- */
|
|
|
|
/* make .. hlist:: tables fill the page */
|
|
table.hlist {
|
|
width: 95% !important;
|
|
}
|
|
|
|
/* override rtd theme white-space no-wrap in table heading and content */
|
|
th,td {
|
|
white-space: normal !important;
|
|
}
|
|
|
|
/* dbk tweak for doxygen-generated API headings (for RTD theme) */
|
|
.rst-content dl.group>dt, .rst-content dl.group>dd>p {
|
|
display:none !important;
|
|
}
|
|
.rst-content dl.group {
|
|
margin: 0 0 12px 0px;
|
|
}
|
|
.rst-content dl.group>dd {
|
|
margin-left: 0 !important;
|
|
}
|
|
.rst-content p.breathe-sectiondef-title {
|
|
text-decoration: underline; /* dbk for API sub-headings */
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
margin-bottom: 12px;
|
|
}
|
|
.rst-content div.breathe-sectiondef {
|
|
padding-left: 0 !important;
|
|
}
|
|
|
|
/* tweak display of option tables to make first column wider */
|
|
col.option {
|
|
width: 25%;
|
|
}
|