Files
modules/doc/source/_static/rtd_theme_overrides.css
Xavier Delaruelle b8bd3c4654 doc: fix config opt table layout in INSTALL
Update CSS and content of table to make default value words correctly
wrap and be able to see the 4th and 5th cols on small screens.
2022-03-14 07:13:16 +01:00

14 lines
396 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 {
overflow: visible !important;
}
}