DG MS; got scroll working [ci skip]
This commit is contained in:
parent
83fec811cc
commit
abc4843273
3 changed files with 14 additions and 6 deletions
|
|
@ -1,3 +1,9 @@
|
|||
html,
|
||||
body {
|
||||
/* hack to ensure fixed elements at height: 100%; are in relation to the window */
|
||||
max-height : 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image : image_url("pattern.png");
|
||||
padding : none;
|
||||
|
|
|
|||
|
|
@ -313,7 +313,9 @@
|
|||
/* stream specific wrapper */
|
||||
#stream-interactions {
|
||||
position : fixed;
|
||||
width : 420px;
|
||||
top : 0;
|
||||
bottom : 0;
|
||||
overflow-y : auto;
|
||||
|
||||
#post-info {
|
||||
text-align : left;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<div id="stream">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="span5">
|
||||
<section id="stream-content"/>
|
||||
</div>
|
||||
<div class="span5">
|
||||
<section id="stream-interactions"/>
|
||||
<section id="stream-content" class="span4 offset1"/>
|
||||
|
||||
<!--Since stream-interactions is fixed, we need a double span5 declaration here :(-->
|
||||
<div class="span6">
|
||||
<section id="stream-interactions" class="span6"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue