Commit feccc6e7 authored by Mark Otto's avatar Mark Otto

Merge branch 'backface-visibility' of https://github.com/dannykeane/bootstrap...

Merge branch 'backface-visibility' of https://github.com/dannykeane/bootstrap into dannykeane-backface-visibility
parents 3308d196 2165ab26
...@@ -251,6 +251,15 @@ ...@@ -251,6 +251,15 @@
transform: translate(@x, @y, @z); transform: translate(@x, @y, @z);
} }
// Back-face Visibility
// This prevents the browser flickering when using to CSS transformations
.backface-visibility(@visibility){
-webkit-backface-visibility: @visibility;
-moz-backface-visibility: @visibility;
-ms-backface-visibility: @visibility;
backface-visibility: @visibility;
}
// Background clipping // Background clipping
// Heads up: FF 3.6 and under need "padding" instead of "padding-box" // Heads up: FF 3.6 and under need "padding" instead of "padding-box"
.background-clip(@clip) { .background-clip(@clip) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment