blob: 248aaba3756f7babce21772282ce35455ade10c0 (
plain)
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
|
/**
* Roundcube webmail styles for the Email section
*
* Copyright (c) 2011, The Roundcube Dev Team
* Screendesign by FLINT / Büro für Gestaltung, bueroflint.com
*
* The contents are subject to the Creative Commons Attribution-ShareAlike
* License. It is allowed to copy, distribute, transmit and to adapt the work
* by keeping credits to the original autors in the README file.
* See http://creativecommons.org/licenses/by-sa/3.0/ for details.
*
* $Id$
*/
#mailview-left {
position: absolute;
top: 0;
left: 0;
width: 240px;
bottom: 0;
}
#mailview-right {
position: absolute;
top: 0;
left: 250px;
right: 0;
bottom: 0;
}
#mailview-top {
position: absolute;
top: 0;
left: 0;
width: 100%;
bottom: 26px;
}
#mailview-bottom {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 26px;
}
#mailboxcontainer,
#messagelistcontainer {
position: absolute;
top: 42px;
left: 0;
width: 100%;
bottom: 0;
}
#messagelistcontainer {
bottom: 32px;
overflow: auto;
}
#messagelistfooter {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 26px;
padding: 2px;
}
#messagelistfooter #countcontrols {
display: inline-block;
}
#mailboxlist li.mailbox {
background-position: 8px 2px;
background-repeat: no-repeat;
}
#mailboxlist li.virtual > a {
color: #aaa;
}
#mailboxlist li.mailbox a {
padding-left: 36px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#mailboxlist li.mailbox ul {
padding: 0;
border-top: 1px solid #bbd3da;
}
#mailboxlist li.mailbox ul li {
padding-left: 30px;
}
#mailboxlist li.mailbox ul li:last-child {
border-bottom: 0;
}
|