XSL/CSS fixes to display excercises properly -- part 1
authorMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Wed, 5 Dec 2012 10:40:18 +0000 (11:40 +0100)
committerMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Wed, 5 Dec 2012 10:40:18 +0000 (11:40 +0100)
redakcja/static/css/html.css
redakcja/static/xsl/wl2html_client.xsl

index 8c38106..0cfe002 100644 (file)
@@ -1,6 +1,7 @@
 /* Style widoku HTML. Nie należy tu ustawiać position ani marginesów */
 .htmlview {
     counter-reset: main;
+    counter-reset: aktywnosc;
     font-size: 16px;
     font-family: "Georgia", "Times New Roman", serif;
     line-height: 1.5em;
@@ -695,6 +696,12 @@ div[x-node] > .uwaga {
 .htmlview span.aktywnosc span.opis {
     font-style: italic;
 }
+.htmlview span.aktywnosc span.opis p:before {
+    content: counter(aktywnosc) ". ";
+    counter-increment: aktywnosc;
+    font-weight: bold;
+}
+
 .htmlview span.aktywnosc span.wskazowki {
     font-style: italic;
     color: #202020;
@@ -706,7 +713,7 @@ div[x-node] > .uwaga {
 .htmlview .pomoce:before { content: "Pomoce: "; }
 .htmlview .czas:before { content: "Czas: "; }
 .htmlview .czas:after { content: " min"; }
-.htmlview .forma:before { content: "Forma:"; }
+.htmlview .forma:before { content: "Forma: "; }
 
 .htmlview .aktywnosc {
     display: block;
@@ -728,3 +735,12 @@ div[x-node] > .uwaga {
 .htmlview .kol div {
     position: relative;
 }
+
+.htmlview img.obraz {
+    max-width: 640px;
+}
+
+.htmlview span.luka {
+    color: #808080;
+    text-decoration: underline;
+}
\ No newline at end of file
index a476c70..97f5de3 100644 (file)
         </span>
     </xsl:template>
 
+    <!--
+        **************************
+           MATERIAŁY EDUKACYJNE
+        **************************
+    -->
+
+    <!--
+        Listy
+    -->
     <xsl:template match="lista">
       <xsl:variable name="listtag">
        <xsl:choose>
       </li>
     </xsl:template>
 
-
+    <!--
+        Słowniczek
+    -->
     <xsl:template match="definiendum">
       <dt x-editable="true" x-node="definiendum" class="definiendum">
             <xsl:call-template name="standard-attributes" />
       </dd>
     </xsl:template>
 
-
+    <!--
+        Tabela
+    -->
     <xsl:template match="tabela">
       <table x-node="tabela" class="tabela">
         <xsl:call-template name="standard-attributes" />
       </td>
     </xsl:template>
 
+    <!--
+        Obraz
+    -->
+    <xsl:template match="obraz">
+      <img x-node="obraz" src="http://i.imgur.com/{@name}.jpg" class="obraz">
+            <xsl:call-template name="standard-attributes" />
+      </img>
+    </xsl:template>
+
+    <!--
+        Semantyczne pudełka
+    -->
+    <xsl:template match="pomoce|forma|czas|opis">
+      <span x-editable="true">
+            <xsl:call-template name="standard-attributes" />
+            <xsl:apply-templates select="child::node()">
+              <xsl:with-param name="mixed" select="true()" />
+            </xsl:apply-templates>
+      </span>
+    </xsl:template>