mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-01 13:24:25 +01:00
15 lines
449 B
SCSS
15 lines
449 B
SCSS
|
// Applies the given styles only when the browser support CSS3 3D transforms.
|
||
|
@mixin if-supports-3d-transforms() {
|
||
|
@media (-webkit-transform-3d) {
|
||
|
// Old Safari, Old Android
|
||
|
// http://caniuse.com/#feat=css-featurequeries
|
||
|
// https://developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-transform-3d
|
||
|
@content;
|
||
|
}
|
||
|
|
||
|
@supports (transform: translate3d(0,0,0)) {
|
||
|
// The Proper Way: Using a CSS feature query
|
||
|
@content;
|
||
|
}
|
||
|
}
|