-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from OmarIthawi/omar/common-html
Add support for CommonHTML Jax output + Refactor
- Loading branch information
Showing
17 changed files
with
5,429 additions
and
9,162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* CommonHTML Output Jax CSS */ | ||
.MathJax_CHTML .mfliph { | ||
display: inline-block !important; | ||
-moz-transform: scaleX(-1); | ||
-webkit-transform: scaleX(-1); | ||
-o-transform: scaleX(-1); | ||
transform: scaleX(-1); | ||
-ms-filter: fliph; | ||
filter: fliph; | ||
} | ||
|
||
.MathJax_CHTML .mar { | ||
font-style: normal !important; | ||
} | ||
|
||
.MathJax_CHTML .mar > span { | ||
font-style: normal !important; | ||
} | ||
|
||
.mfliph > .mjx-char { | ||
direction: rtl; | ||
text-align: right; | ||
} | ||
|
||
.mfliph .MJXc-TeX-unknown-I, .mfliph.MJXc-TeX-unknown-I { | ||
font-style: normal !important; | ||
} | ||
|
||
.mfliph.mar > .mjx-char.MJXc-TeX-unknown-I { | ||
border: solid transparent; | ||
border-width: 0.45em 0; | ||
} | ||
|
||
.mjx-mn > .mfliph.mar > .mjx-char.MJXc-TeX-unknown-I { | ||
border-width: 0; | ||
} | ||
|
||
.mjx-stack > .mjx-sup > span > .mfliph.mar > .MJXc-TeX-unknown-I { | ||
border-bottom-width: 0.85em; | ||
} | ||
|
||
.MJXc-stacked > .mjx-numerator > span > .mfliph.mar > .MJXc-TeX-unknown-R { | ||
padding-top: 0.6em; | ||
} | ||
|
||
.MJXc-stacked > .mjx-denominator > span > .mfliph.mar > .MJXc-TeX-unknown-R { | ||
padding-bottom: 0.6em; | ||
} | ||
|
||
.MJXc-stacked > .mjx-denominator > span > .mfliph > .mjx-char.MJXc-TeX-unknown-R { | ||
padding-bottom: 0.6em; | ||
} | ||
|
||
|
||
/* HTML-CSS Output Jax CSS */ | ||
.MathJax .mfliph { | ||
display: inline-block !important; | ||
-moz-transform: scaleX(-1); | ||
-webkit-transform: scaleX(-1); | ||
-o-transform: scaleX(-1); | ||
transform: scaleX(-1); | ||
-ms-filter: fliph; | ||
filter: fliph; | ||
} | ||
|
||
.MathJax .mar { | ||
font-style: normal !important; | ||
} | ||
.MathJax .mar > span { | ||
font-style: normal !important; | ||
} |
Oops, something went wrong.