mirror of https://github.com/zulip/zulip.git
css: Fix horizontal scrolling of markdown table when overflow.
Previously Zulip's markdown tables didn't properly configure the overflow CSS rules to allow proper scrolling. Fixes #16205.
This commit is contained in:
parent
8ebff434fb
commit
437332ff5d
|
@ -83,6 +83,10 @@
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
margin: 5px 5px 5px 5px;
|
margin: 5px 5px 5px 5px;
|
||||||
width: 99%;
|
width: 99%;
|
||||||
|
display: block;
|
||||||
|
max-width: fit-content;
|
||||||
|
overflow-x: auto;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
|
|
Loading…
Reference in New Issue