Files
modules/doc/source/_static/rtd_theme_overrides.css
Xavier Delaruelle 243ffa1634 doc: align td content top with RTD sphinx style
Signed-off-by: Xavier Delaruelle <xavier.delaruelle@cea.fr>
2025-05-08 15:44:59 +02:00

18 lines
475 B
CSS

/* override table width restrictions */
@media screen and (min-width: 767px) {
.wy-table-responsive table td, .wy-table-responsive table th {
/* !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 table td {
vertical-align: top !important;
}
.wy-table-responsive {
overflow: visible !important;
}
}