mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
19 lines
494 B
CSS
19 lines
494 B
CSS
/* override table width restrictions */
|
|
.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;
|
|
}
|
|
|
|
/* Present tables with columns of equal size
|
|
when images are present. */
|
|
.rst-content table.docutils:has(img) {
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|