Skip to content

Commit

Permalink
Fix issue #1047 rotate 90 degrees on iOS Safari
Browse files Browse the repository at this point in the history
The iOS version of webkit still requires the browser prefixes for
transform, see http://stackoverflow.com/a/27304061/4414220
  • Loading branch information
markwal committed Sep 7, 2015
1 parent d5b0bd2 commit 42d7654
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/octoprint/static/less/octoprint.less
Expand Up @@ -914,6 +914,7 @@ textarea.block {
}

.rotate90 {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
}

Expand Down

0 comments on commit 42d7654

Please sign in to comment.