mirror of
https://github.com/AdaCore/spark2014.git
synced 2026-02-12 12:39:11 -08:00
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
15 lines
354 B
CSS
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;
|
|
}
|
|
|
|
}
|