What we mean by a label in HTML output and what LyX means by a label

aren't the same thing, so we won't be generating default CSS for those.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31778 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2009-10-27 19:51:30 +00:00
parent df0fdb0d53
commit bc0c63c8ee

View File

@ -406,16 +406,6 @@ void InsetLayout::makeDefaultCSS() const
htmldefaultstyle_ =
from_ascii(htmltag() + "." + defaultCSSClass() + " {\n") +
mainfontCSS + from_ascii("\n}\n");
/*
At present, we do not have default tags, etc, for the label.
if (labelfont_ == font_)
return;
docstring const labelfontCSS = labelfont_.asCSS();
if (!labelfontCSS.empty())
htmldefaultstyle_ +=
from_ascii(htmllabeltag() + "." + defaultCSSLabelClass() + " {\n") +
labelfontCSS + from_ascii("\n}\n");
*/
}