diff options
Diffstat (limited to 'skins/larry/mail.css')
-rw-r--r-- | skins/larry/mail.css | 91 |
1 files changed, 90 insertions, 1 deletions
diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 2acf79270..248aaba37 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -10,4 +10,93 @@ * See http://creativecommons.org/licenses/by-sa/3.0/ for details. * * $Id$ - */
\ No newline at end of file + */ + +#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; +} + |