DG MS; got scroll working [ci skip]

This commit is contained in:
danielgrippi 2012-05-22 14:35:05 -07:00
parent 83fec811cc
commit abc4843273
3 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,9 @@
html,
body {
/* hack to ensure fixed elements at height: 100%; are in relation to the window */
max-height : 100%;
}
body { body {
background-image : image_url("pattern.png"); background-image : image_url("pattern.png");
padding : none; padding : none;

View file

@ -313,7 +313,9 @@
/* stream specific wrapper */ /* stream specific wrapper */
#stream-interactions { #stream-interactions {
position : fixed; position : fixed;
width : 420px; top : 0;
bottom : 0;
overflow-y : auto;
#post-info { #post-info {
text-align : left; text-align : left;

View file

@ -1,11 +1,11 @@
<div id="stream"> <div id="stream">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="span5"> <section id="stream-content" class="span4 offset1"/>
<section id="stream-content"/>
</div> <!--Since stream-interactions is fixed, we need a double span5 declaration here :(-->
<div class="span5"> <div class="span6">
<section id="stream-interactions"/> <section id="stream-interactions" class="span6"/>
</div> </div>
</div> </div>
</div> </div>