Merge "$wgUsersNotifiedOnAllChanges should not send mail twice"
[lhc/web/wiklou.git] / resources / src / mediawiki.less / mediawiki.mixins.less
1 // Common Less mixin library for MediaWiki
2 //
3 // By default the folder containing this file is included in $wgResourceLoaderLESSImportPaths,
4 // which makes this file importable by all less files via '@import "mediawiki.mixins";'.
5 //
6 // The mixins included below are considered a public interface for MediaWiki extensions.
7 // The signatures of parametrized mixins should be kept as stable as possible.
8 //
9 // See <http://lesscss.org/#-mixins> for more information about how to write mixins.
10
11 .background-image(@url) {
12 background-image: e('/* @embed */') url(@url);
13 }
14
15 // Deprecated in MW 1.27
16 .background-size(@width, @height) {
17 // Vendor prefix is added to support Android 2
18 -webkit-background-size: @width @height;
19 background-size: @width @height;
20 }
21
22
23 .vertical-gradient(@startColor: gray, @endColor: white, @startPos: 0, @endPos: 100%) {
24 background-color: @endColor;
25 background-image: -moz-linear-gradient( top, @startColor @startPos, @endColor @endPos ); // Firefox 3.6+
26 background-image: -webkit-gradient( linear, left top, left bottom, color-stop( @startPos, @startColor ), color-stop( @endPos, @endColor ) ); // Safari 4+, Chrome 2+
27 background-image: -webkit-linear-gradient( top, @startColor @startPos, @endColor @endPos ); // Safari 5.1+, Chrome 10+
28 background-image: linear-gradient( @startColor @startPos, @endColor @endPos ); // Standard
29 }
30
31 // SVG support using a transparent gradient to guarantee cross-browser
32 // compatibility (browsers able to understand gradient syntax support also SVG).
33 // http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique
34 //
35 // We use gzip compression, which means that it is okay to embed twice.
36 //
37 // We do not embed the fallback image on the assumption that the gain for old browsers
38 // is not worth the harm done to modern ones.
39 .background-image-svg(@svg, @fallback) {
40 background-image: url(@fallback);
41 background-image: linear-gradient(transparent, transparent), e('/* @embed */') url(@svg);
42 // Do not serve SVG to Opera 12, bad rendering with border-radius or background-size (T87504)
43 background-image: -o-linear-gradient(transparent, transparent), url(@fallback);
44 }
45
46 .list-style-image(@url) {
47 list-style-image: e('/* @embed */') url(@url);
48 }
49
50 .list-style-image-svg(@svg, @fallback) {
51 list-style-image: e('/* @embed */') url(@svg);
52 /* Fallback to PNG bullet for IE 8 and below using CSS hack */
53 list-style-image: e('/* @embed */') url(@fallback) e('\9');
54 }
55
56 .transition(@value) {
57 -webkit-transition: @value; // Safari 3.1-6.0, iOS 3.2-6.1, Android 2.1-4.3
58 -moz-transition: @value; // Firefox 4-15
59 -o-transition: @value; // Opera 10.5-12.0
60 transition: @value; // Chrome 26+, Firefox 16+, IE 10+, Safari 6.1+, Opera 12.1+, iOS 7+, Android 4.4+
61 }
62
63 .box-sizing(@value) {
64 -webkit-box-sizing: @value; // Safari 3.1-5.0, iOS 3.2-4.3, Android 2.1-3.0
65 -moz-box-sizing: @value; // Firefox 4-28,
66 box-sizing: @value; // Chrome 10+, Firefox 29+, IE 8+, Safari 5.1+, Opera 10+, iOS 5+, Android 4+
67 }
68
69 .box-shadow(@value) {
70 -webkit-box-shadow: @value; // Safari 3.1-5.0, iOS 3.2-4.3, Android 2.1-3.0
71 box-shadow: @value; // Chrome 10+, Firefox 4+, IE 9+, Safari 5.1+, Opera 11+, iOS 5+, Android 4+
72 }
73
74 .column-count(@value) {
75 -webkit-column-count: @value;
76 -moz-column-count: @value;
77 column-count: @value;
78 }
79
80 .column-width(@value) {
81 -webkit-column-width: @value; // Chrome Any, Safari 3+, Opera 11.1+
82 -moz-column-width: @value; // Firefox 1.5+
83 column-width: @value; // IE 10+
84 }
85
86 .column-break-inside-avoid() {
87 -webkit-column-break-inside: avoid; // Chrome Any, Safari 3+, Opera 11.1+
88 page-break-inside: avoid; // Firefox 1.5+
89 break-inside: avoid-column; // IE 10+
90 }
91
92 .flex-display(@display: flex) {
93 display: ~"-webkit-@{display}"; // iOS 6-, Safari 3.1-6
94 display: ~"-moz-@{display}"; // Firefox 21-
95 display: ~"-ms-@{display}box"; // IE 10
96 display: @display;
97 }
98
99 .flex(@grow: 1, @shrink: 1, @width: auto, @order: 1) {
100 // For 2009/2012 spec alignment consistency with current default
101 -webkit-box-pack: justify; // iOS 6-, Safari 3.1-6
102 -moz-box-pack: justify; // Firefox 21-
103 -ms-flex-pack: justify; // IE10 (2012 spec)
104 justify-content: space-between; // Current default
105
106 // 2009 spec only supports 'flexible' as opposed to grow (flexPositive)
107 // and shrink (flexNegative); default to grow value
108 -webkit-box-flex: @grow; // iOS 6-, Safari 3.1-6
109 -moz-box-flex: @grow; // Firefox 21-
110 width: @width; // Fallback for flex-basis
111
112 -ms-flex: @grow @shrink @width; // IE10
113 flex: @grow @shrink @width;
114
115 -webkit-box-ordinal-group: @order; // iOS 6-, Safari 3.1-6
116 -moz-box-ordinal-group: @order; // Firefox 21-
117 -ms-flex-order: @order; // IE10
118 order: @order;
119 }