editor: inline style for aside.gap
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 27 Jan 2014 11:33:45 +0000 (12:33 +0100)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 27 Jan 2014 11:33:45 +0000 (12:33 +0100)
This is awful. Should be considered as as temporary workaround
until the whole wlxmlManagers & styles mix will be refactored
into something more sane.

src/editor/modules/documentCanvas/canvas/wlxmlManagers.js
src/editor/modules/documentCanvas/nodes.less

index 1078218..a35c079 100644 (file)
@@ -55,6 +55,9 @@ var getDisplayStyle = function(tag, klass) {
     if(klass && klass.substr(0, 4) === 'item') {
         return null;
     }
+    if(klass === 'gap') {
+        return 'inline';
+    }
     return 'block';
 };
 
index 7bae063..367e4aa 100644 (file)
 [wlxml-tag="aside"] {
     margin-top: 10px;
     margin-bottom: 10px;
+
+    [wlxml-class='gap'] {
+        display: inline;
+    }
 }
\ No newline at end of file