src/rss_converter_twitter.com.xsl: make images more adaptive
authorAntonio Ospite <ao2@ao2.it>
Mon, 13 Aug 2018 15:14:25 +0000 (17:14 +0200)
committerAntonio Ospite <ao2@ao2.it>
Mon, 13 Aug 2018 15:14:25 +0000 (17:14 +0200)
Adapt images to the screen width to avoid horizontal scrolling in the
feed reader.

src/rss_converter_twitter.com.xsl

index d1514c5..88f3b94 100644 (file)
@@ -84,7 +84,7 @@
             <xsl:attribute name="href">
                 <xsl:value-of select="concat(@data-image-url, ':orig')"/>
             </xsl:attribute>
-            <img>
+            <img style="max-width: 100%">
                 <xsl:attribute name="src">
                     <xsl:value-of select="@data-image-url"/>
                 </xsl:attribute>
@@ -97,7 +97,7 @@
         <xsl:copy>
             <xsl:apply-templates select="@*"/>
             <xsl:attribute name="style">
-                <xsl:value-of select="concat(@style, '; background-repeat: no-repeat')"/>
+                <xsl:value-of select="concat(@style, '; background-repeat: no-repeat; background-size: 100% auto')"/>
             </xsl:attribute>
             <xsl:apply-templates select="node()"/>
         </xsl:copy>