Add explicit table border-spacing since Firefox seems to need this to avoid too large a space around the math when focusing. If the spacing is too small, it seems that Firefox fails to treat the inlein-table as a table, so use 3px and use the margin to remove it so there is no change in position.

This commit is contained in:
Davide P. Cervone 2015-10-17 23:35:24 -04:00
parent 83b482f4b4
commit 415be7eaf7

View File

@ -267,7 +267,8 @@
// Focus elements for keyboard tabbing.
".MathJax:focus, *:focus .MathJax": {
display:"inline-table" // see issue #1282
display:"inline-table", // see issue #1282
"border-spacing":"3px", margin:"-3px"
},
".MathJax_Display": {