blob: 12d5588ee0f57d099ab0d460a5b11762f5e1e398 (
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
|
@import "less/mixins.less";
@border-gray: #D6D6D6;
@background-gray: #F5F5F5;
html, body{
height: 100%;
}
.chat{
color: #3D9940;
}
.away{
color: #D9B232;
}
.dnd{
color: #D9B232;
}
.xa{
color: #D9B232;
}
#roster{
min-height: 100%;
float: left;
width: 250px;
background-color: @background-gray;
border: 1px solid @border-gray;
ul.contact-list{
list-style: none;
padding: 0;
margin: 0;
li{
background-color: white;
border-bottom: 1px solid @border-gray;
padding: 0;
margin: 0;
padding: 1em 1em;
color: #363636;
.transition(0.3s);
&:hover{
background-color: @background-gray;
}
&:first-child{
border-top: 1px solid @border-gray;
}
i{
font-size:120%;
}
}
}
}
#rostersearch{
margin: 10px;
}
#titlebar{
border-bottom:1px solid @border-gray;
padding:10px;
#gradient > .vertical(@background-gray,#EDEDED);
margin-bottom:20px;
}
#main{
float: left;
margin-left: 20px;
}
ul.nav-tabs li a{
outline: 0;
}
|