]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathOverset.cpp
Fix bug #8746: Images have to have alt tags.
[lyx.git] / src / mathed / InsetMathOverset.cpp
index ef39ad5eff7fd94348679b56f4e71b83a4a32067..1958471558cf6dea735124fd3aca59f694dd6fd6 100644 (file)
@@ -106,11 +106,10 @@ void InsetMathOverset::validate(LaTeXFeatures & features) const
        if (features.runparams().isLaTeX())
                features.require("amsmath");
        else if (features.runparams().math_flavor == OutputParams::MathAsHTML)
-               features.addPreambleSnippet("<style type=\"text/css\">\n"
+               features.addCSSSnippet(
                        "span.overset{display: inline-block; vertical-align: bottom; text-align:center;}\n"
                        "span.overset span {display: block;}\n"
-                       "span.top{font-size: 66%;}\n"
-                       "</style>");
+                       "span.top{font-size: 66%;}");
 
        InsetMathNest::validate(features);
 }