X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/94e3767f1597835ac82361d7d04be1347fe40942..6b06b64:/src/editor/modules/documentCanvas/nodes.less?ds=inline

diff --git a/src/editor/modules/documentCanvas/nodes.less b/src/editor/modules/documentCanvas/nodes.less
index f41363b..d33ea00 100644
--- a/src/editor/modules/documentCanvas/nodes.less
+++ b/src/editor/modules/documentCanvas/nodes.less
@@ -1,8 +1,6 @@
 [document-text-element] {
     font-size: 14px;
     display: inline;
-    margin: 0 1px;
-    border: 1px solid transparent;
     white-space: pre-wrap;
 }
 
@@ -17,6 +15,11 @@
     padding: 1px 1px;
 }
 
+[wlxml-tag="span"] {
+    padding: 0;
+    border: none;
+}
+
 [wlxml-tag=span] {
     min-width: 10px;
 }
@@ -32,10 +35,6 @@
     margin-bottom: 10px;
 }
 
-[wlxml-tag=section] [wlxml-tag=section] {
-    margin-left:10px;
-}
-
 [wlxml-class|="cite"] {
     font-style: italic;
 }
@@ -60,7 +59,7 @@
     background-color: #96e0e4;
     border: 1px solid black;
     border-radius: 10px;
-    padding: 10px;
+    padding: 20px 10px 10px 10px;
 }
 
 [wlxml-class|="link"] {
@@ -68,12 +67,8 @@
     text-decoration: underline;
 }
 
-[wlxml-class|="p"] {
-    text-indent: 1.5em;
-}
-
-[wlxml-class|="emph-tech"] {
-    font-style: italic;
+[wlxml-class|="emp"] {
+    font-weight: bold;
 }
 
 [wlxml-tag=metadata] {
@@ -82,10 +77,16 @@
 
 [wlxml-class|="list"] {
 
-     [wlxml-class|="item"] {
-        display: list-item;
+
+    > * > [wlxml-class|="item"] {
         margin-left: 10px;
         padding-left: 5px;
+        
+        &:before {
+            content: '\2022';
+            margin-right:10px;
+            padding-right:10px;
+        }
     }
 }
 
@@ -100,7 +101,7 @@
 
     counter-reset: myitem;
 
-    > [wlxml-class="item"] {
+    > * > [wlxml-class="item"] {
         counter-increment: myitem;
         margin-left: 10px;
         padding-left: 5px;
@@ -138,7 +139,14 @@
 
 }
 
+[wlxml-class="img"] {
+    background-repeat: no-repeat;
+    background-size: auto 100%;
+    height: 100px;
+    background-position: 50%;
+}
+
 [wlxml-tag="aside"] {
     margin-top: 10px;
     margin-bottom: 10px;
-}
\ No newline at end of file
+}