Skip to content

Commit

Permalink
Fix EZP-22928: Embed inline image are always seen as inline in Online…
Browse files Browse the repository at this point in the history
… Editor
  • Loading branch information
dpobel committed May 26, 2014
1 parent a4a0af6 commit a2f6946
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Expand Up @@ -206,6 +206,18 @@ img[inline="false"]
display: block;
}

img[inline="false"][align="right"]
{
float: right;
clear: both;
}

img[inline="false"][align="left"]
{
float: left;
clear: both;
}

/* core.css ez layout styles for embed tags */

div.ezoeItemNonEditable div.block /* Used around groups of objects which are connected in some way, and requires extra margins to the surroundings */
Expand Down
12 changes: 12 additions & 0 deletions extension/ezoe/design/standard/stylesheets/skins/o2k7/content.css
Expand Up @@ -199,6 +199,18 @@ img[inline="false"]
display: block;
}

img[inline="false"][align="right"]
{
float: right;
clear: both;
}

img[inline="false"][align="left"]
{
float: left;
clear: both;
}

/* core.css ez layout styles for embed tags */

div.ezoeItemNonEditable div.block /* Used around groups of objects which are connected in some way, and requires extra margins to the surroundings */
Expand Down

0 comments on commit a2f6946

Please sign in to comment.