You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
1.6 KiB
CSS
103 lines
1.6 KiB
CSS
/**
|
|
* 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;
|
|
}
|
|
|