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 5 years ago
parent
commit
832bf218ec
2 changed files with 2 additions and 1 deletions
  1. 1
    1
      public/css/index.css
  2. 1
    0
      public/less/_markdown.less

+ 1
- 1
public/css/index.css
File diff suppressed because it is too large
View File


+ 1
- 0
public/less/_markdown.less View File

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

table th {

Loading…
Cancel
Save