diff --git a/beta/assets/default.css b/beta/assets/default.css index b58fecfa..d234e628 100644 --- a/beta/assets/default.css +++ b/beta/assets/default.css @@ -94,6 +94,11 @@ BDO[DIR="rtl"] { direction: rtl; unicode-bidi: bidi-override } /* Override changes made by JS to HTMLElement */ max-height: none !important; } + + table, tr, td, th, thead { + border: 1px solid black; + border-collapse: collapse; + } } @media print { diff --git a/beta/assets/screen.css b/beta/assets/screen.css index f49f03d2..2d5c9975 100644 --- a/beta/assets/screen.css +++ b/beta/assets/screen.css @@ -180,7 +180,7 @@ img, .tableContainer { } .tableContainer { - overflow-x: scroll; + overflow: auto; } blockquote { @@ -200,11 +200,16 @@ blockquote > *:last-child { margin-bottom: 0; } -div.sourceCode { +div.sourceCode, :not(div) > pre { border-radius: 3px; background-color: #D2D7E3; padding: 10px; border-left: 3px solid #a40000; + overflow: auto; +} + +pre > code { + white-space: pre; } :not(pre) > code {