Skip to content

Commit 4fd18f9

Browse files
committedMar 29, 2012
Styles the chatarea with the new layout
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent 6137b77 commit 4fd18f9

File tree

2 files changed

+25
-17
lines changed

2 files changed

+25
-17
lines changed
 

‎app/assets/javascripts/backbone/views/paginated_activities.js.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class Kandan.Views.PaginatedActivities extends Backbone.View
22

33
tagName: 'div'
4-
className: 'paginated_activities'
4+
className: 'paginated-activities'
55
template: JST['paginated_activities']
66

77
events:

‎app/assets/stylesheets/_chat_area.scss

+24-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
2-
3-
41
#channels {
52
border-right: 1px solid #CDD1D4;
63
margin-top: 0px;
@@ -26,19 +23,16 @@
2623
}
2724

2825
.ui-tabs-panel {
29-
@include box-shadow(5px 0px 5px -3px #CCC, -5px 0px 5px -3px #CCC);
30-
@include border-top-radius(4px);
3126
margin-top: $header-height + 10;
3227
margin-right: 20px;
3328
margin-left: 20px;
34-
background: #FFF;
29+
padding: 0px;
3530
}
3631

3732
.ui-widget-content {
38-
// position: relative;
39-
overflow-y: scroll;
4033
margin-top: 20px;
4134
bottom: 80px;
35+
height: 100%;
4236
}
4337

4438
.ui-tabs-nav
@@ -67,21 +61,35 @@
6761
font-size: 13px;
6862
}
6963

70-
.pagination {
71-
text-decoration: underline;
72-
cursor: pointer;
64+
.paginated-activities {
65+
@include box-shadow(5px 0px 5px -3px #CCC, -5px 0px 5px -3px #CCC, 5px 10px 5px -3px #CCC, -5px 10px 5px -3px #CCC);
66+
@include border-top-radius(4px);
67+
overflow-y: scroll;
68+
float: left;
69+
width: 100%;
70+
min-height: 88%;
71+
height: 88%;
72+
background: #FFF;
73+
padding: 10px;
74+
75+
.pagination {
76+
text-decoration: underline;
77+
cursor: pointer;
78+
}
79+
80+
.channel-activities {
81+
width: 100%;
82+
}
7383
}
7484

7585
.chatbox {
7686
@include border-bottom-radius(4px);
7787
@include background-image(linear-gradient($chatbox-bg-1, $chatbox-bg-2));
7888
@include box-shadow(5px 0px 5px -3px #CCC, -5px 0px 5px -3px #CCC, 0px 5px 5px 0px #CCC);
89+
float: left;
7990
border-top: 1px solid #EBEFF1;
8091
padding: 10px 0px 10px 10px;
81-
position: relative;
82-
bottom: 20px;
83-
margin-left: 20px;
84-
margin-right: 21px;
92+
width: 100%;
8593

8694
textarea {
8795
@include border-top-left-radius(4px);
@@ -90,8 +98,8 @@
9098
width: 92%;
9199
padding: 0px;
92100
margin: 0px;
93-
resize: none;
94101
height: 40px;
102+
resize: none;
95103
}
96104

97105
button {

0 commit comments

Comments
 (0)
Please sign in to comment.