2015-06-09 15:21:44 +08:00
|
|
|
// Compatibility for browsers.
|
|
|
|
|
|
|
|
// rotate for ie8 and blow
|
|
|
|
.ie-rotate(@rotation) {
|
2016-02-05 00:41:41 +08:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
|
2015-07-20 11:46:48 +08:00
|
|
|
}
|
|
|
|
|
2015-08-17 12:27:03 +08:00
|
|
|
// rotate for ie8 and blow
|
|
|
|
// degrees unit
|
|
|
|
.ie-rotate-via-degrees(@degrees) {
|
2015-07-20 17:06:19 +08:00
|
|
|
/* IE6-IE8 */
|
|
|
|
@radians: ~`parseInt("@{degrees}") * Math.PI * 2 / 360`;
|
|
|
|
@costheta: ~`Math.cos("@{radians}")`;
|
|
|
|
@sintheta: ~`Math.sin("@{radians}")`;
|
|
|
|
@negsintheta: ~`"@{sintheta}" * -1`;
|
2016-02-05 00:41:41 +08:00
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=@{costheta}, M12=@{negsintheta}, M21=@{sintheta}, M22=@{costheta})";
|
2015-07-20 17:06:19 +08:00
|
|
|
zoom: 1;
|
2015-08-18 13:40:38 +08:00
|
|
|
|
|
|
|
:root & {
|
|
|
|
filter: none;
|
|
|
|
}
|
2015-07-20 12:03:01 +08:00
|
|
|
}
|
|
|
|
|
2015-08-17 12:27:03 +08:00
|
|
|
// support rotate for all browsers
|
|
|
|
.cross-rotate(@degrees) {
|
|
|
|
.rotate(@degrees);
|
|
|
|
.ie-rotate-via-degrees(@degrees);
|
|
|
|
}
|
|
|
|
|
2016-04-27 20:44:36 +08:00
|
|
|
// Placeholder text
|
|
|
|
.placeholder(@color: @input-placeholder-color) {
|
|
|
|
// Firefox
|
|
|
|
&::-moz-placeholder {
|
|
|
|
color: @color;
|
|
|
|
opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
|
|
|
|
}
|
|
|
|
// Internet Explorer 10+
|
|
|
|
&:-ms-input-placeholder {
|
|
|
|
color: @color;
|
|
|
|
}
|
|
|
|
// Safari and Chrome
|
|
|
|
&::-webkit-input-placeholder {
|
|
|
|
color: @color;
|
|
|
|
}
|
|
|
|
}
|