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 {
1688
1688
}
1689
1689
}
1690
1690
1691
+ /* Workaround for raw html tables without div wrapper*/
1692
+ table .table {
1693
+ display : block;
1694
+ width : 100% ;
1695
+ overflow-x : auto;
1696
+ }
1697
+
1691
1698
.table {
1699
+ overflow-x : auto;
1700
+ width : 100% ;
1692
1701
margin : var (--margin-table );
1693
1702
& .borderless {
1694
1703
th {
@@ -1716,11 +1725,6 @@ table {
1716
1725
}
1717
1726
}
1718
1727
1719
- .md-table-scroll-x {
1720
- overflow-x : auto;
1721
- width : 100% ;
1722
- }
1723
-
1724
1728
table hr {
1725
1729
color : oklch (var (--color-divider ));
1726
1730
border : none;
Original file line number Diff line number Diff line change 2
2
{{$theme := .theme | default "bordered"}}
3
3
{{$dataGrid := cond (eq $variant "narrow") "first-two-thirds" (cond (eq $variant "wide") "wide" "") }}
4
4
5
- < div class ="table md-table-scroll-x {{ $theme }} " data-grid ="{{$dataGrid}} ">
5
+ < div class ="table {{ $theme }} " data-grid ="{{$dataGrid}} ">
6
6
{{ .content | markdownify }}
7
7
</ div >
You can’t perform that action at this time.
0 commit comments