Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add '!important' to CSS for display property. Resolves issue mathjax#580
.
  • Loading branch information
dpvc committed Feb 6, 2014
1 parent 67ee149 commit 4f10613
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions unpacked/jax/output/HTML-CSS/jax.js
Expand Up @@ -229,7 +229,7 @@

".MathJax_Display": {
position: "relative",
display: "block",
display: "block!important",
width: "100%"
},

Expand All @@ -239,8 +239,8 @@
"text-decoration": "none"
},
"img.MathJax_strut": {
border:"0 !important", padding:"0 !important", margin: "0 !important",
"vertical-align": "0 !important"
border:"0!important", padding:"0!important", margin:"0!important",
"vertical-align": "0!important"
},

".MathJax span": {
Expand All @@ -251,12 +251,12 @@
},

".MathJax nobr": {
"white-space": "nowrap ! important"
"white-space": "nowrap!important"
},

".MathJax img": {
display: "inline ! important",
"float": "none ! important"
display: "inline!important",
"float": "none!important"
},

".MathJax *": {
Expand All @@ -274,11 +274,11 @@
".MathJax_Processed": {display:"none!important"},

".MathJax_ExBox": {
display:"block", overflow:"hidden",
display:"block!importatn", overflow:"hidden",
width:"1px", height:"60ex"
},
".MathJax .MathJax_EmBox": {
display:"block", overflow:"hidden",
display:"block!important", overflow:"hidden",
width:"1px", height:"60em"
},

Expand Down
6 changes: 3 additions & 3 deletions unpacked/jax/output/SVG/jax.js
Expand Up @@ -57,7 +57,7 @@

".MathJax_SVG_Display": {
position: "relative",
display: "block",
display: "block!important",
width: "100%"
},

Expand All @@ -75,12 +75,12 @@

".MathJax_SVG_Processing": {
visibility: "hidden", position:"absolute", top:0, left:0,
width:0, height: 0, overflow:"hidden", display:"block"
width:0, height: 0, overflow:"hidden", display:"block!important"
},
".MathJax_SVG_Processed": {display:"none!important"},

".MathJax_SVG_ExBox": {
display:"block", overflow:"hidden",
display:"block!important", overflow:"hidden",
width:"1px", height:"60ex"
},

Expand Down

0 comments on commit 4f10613

Please sign in to comment.