Files
spark2014/docs/ug/static/css/table-wrap.css
Johannes Kanig 88b96bebc1 V523-009 add css to enable wrap in table cells
Solution taken from here:

https://github.com/readthedocs/sphinx_rtd_theme/issues/117

The LRM doesn't contain tables AFAICS so I didn't apply this patch.

Change-Id: Ib6428f605613199b647dd04a297512c865cf7b12
2022-05-31 11:30:50 +09:00

15 lines
354 B
CSS

/* 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;
}
}