-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
76 lines (62 loc) · 965 Bytes
/
index.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
.message {
margin-left: 0px;
padding-top: 8px;
padding-bottom: 8px;
cursor: pointer;
border-bottom: 1px solid #efefef;
}
.message a {
color: black;
}
.message a:hover,
.message a:active,
.message a:focus {
text-decoration: none;
}
.message+.message {
border-top: 1px solid #efefef;
}
.message.read {
background: #efefef;
}
.message.unread {
font-weight: bold;
}
.message.selected {
background: #ffffcc;
}
.message:hover {
margin-left: -3px;
border-left: 3px solid #ccc;
}
.message-body {
background: #ccc;
margin-left: 0;
margin-bottom: 1em;
padding-top: 1em;
padding-bottom: 1em;
}
.toolbar {
margin-top: 1em;
margin-bottom: 1em;
}
.toolbar .label-select {
width: auto;
display: inline;
}
.toolbar select,
.toolbar button,
.toolbar a,
.toolbar .badge {
margin-right: .5em;
margin-bottom: .5em;
}
footer.spacer {
margin-bottom: 20em;
}
.label {
margin-right: .5em;
}
.fa-close {
cursor: pointer;
}