Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip all of the changes of font-size, it seemed to cause more problems. #3664

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions css/MLS.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,7 @@ a:hover { text-decoration: underline; }
*/
.ltx_th { font-weight: normal; }

/* Compensate for default font size ratio 13:16 for monospace to normal.
* 16/13 = 1.2307...
* When inline code is displayed side by side with MathJax math, even this is on the small side, but when the
* MathJax math is inside the inline code (using mathescape), the math is scaled down with the text.
* Hence, rather than scaling up the monospace font, it seems better to scale down the math that isn't doesn't have
* font set to monospace (the font probably only matters for font size selection in the case of math content).
* 13/16 = 0.8125
*/
.ltx_font_typewriter { font-size:110%; }
.ltx_Math { font-size:120%; }
.MathJax .ltx_Math { font-size: 100%; }
.ltx_font_typewriter { font-size:110%; }
.ltx_font_typewriter .ltx_Math { font-size: 120%; }
.ltx_font_typewriter .MathJax .ltx_Math { font-size: 110%; }
/* Compensate for default font size ratio 13:16 for monospace to normal. - Skip since doesn't look nice */

/* Undo the ltx-report.css setting that destroys parskip.sty style paragraphs.
*/
Expand Down