blob: 49b3916a9085582e12026ef2a207a845b4e6a1f5 (
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
|
.inner__wrap {
@include single-transition(transform, 0.5s, ease);
&.move--left {
margin-right: 400px;
.search-bar__container {
display: none;
}
}
&.move--right {
.search-bar__container {
display: none;
}
}
}
.app__content {
height: 100%;
padding-top: 50px;
margin-left: 220px;
position: relative;
background: #fff;
.channel__wrap & {
padding-top: 0;
}
}
#post-create {
background: #fff;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
z-index: 3;
}
.post-list {
.new-messages-hr {
margin-top: 5px;
margin-bottom: 0px;
border: 0;
border-top: 1px solid #FF8800;
}
.new-messages-text {
margin-top: 2px;
margin-bottom: 5px;
color: #FF8800;
text-align: center;
}
}
.new-messages-hr {
margin-top: 5px;
margin-bottom: 0px;
border: 0;
border-top: 1px solid #FF8800;
}
.new-messages-text {
margin-top: 2px;
margin-bottom: 5px;
color: #FF8800;
text-align: center;
}
.delete-message-text {
margin-top: 10px;
}
|