-
Notifications
You must be signed in to change notification settings - Fork 0
/
userlist.css
81 lines (73 loc) · 1.42 KB
/
userlist.css
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
.firepad-userlist {
/* default height */
height: 400px;
min-width: 175px;
background: #ebebeb; /* Old browsers */
color: #404040;
}
.firepad-userlist {
text-align: left;
font-family: 'Helvetica Neue', sans-serif;
line-height: normal;
}
.firepad-userlist-heading {
margin: 20px 15px 0;
font-size: 12px;
font-weight: bold;
border-bottom: 2px solid #c9c9c9;
}
.firepad-userlist-users {
position: absolute;
left: 15px;
right: 15px;
top: 38px;
bottom: 10px;
overflow-y: auto;
overflow-x: hidden;
}
.firepad-userlist-user {
position: relative;
margin: 3px 0;
height: 32px;
border-bottom: 1px solid #c9c9c9;
padding-bottom: 5px;
}
.firepad-userlist-color-indicator {
display: inline-block;
width: 32px;
height: 32px;
border: 1px solid #ccc;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
input.firepad-userlist-name-input {
position: absolute;
left: 38px;
top: 0;
width: 105px;
height: 20px;
border: 0;
border-bottom: 1px solid #d6d6d6;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
font-size: 14px;
line-height: 14px;
padding: 1px;
}
.firepad-userlist-name-hint {
position: absolute;
left: 38px;
top: 23px;
width: 300px; /* I'd rather it clip than wrap. */
font-size: 9px;
line-height: 11px;
}
.firepad-userlist-name {
position: absolute;
top: 2px;
left: 38px;
width: 95px;
font-size: 13px;
}