-
Notifications
You must be signed in to change notification settings - Fork 2
/
logviewer.css
89 lines (77 loc) · 1.5 KB
/
logviewer.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
82
83
84
85
86
87
88
89
.transfers {
-khtml-user-select: none;
}
.transcript {
clear: both;
margin-bottom: 1em;
cursor: default;
background-color: rgb(253, 253, 253);
border: 1px solid rgb(240, 240, 240);
}
.transcript h2 {
margin: 0;
padding: 5px;
font-size: large;
background-color: #ddd;
}
.transcript p {
margin-left: 5px;
}
.transcript_link {
font-size: 9pt;
width: 100%;
float: left;
word-wrap: break-word;
padding: 0.5em 0 0.5em 0;
margin-left: 5px;
}
.no_items {
font-style: italic;
}
.thumbnail {
position: relative;
float: left;
width: 150px;
height: 150px;
border: 1px solid #ddd;
margin: 5px;
text-align: center;
cursor: pointer;
}
.jump_to_conversation {
position: absolute;
right: 2px;
bottom: 2px;
width: 10px;
height: 10px;
background-image: url('ChaxArrow.tiff');
cursor: default;
-khtml-user-select: none;
}
.jump_to_conversation:active {
background-image: url('ChaxSelectedArrow.tiff');
}
.jump_to_conversation_link {
float: left;
margin: 2px 3px 0 0;
width: 10px;
height: 10px;
background-image: url('ChaxArrow.tiff');
cursor: default;
}
.jump_to_conversation_link:active {
background-image: url('ChaxSelectedArrow.tiff');
}
.me {
position: absolute;
left: 0px;
bottom: 0px;
padding: 0 1px 0 1px;
font-size: 7pt;
font-family: "LucidaGrande-Bold";
color: white;
background-color: rgb(115, 127, 145);
}
.spacer {
clear: both;
}