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