Add support for svg in .list-style-image
authorpaladox <thomasmulhall410@yahoo.com>
Thu, 4 Sep 2014 20:13:53 +0000 (22:13 +0200)
committerJdlrobson <jrobson@wikimedia.org>
Fri, 12 Sep 2014 23:43:23 +0000 (23:43 +0000)
* You can now use .list-style-image-svg for support for svg.

* Please see I5196952088e584d3121600e9e829647e8c195bbb for it being used on vector.

Note: This has been tested by me.

Change-Id: Iffff2bc52e1572e661930242ad15937bc83abace

resources/src/mediawiki.less/mediawiki.mixins.less

index 8c28884..7963533 100644 (file)
        background-image: url(@url);
 }
 
+/* Caution: Does not support localisable images */
+
+.list-style-image(@url) when (embeddable(@url)) {
+       list-style-image: embed(@url);
+       list-style-image: url(@url)!ie;
+}
+
+.list-style-image(@url) when not (embeddable(@url)) {
+       list-style-image: url(@url);
+}
+
 .vertical-gradient(@startColor: gray, @endColor: white, @startPos: 0, @endPos: 100%) {
        background-color: @endColor;
        background-image: -moz-linear-gradient( top, @startColor @startPos, @endColor @endPos ); // Firefox 3.6+
        background-image: linear-gradient(transparent, transparent), url(@svg);
 }
 
-/* Caution: Does not support localisable images */
-.list-style-image(@url) when (embeddable(@url)) {
-       list-style-image: embed(@url);
-       list-style-image: url(@url)!ie;
+/*
+ * Caution: Does not support localisable images
+ *
+ * SVG support using a transparent gradient to guarantee cross-browser
+ * compatibility (browsers able to understand gradient syntax support also SVG).
+ * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique
+ *
+ * We use gzip compression, which means that it is okay to embed twice.
+ *
+ * We do not embed the fallback image on the assumption that the gain for old browsers
+ * is not worth the harm done to modern ones.
+ */
+.list-style-image-svg(@svg, @fallback) when (embeddable(@svg)) {
+       list-style-image: url(@fallback);
+       /* We don't need the !ie hack because this old IE uses the fallback already */
+       list-style-image: -webkit-linear-gradient(transparent, transparent), embed(@svg);
+       list-style-image: linear-gradient(transparent, transparent), embed(@svg);
 }
 
-.list-style-image(@url) when not (embeddable(@url)) {
-       list-style-image: url(@url);
+.list-style-image-svg(@svg, @fallback) when not (embeddable(@svg)) {
+       list-style-image: url(@fallback);
+       list-style-image: -webkit-linear-gradient(transparent, transparent), url(@svg);
+       list-style-image: linear-gradient(transparent, transparent), url(@svg);
 }
 
 .transition(@value) {