Merge "Prepare for REL1_33 cut, labelling master as 1.34-alpha"
[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 the LESS import paths,
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 .vertical-gradient( @startColor: gray, @endColor: white, @startPos: 0, @endPos: 100% ) {
16 background-color: @endColor;
17 background-image: -webkit-linear-gradient( top, @startColor @startPos, @endColor @endPos ); // Safari 5.1+, Chrome 10+
18 background-image: -moz-linear-gradient( top, @startColor @startPos, @endColor @endPos ); // Firefox 3.6+
19 background-image: linear-gradient( @startColor @startPos, @endColor @endPos ); // Standard
20 }
21
22 // SVG support using a transparent gradient to guarantee cross-browser
23 // compatibility (browsers able to understand gradient syntax support also SVG).
24 // http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique
25 //
26 // We do not embed the fallback image on the assumption that the gain for old browsers
27 // is not worth the harm done to modern ones.
28 .background-image-svg( @svg, @fallback ) {
29 background-image: url( @fallback );
30 background-image: linear-gradient( transparent, transparent ), e( '/* @embed */' ) url( @svg );
31 }
32
33 // Shorthand for background-image-svg. Use if your PNG and SVG have the same name
34 // and only if you cannot use ResourceLoaderImage module for some particular reason.
35 .background-image-svg-quick( @url ) {
36 .background-image-svg( ~'@{url}.svg', ~'@{url}.png' );
37 }
38
39 .list-style-image( @url ) {
40 list-style-image: e( '/* @embed */' ) url( @url );
41 }
42
43 .hyphens( @value: auto ) {
44 & when ( @value = auto ) {
45 // Legacy `word-wrap`; IE 6-11, Edge 12+, Firefox 3.5+, Chrome 4+, Safari 3.1+,
46 // Opera 11.5+, iOS 3.2+, Android 2.1+
47 // `overflow-wrap` is W3 standard, but it doesn't seem as if browser vendors
48 // will abandon `word-wrap` (it has wider support), therefore no duplication.
49 word-wrap: break-word;
50 }
51 & when ( @value = none ) {
52 word-wrap: normal;
53 }
54
55 // CSS3 hyphenation
56 -webkit-hyphens: @value; // Safari 5.1+, iOS 4.3+
57 -moz-hyphens: @value; // Firefox 6-42
58 -ms-hyphens: @value; // IE 10-11, Edge 12+
59 hyphens: @value; // Firefox 43+, Chrome 55+, Android 62+, UC Browser 11.8+, Samsung 6.2+
60 }
61
62 .transform( @value ) {
63 -webkit-transform: @value; // Safari 3.1-8.0, iOS 3.2-8.4, Android 2.1-4.4.4
64 -moz-transform: @value; // Firefox 3.5-15
65 transform: @value; // Chrome 36+, Firefox 16+, IE 10+, Safari 9+, Opera 23+, iOS 9.2+, Android 5+
66 }
67
68 .transition( @value ) {
69 -webkit-transition: @value; // Safari 3.1-6.0, iOS 3.2-6.1, Android 2.1-4.3
70 -moz-transition: @value; // Firefox 4-15
71 transition: @value; // Chrome 26+, Firefox 16+, IE 10+, Safari 6.1+, Opera 12.1+, iOS 7+, Android 4.4+
72 }
73
74 // Provide a hardware accelerated transform transition
75 // We can't use `.transition()` because WebKit requires `-webkit-` prefix before `transform`
76 // Example usage: `.transition-transform( 1s, opacity 2s );`
77 // First parameter is additional options for `transform` transition commencing with
78 // duration property @see https://www.w3.org/TR/css3-transitions/#transition-duration-property
79 // and remaining parameters are additional transitions."
80 .transition-transform( ... ) {
81 -webkit-backface-visibility: hidden; // Older Webkit browsers: Promote element to a composite layer & involve the GPU
82 -webkit-transition: -webkit-transform @arguments; // Safari 3.1-8, iOS 3.2-8.4, Android 2.1-4.4.4
83 -moz-transition: -moz-transform @arguments; // Firefox 4-15 for `-moz-transition`
84 transition: transform @arguments; // Chrome 36+, Firefox 16+, IE 10+, Safari 9+, Opera 12.1+, iOS 9.2+, Android 36+
85 }
86
87 .box-sizing( @value ) {
88 -webkit-box-sizing: @value; // Safari 3.1-5.0, iOS 3.2-4.3, Android 2.1-3.0
89 -moz-box-sizing: @value; // Firefox 4-28,
90 box-sizing: @value; // Chrome 10+, Firefox 29+, IE 8+, Safari 5.1+, Opera 10+, iOS 5+, Android 4+
91 }
92
93 .box-shadow( @value ) {
94 -webkit-box-shadow: @value; // Safari 3.1-5.0, iOS 3.2-4.3, Android 2.1-3.0
95 box-shadow: @value; // Chrome 10+, Firefox 4+, IE 9+, Safari 5.1+, Opera 11+, iOS 5+, Android 4+
96 }
97
98 .column-count( @value ) {
99 -webkit-column-count: @value;
100 -moz-column-count: @value;
101 column-count: @value;
102 }
103
104 .column-width( @value ) {
105 -webkit-column-width: @value; // Chrome Any, Safari 3+, Opera 15+
106 -moz-column-width: @value; // Firefox 1.5+
107 column-width: @value; // IE 10+, Opera 11.1-12.1
108 }
109
110 .column-break-inside-avoid() {
111 -webkit-column-break-inside: avoid; // Chrome Any, Safari 3+, Opera 15+
112 page-break-inside: avoid; // Firefox 1.5+
113 break-inside: avoid-column; // IE 10+, Opera 11.1-12.1
114 }
115
116 .flex-display( @display: flex ) {
117 display: ~'-webkit-@{display}'; // iOS 6-, Safari 3.1-6
118 display: ~'-moz-@{display}'; // Firefox 21-
119 display: ~'-ms-@{display}box'; // IE 10
120 display: @display;
121 }
122
123 .flex-wrap( @wrap: wrap ) {
124 -webkit-flex-wrap: @wrap; // iOS 6-, Safari 3.1-6
125 -moz-flex-wrap: @wrap; // Firefox 21-
126 -ms-flex-wrap: @wrap; // IE 10
127 flex-wrap: @wrap;
128 }
129
130 .flex( @grow: 1, @shrink: 1, @width: auto, @order: 1 ) {
131 // For 2009/2012 spec alignment consistency with current default
132 -webkit-box-pack: justify; // iOS 6-, Safari 3.1-6
133 -moz-box-pack: justify; // Firefox 21-
134 -ms-flex-pack: justify; // IE 10 (2012 spec)
135 justify-content: space-between; // Current default
136
137 // 2009 spec only supports 'flexible' as opposed to grow (flexPositive)
138 // and shrink (flexNegative); default to grow value
139 -webkit-box-flex: @grow; // iOS 6-, Safari 3.1-6
140 -moz-box-flex: @grow; // Firefox 21-
141 width: @width; // Fallback for flex-basis
142 -ms-flex: @grow @shrink @width; // IE 10
143 flex: @grow @shrink @width;
144 -webkit-box-ordinal-group: @order; // iOS 6-, Safari 3.1-6
145 -moz-box-ordinal-group: @order; // Firefox 21-
146 -ms-flex-order: @order; // IE 10
147 order: @order;
148 }
149
150 /* stylelint-disable selector-no-vendor-prefix, at-rule-no-unknown */
151 .mixin-placeholder( @rules ) {
152 // WebKit, Blink, Edge
153 &::-webkit-input-placeholder {
154 @rules();
155 }
156 // Internet Explorer 10-11
157 &:-ms-input-placeholder {
158 @rules();
159 }
160 // Firefox 19-
161 &::-moz-placeholder {
162 @rules();
163 }
164 // Firefox 4-18
165 &:-moz-placeholder {
166 @rules();
167 }
168 // W3C Standard Selectors Level 4
169 &::placeholder {
170 @rules();
171 }
172 }
173 /* stylelint-enable selector-no-vendor-prefix, at-rule-no-unknown */
174
175 // Screen Reader Helper Mixin
176 .mixin-screen-reader-text() {
177 display: block;
178 position: absolute !important; /* stylelint-disable-line declaration-no-important */
179 clip: rect( 1px, 1px, 1px, 1px );
180 width: 1px;
181 height: 1px;
182 margin: -1px;
183 border: 0;
184 padding: 0;
185 overflow: hidden;
186 }