Skip to content

Commit b6c3098

Browse files
committed
scroll fix wiht a mask
1 parent 241a1b0 commit b6c3098

File tree

3 files changed

+20
-7
lines changed

3 files changed

+20
-7
lines changed

app/assets/stylesheets/_base.sass

+2-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ body
8484
width: $main-area-width
8585
float: left
8686
border-right: 1px solid #CDD1D4
87+
padding-bottom: 70px
88+
padding-top: 22px
8789

88-
89-
.main-area, .sidebar
90-
padding-top: 15px

app/assets/stylesheets/_chat_area.sass

+13-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ html body .ui-tabs .ui-tabs-nav li
8484
height: 88%
8585
background: #FFF
8686
padding: 10px
87-
padding-bottom: 72px
8887
.pagination
8988
text-decoration: underline
9089
cursor: pointer
@@ -95,13 +94,14 @@ html body .ui-tabs .ui-tabs-nav li
9594
+border-bottom-radius(4px)
9695
+box-shadow(5px 0px 5px -3px #cccccc, -5px 0px 5px -3px #cccccc, 0px 5px 5px 0px #cccccc)
9796
float: left
98-
border-top: 1px solid #EBEFF1
97+
border-top: 1px solid #f5f8f9
9998
padding: 10px 0px 10px 10px
100-
width: 77%
99+
width: 77.2%
101100
position: fixed
102101
bottom: 0px
103102
margin-bottom: 20px
104103
background: #e6edef
104+
z-index: 600
105105
textarea
106106
+border-top-left-radius(4px)
107107
+border-bottom-left-radius(4px)
@@ -124,3 +124,13 @@ html body .ui-tabs .ui-tabs-nav li
124124
margin: 0px
125125
height: 40px
126126
font-size: 16px
127+
128+
#mask
129+
position: fixed
130+
z-index: 100
131+
bottom: 0
132+
display: block
133+
height: 30px
134+
margin-left: -16px
135+
width: 81%
136+
background: #E6EBEE url("/assets/page_bg.png") repeat

app/views/main/index.html.erb

+5-1
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,15 @@
2727
</div>
2828

2929
<div id="app_body">
30-
<div class="main-area"></div>
30+
<div class="main-area"> </div>
3131

3232
<div class="sidebar">
3333
<div class="widgets"></div>
3434
</div>
3535
</div>
36+
37+
<div id="mask">&nbsp;</div>
38+
39+
3640
</div>
3741

0 commit comments

Comments
 (0)