diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
commit | c9aa36da061816dee256a979c2ff8d2ee41824d9 (patch) | |
tree | 29f7002b80ee984b488bd047dbbd80b36bf892e9 /resources/mediawiki.less | |
parent | b4274e0e33eafb5e9ead9d949ebf031a9fb8363b (diff) | |
parent | d1ba966140d7a60cd5ae4e8667ceb27c1a138592 (diff) |
Merge branch 'archwiki'
# Conflicts:
# skins/ArchLinux.php
# skins/ArchLinux/archlogo.gif
Diffstat (limited to 'resources/mediawiki.less')
-rw-r--r-- | resources/mediawiki.less/mediawiki.mixins.less | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/resources/mediawiki.less/mediawiki.mixins.less b/resources/mediawiki.less/mediawiki.mixins.less deleted file mode 100644 index 19a715b9..00000000 --- a/resources/mediawiki.less/mediawiki.mixins.less +++ /dev/null @@ -1,46 +0,0 @@ -/** - * Common LESS mixin library for MediaWiki - * - * By default the folder containing this file is included in $wgResourceLoaderLESSImportPaths, - * which makes this file importable by all less files via '@import "mediawiki.mixins";'. - * - * The mixins included below are considered a public interface for MediaWiki extensions. - * The signatures of parametrized mixins should be kept as stable as possible. - * - * See <http://lesscss.org/#-mixins> for more information about how to write mixins. - */ - -.background-image(@url) when (embeddable(@url)) { - background-image: embed(@url); - background-image: url(@url)!ie; -} - -.background-image(@url) when not (embeddable(@url)) { - background-image: url(@url); -} - -/* Note gzip compression means that it is okay to embed twice */ -.background-image-svg(@svg, @fallback) { - background-image: url(@fallback); - /* SVG support using a transparent gradient to guarantee cross-browser - * compatibility (browsers able to understand gradient syntax support also SVG) */ - /* @embed */ background-image: -webkit-linear-gradient(transparent, transparent), url(@svg); - /* @embed */ 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; -} - -.list-style-image(@url) when not (embeddable(@url)) { - list-style-image: url(@url); -} - -.transition(@string) { - -webkit-transition: @string; - -moz-transition: @string; - -o-transition: @string; - transition: @string; -} |