mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Simplify CSS classes for floats.
Fixes bug #8605 and probably parts of #8755 and #9328.
(cherry picked from commit 50c1391950
)
This commit is contained in:
parent
98d4fba57b
commit
199e63fa19
@ -44,7 +44,7 @@ Floating::Floating(string const & type, string const & placement,
|
||||
string const & Floating::htmlAttrib() const
|
||||
{
|
||||
if (html_attrib_.empty())
|
||||
html_attrib_ = "class='float " + defaultCSSClass() + "'";
|
||||
html_attrib_ = "class='" + defaultCSSClass() + "'";
|
||||
return html_attrib_;
|
||||
}
|
||||
|
||||
|
@ -97,6 +97,8 @@ What's new
|
||||
|
||||
- Fix output of floats, etc, inside environments (bug 9094).
|
||||
|
||||
- Simplify XHTML output for floats, etc (bug 8605).
|
||||
|
||||
- Add "dir='auto'" to body tag, which should help a lot with export of
|
||||
RTL languages (bug 8279, partly).
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user