-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.less
64 lines (61 loc) · 1.06 KB
/
styles.less
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
.channel-list {
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
background: #fff;
padding: 10px;
.search {
position: relative;
i {
position: absolute;
top: 14px;
left: 10px;
color: #999;
}
input {
width: 258px;
color: gray;
padding: 9px 9px 9px 26px;
&:focus {
outline: 0;
}
}
}
.channel-list-heading {
margin: 15px 0 5px 10px;
font-weight: bold;
color: gray;
font-size: 12px;
text-transform: uppercase;
}
.channel-list-item {
cursor: pointer;
color: #555;
margin: 8px 10px;
&:hover {
background: #f5f5f5;
}
&.unread {
color: #E8A541;
}
&.selected {
color: #4597F1;
}
.ctrls {
.pin {
display: block;
width: 20px;
text-align: center;
color: gray;
transition: color 0.2s;
&:hover {
color: #555;
}
&.pinned {
color: #006EFF;
&:hover {
color: darken(#006EFF, 10%);
}
}
}
}
}
}