Browse Source

Allow markdown table to scroll (#4401)

* Allow markdown table to scroll

`overflow:auto` isn't effective when a table is wider than the container. Adding `display:block` fixes this issue.
tags/v1.9.0-dev
pgodwin 6 years ago committed by techknowlogick
parent
commit
832bf218ec
  1. 2
      public/css/index.css
  2. 1
      public/less/_markdown.less

2
public/css/index.css

File diff suppressed because one or more lines are too long

1
public/less/_markdown.less

@ -248,6 +248,7 @@
overflow:auto;
word-break:normal;
word-break:keep-all;
display:block;
}
table th {

Loading…
Cancel
Save