friends-online.scss
2.05 KB
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
103
104
105
106
107
108
109
#chat-online-users {
position: fixed;
right: 0px;
bottom: 0px;
margin: 0px 20px;
background-color: white;
border: 1px solid #333;
border-top: none;
width: 200px;
overflow: hidden;
z-index: 9999;
}
#chat-online-users .header {
font-size: 12px;
color: black;
background-color: #eee;
border-top: 1px solid #333;
padding: 3px;
text-decoration: none;
}
#chat-online-users .header i {
display: block;
height: 16px;
width: 16px;
margin-right: 5px;
float: left;
}
#chat-online-users-content {
bottom: 24px;
right: 0px;
width: 200px;
border-top: 1px solid #333;
}
#chat-online-users .menu-submenu-content h4 ul {
border-top: 1px solid #333;
background-color: #efefef;
margin: 0px;
}
#chat-online-users-content li {
list-style: none;
}
#chat-online-users-title:hover, #chat-online-users-title:visited {
color: #000;
}
.webkit #chat-online-users-title, .opera #chat-online-users-title {
text-decoration: none;
}
.chat-online-user {
font-size: 12px;
color: #000;
margin: 0px;
padding: 10px;
display: block;
text-decoration: none;
white-space: nowrap;
position: relative;
}
.chat-online-user .friend_name {
line-height: 20px;
vertical-align: super;
margin-left: 5px;
}
.chat-online-user:visited, .chat-online-user:active {
color: #000;
}
.chat-online-user:hover {
background-color: #efefef;
}
#chat-online-users ul {
padding: 0;
margin: 0;
}
.chat-online-user-avatar {
display: inline-block;
width: 20px;
height: 20px;
background: url('/images/icons-app/person-icon.png');
position: relative;
}
.msie .chat-online-user-avatar {
display: inline;
}
#chat-online-users-hidden-content {
max-height: 200px;
overflow: auto;
overflow-x: hidden;
border-top: 5px solid;
}
.chat-online-user-status {
position: absolute;
font-size: 9px;
font-weight: bold;
display: block;
height: 11px;
width: 11px;
top: 15px;
right: 10px;
}
.chat-online-user-status span {
display: none;
}
#anyone-online {
display: block;
text-align: center;
padding: 5px 0;
font-style: italic;
color: #444;
}