mirror of
https://github.com/envmodules/modules.git
synced 2026-06-10 00:56:30 +08:00
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.
14 lines
396 B
CSS
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;
|
|
}
|
|
}
|