Skip to content

Commit

Permalink
Vertical slide theme, searching for overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
imakewebthings committed Aug 11, 2011
1 parent 2503ec9 commit 3b2eb04
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
7 changes: 3 additions & 4 deletions themes/transition/vertical-slide.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.csstransitions.csstransforms .deck-container {
overflow-y: hidden;
}
.csstransitions.csstransforms .deck-container > .slide {
-webkit-transition: -webkit-transform 500ms ease-in-out;
-moz-transition: -moz-transform 500ms ease-in-out;
Expand Down Expand Up @@ -86,7 +89,3 @@
-ms-transform: rotate(90deg);
transform: rotate(90deg);
}

html {
overflow-y: hidden;
}
16 changes: 8 additions & 8 deletions themes/transition/vertical-slide.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@
}

.csstransitions.csstransforms {
.deck-container > .slide {
-webkit-transition:-webkit-transform 500ms ease-in-out;
-moz-transition:-moz-transform 500ms ease-in-out;
transition:transform 500ms ease-in-out;
.deck-container {
overflow-y:hidden;

> .slide {
-webkit-transition:-webkit-transform 500ms ease-in-out;
-moz-transition:-moz-transform 500ms ease-in-out;
transition:transform 500ms ease-in-out;
}
}

.deck-container:not(.deck-menu) {
Expand Down Expand Up @@ -98,8 +102,4 @@
top:99px;
@include rotate(90deg);
}
}

html {
overflow-y:hidden;
}

0 comments on commit 3b2eb04

Please sign in to comment.