-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathscreen.css
73 lines (60 loc) · 1.08 KB
/
screen.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
div.error {
color: red;
font-weight: normal;
line-height: 1.4;
margin-top: 0.5em;
width: 100%;
float: none;
}
#message-container {
position: relative;
height: 200px;
}
.message-view {
position: absolute;
top: 0px;
width: 100%;
}
.message-sender {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
padding-right: 1em;
}
.message-time {
padding-left: 1em;
text-align: right;
}
.message-text {
// white-space: pre;
}
#menu-listview {
min-width: 12em;
}
.contact-status {
width: 0.8em;
height: 0.8em;
background-color: #f0f0f0;
display: inline-block;
margin-right: 0.5em;
border: 1px solid #bbb;
border-radius: 4px;
}
.contact-online {
background-color: #99FF99;
}
.contact-offline {
background-color: #FFCCCC;
}
.contact-away {
background-color: #FFFF99;
}
.contact-busy {
background-color: #FFCC66;
}
.ui-icon-none {
background-image: none;
background-color: transparent;
}