File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -1688,7 +1688,16 @@ table {
16881688 }
16891689}
16901690
1691+ /* Workaround for raw html tables without div wrapper*/
1692+ table .table {
1693+ display : block;
1694+ width : 100% ;
1695+ overflow-x : auto;
1696+ }
1697+
16911698.table {
1699+ overflow-x : auto;
1700+ width : 100% ;
16921701 margin : var (--margin-table );
16931702 & .borderless {
16941703 th {
@@ -1716,11 +1725,6 @@ table {
17161725 }
17171726}
17181727
1719- .md-table-scroll-x {
1720- overflow-x : auto;
1721- width : 100% ;
1722- }
1723-
17241728table hr {
17251729 color : oklch (var (--color-divider ));
17261730 border : none;
Original file line number Diff line number Diff line change 22{{$theme := .theme | default "bordered"}}
33{{$dataGrid := cond (eq $variant "narrow") "first-two-thirds" (cond (eq $variant "wide") "wide" "") }}
44
5- < div class ="table md-table-scroll-x {{ $theme }} " data-grid ="{{$dataGrid}} ">
5+ < div class ="table {{ $theme }} " data-grid ="{{$dataGrid}} ">
66 {{ .content | markdownify }}
77</ div >
You can’t perform that action at this time.
0 commit comments