Skip to content

Commit

Permalink
Vertical scroll for fit width display type.
Browse files Browse the repository at this point in the history
  • Loading branch information
a-fung committed Oct 12, 2012
1 parent 972f5ce commit 0f0a83e
Show file tree
Hide file tree
Showing 4 changed files with 237 additions and 64 deletions.
2 changes: 1 addition & 1 deletion source/aspnetserver/css/mangaweb.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions source/less/mangaweb.less
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ textarea {
-moz-transition: all 0;
-o-transition: all 0;
transition: all 0;
height: 100%;
}

#read-manga-area-inner.navigate {
Expand Down Expand Up @@ -240,6 +241,20 @@ textarea {
border-width: 0 1px;
}

.read-manga-page.inertia {
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}

.read-manga-page.inertia-bounce {
-webkit-transition: all 0.15s ease-in-out;
-moz-transition: all 0.15s ease-in-out;
-o-transition: all 0.15s ease-in-out;
transition: all 0.15s ease-in-out;
}

.read-manga-page img:first-child {
float: left;
}
Expand Down
Loading

0 comments on commit 0f0a83e

Please sign in to comment.