@@ -689,6 +689,9 @@ div.ltx_keywords:empty:before {
689
689
display : none !important ;
690
690
opacity : 0 !important ;
691
691
}
692
+
693
+ .ltx_note .ltx_marginpar_left { display : none; }
694
+
692
695
/*======================================================================
693
696
Document Structure; Titles & Frontmatter */
694
697
@@ -911,7 +914,7 @@ span.ltx_font_bold > .ltx_break:last-child {
911
914
912
915
/* Bibliographies */
913
916
.ltx_bibliography dt { margin-right : 0.5em ; float : left; }
914
- .ltx_bibliography dd { margin-left : 3em ; }
917
+ .ltx_bibliography dd { margin-left : clamp ( 1 em , 4.5 % , 3em ) ; }
915
918
916
919
.ltx_bibitem {
917
920
display : table;
@@ -1467,8 +1470,6 @@ foreignObject .ltx_text {
1467
1470
display : inline-block; }
1468
1471
/* floats, such as Algorithm listings */
1469
1472
.ltx_minipage {
1470
- /* !important needed due to use of element "style" attributes in latexml */
1471
- /* width: auto !important; */
1472
1473
align-self : normal;
1473
1474
display : inline-block;
1474
1475
}
@@ -1533,6 +1534,7 @@ foreignObject .ltx_text {
1533
1534
width : 1rem ;
1534
1535
display : inline-block;
1535
1536
}
1537
+ .ltx_lst_space { white-space : pre; }
1536
1538
/* for now hide the download button for listings,
1537
1539
needs some styling thought and also ensuring it works. */
1538
1540
.ltx_listing_data { display : none; }
@@ -1662,12 +1664,14 @@ span.ltx_transformed_inner {
1662
1664
.ltx_mathvariant_sans-serif { font-family : sans-serif; }
1663
1665
.ltx_mathvariant-bold-sans-serif { font-family : sans-serif; font-weight : bold; }
1664
1666
.ltx_mathvariant-sans-serif-italic { font-family : sans-serif; font-style : italic; }
1665
- .ltx_mathvariant-bold-sans-serif-italic { font-family : sans-serif; font-style : italic; font-weight : bold; }
1667
+ .ltx_mathvariant-bold-sans-serif-italic {
1668
+ font-family : sans-serif; font-style : italic; font-weight : bold; }
1666
1669
.ltx_mathvariant_monospace { font-family : monospace; }
1667
1670
/* Can we say anything generic about double-struck, script or fraktur ? */
1668
1671
.ltx_mathvariant_double-struck { font-weight : bold; }
1669
1672
.ltx_mathvariant_script { font-family : var (--math-caligraphic-font-family ), cursive; }
1670
- .ltx_mathvariant_bold-script { font-family : var (--math-caligraphic-font-family ), cursive; font-weight : bold; }
1673
+ .ltx_mathvariant_bold-script {
1674
+ font-family : var (--math-caligraphic-font-family ), cursive; font-weight : bold; }
1671
1675
/* .ltx_mathvariant-fraktur { } ??? */
1672
1676
.ltx_mathvariant_bold-fraktur { font-weight : bold; }
1673
1677
@@ -1815,13 +1819,30 @@ dl.ltx_description dl.ltx_description dd {
1815
1819
.ltx_th { display : table-cell; }
1816
1820
1817
1821
.ltx_framed { border : 0.063rem solid var (--border-color );}
1822
+ /* avoid padding/margin collapse */
1823
+ span .ltx_framed { display : inline-block; text-indent : 0 ; }
1824
+
1818
1825
.ltx_tabular .ltx_td ,
1819
1826
.ltx_tabular .ltx_th {
1820
1827
padding : 0.1em 0.5em ;
1821
1828
max-width : var (--main-width );
1822
1829
word-wrap : break-word;
1823
1830
white-space : normal;
1824
1831
}
1832
+ .ltx_tabular .ltx_td .ltx_nopad_l ,
1833
+ .ltx_tabular .ltx_th .ltx_nopad_l { padding-left : 0 ; }
1834
+ .ltx_tabular .ltx_td .ltx_nopad_r ,
1835
+ .ltx_tabular .ltx_th .ltx_nopad_r { padding-right : 0 ; }
1836
+
1837
+ /* min-height does NOT apply to tr! */
1838
+ .ltx_tabular .ltx_tr td : first-child ::after ,
1839
+ .ltx_tabular .ltx_tr th : first-child ::after {
1840
+ content : "" ;
1841
+ display : inline-block;
1842
+ vertical-align : top;
1843
+ min-height : 1em ;
1844
+ }
1845
+
1825
1846
/* see the last table in 1607.01446 for why
1826
1847
th should be nowrap;
1827
1848
TODO: Maybe our latexml data model needs to evolve to add classes,
@@ -1892,6 +1913,7 @@ dl.ltx_description dl.ltx_description dd {
1892
1913
.ltx_FATAL { font-weight : normal; color : var (--fatal-text-color ); }
1893
1914
.ltx_rdf { display : none; }
1894
1915
.ltx_missing , .ltx_nounicode { color : var (--error-text-color );}
1916
+ .ltx_nodisplay { display : none; }
1895
1917
.ltx_missing_label { color : var (--warning-text-color ); }
1896
1918
1897
1919
/* math specific */
0 commit comments