blob: 91f9355de960ef1826848a926fb1d00fa61c9e30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
.post-right__container {
.post-right-root-message {
padding: 1em 1em 0;
}
.post-right-comments-container {
position: relative;
padding: 0;
}
.post {
&.post--root {
padding: 1em 1em 0;
margin: 0 0 1em;
hr {
border-color: #DDD;
margin: 1em 0 0 0;
}
}
}
.post-create__container {
margin-top: 10px;
.textarea-wrapper {
min-height: 100px;
}
.custom-textarea {
min-height: 100px;
}
.msg-typing {
@include opacity(0.7);
float: left;
padding-top: 17px;
}
.post-create-footer {
padding-top: 10px;
}
.post-right-comments-upload-in-progress {
padding: 6px 0;
color: #a8adb7;
margin-right: 10px;
}
}
}
.post-right-header {
font-size: 1em;
text-transform: uppercase;
color: #999;
font-weight: 400;
color: #888;
height: 39px;
padding: 10px 10px 0 15px;
border-bottom: $border-gray;
}
.post-right-root-container {
padding: 5px 10px;
border-bottom: $border-gray;
}
.post-right-root-container {
ul {
padding-left: 0;
margin-bottom: 2px;
}
}
.post-right-channel__name {
font-weight: 600;
margin: 0 0 10px 0;
}
.post-right-root-container li {
display: inline;
list-style-type: none;
padding-right: 3px;
}
.post-right-root-time {
color: #a8adb7;
}
.post-right-create-comment-container {
padding: 5px;
margin-bottom: 18px;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
.post-right__scroll {
position: relative;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}
.post-right-comment-time {
color: #a8adb7;
}
|