added transform without vendor prefix. Didn't work in Chromium 52.x anymore.
This commit is contained in:
parent
77f7d59c53
commit
963bb77d89
1 changed files with 4 additions and 1 deletions
|
|
@ -441,19 +441,22 @@ ul.dropdown-menu li a {
|
|||
-webkit-transform: scaleX(-1);
|
||||
-moz-transform: scaleX(-1);
|
||||
-ms-transform: scaleX(-1);
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
|
||||
.flipV {
|
||||
-webkit-transform: scaleY(-1);
|
||||
-moz-transform: scaleY(-1);
|
||||
-ms-transform: scaleY(-1);
|
||||
transform: scaleY(-1);
|
||||
}
|
||||
|
||||
.flipH.flipV {
|
||||
-webkit-transform: scaleX(-1) scaleY(-1);
|
||||
-moz-transform: scaleX(-1) scaleY(-1);
|
||||
-ms-transform: scaleX(-1) scaleY(-1);
|
||||
}
|
||||
transform: scaleX(-1) scaleY(-1);
|
||||
}
|
||||
|
||||
.rotate90 {
|
||||
transform: rotate(-90deg);
|
||||
|
|
|
|||
Loading…
Reference in a new issue