mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-15 14:11:56 +00:00
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>
12 lines
292 B
CSS
12 lines
292 B
CSS
/* -- Extra CSS styles for Zephyr content ----------------------------------- */
|
|
|
|
/* 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;
|
|
}
|