From bd0551b22076b82a6d49e9f7a2b2e0c90a1b2326 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Fri, 05 Feb 2016 07:25:27 -0500 Subject: [PATCH] Secure also downloads of addressbook exports, managesieve script exports and Enigma keys exports --- skins/larry/mail.css | 106 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 files changed, 88 insertions(+), 18 deletions(-) diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 9a2fe69..969cb1f 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -145,19 +145,19 @@ border-radius: 4px 4px 0 0; } -#mailboxlist li.mailbox.unread > a { +.folderlist li.mailbox.unread > a { padding-right: 36px; } -#mailboxlist li.unread { +.folderlist li.unread { font-weight: bold; } -#mailboxlist li.recent > a { +.folderlist li.recent > a { color: #017cb4; } -#mailboxlist li.mailbox .unreadcount { +.folderlist li.mailbox .unreadcount { position: absolute; top: 3px; right: 6px; @@ -179,7 +179,7 @@ text-shadow: none; } -#mailboxlist li.mailbox.selected > a .unreadcount { +.folderlist li.mailbox.selected > a .unreadcount { background: #005d76; background: -moz-linear-gradient(top, #005d76 0%, #004558 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#005d76), color-stop(100%,#004558)); @@ -190,7 +190,7 @@ -webkit-box-shadow: inset 0 1px 1px 0 #003645; } -#mailboxlist li.mailbox.recent > a .unreadcount { +.folderlist li.mailbox.recent > a .unreadcount { background: #017cb4; background: -moz-linear-gradient(top, #017cb4 0%, #006ca4 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#017cb4), color-stop(100%,#006ca4)); @@ -251,6 +251,9 @@ background-position: -28px -458px; } +#s_interval { + margin: 3px 8px; +} /*** message list ***/ @@ -493,7 +496,7 @@ .messagelist tr td.status span.unread, .messagelist tr td.subject span.unread, .messagelist tr td.status span.unread:hover { - background-position: 0 -1017px; + background-position: 0 -1017px !important; } .messagelist thead tr th.status span.status { @@ -627,7 +630,7 @@ .headers-table td { color: #666; - padding: 2px 8px; + padding: 1px 8px; } .headers-table td.header, @@ -652,7 +655,6 @@ .headers-table td.subject { color: #333; - font-size: 110%; font-weight: bold; } @@ -861,19 +863,18 @@ #messagecontent .rightcol, #messagepreview .rightcol { - float: right; -/* position: absolute; - top: 10px; - right: 10px; - height: 90%; -*/ + right: 8px; width: 230px; - margin: 8px; min-height: 200px; background: #f0f0f0; padding: 8px; border-radius: 4px; + z-index: 1; +} + +#messagecontent .rightcol { + margin-top: 8px; } #messagebody { @@ -958,12 +959,13 @@ } div.message-partheaders .headers-table td.header-title { - width: auto; + width: 1%; padding-left: 0; + vertical-align: top; } div.message-partheaders .headers-table td.header { - width: 88%; + width: 99%; } #messagebody > hr { @@ -992,6 +994,7 @@ #messagebody p.image-attachment { position: relative; padding: 1em; + margin-bottom: 0; border-top: 1px solid #ccc; } @@ -1297,6 +1300,16 @@ bottom: 42px; } +#composebodycontainer.mailvelope { + right: 0; + z-index: 10; +} + +#composebodycontainer.mailvelope > iframe[scrolling='no'] { + position: relative; + top: -12px; +} + #composebody { position: absolute; top: 0; @@ -1353,6 +1366,10 @@ -webkit-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9); } +#compose-attachments .attachment-size { + color: #888; +} + #composeview-bottom .formbuttons.floating { position: absolute; width: auto; @@ -1383,3 +1400,56 @@ #uploadform form div { margin: 4px 0; } + +.mailvelopekeyimport div.key { + position: relative; + margin-bottom: 2px; + padding: 1em; + background-color: #ebebeb; +} + +.mailvelopekeyimport div.key.revoked, +.mailvelopekeyimport div.key.disabled { + color: #a0a0a0; +} + +.mailvelopekeyimport div.key label { + display: inline-block; + margin-right: 0.5em; +} + +.mailvelopekeyimport div.key label:after { + content: ":"; +} + +.mailvelopekeyimport div.key label + a, +.mailvelopekeyimport div.key label + span { + display: inline-block; + margin-right: 2em; + white-space: nowrap; +} + +.mailvelopekeyimport div.key label + a { + font-weight: bold; +} + +.mailvelopekeyimport ul.uids { + margin: 1em 0 0 0; + padding: 0; +} + +.mailvelopekeyimport li.uid { + border: 0; + padding: 0.3em; +} + +.mailvelopekeyimport div.key input.button.importkey { + position: absolute; + top: 0.8em; + right: 0.8em; + padding: 4px 6px; +} + +.mailvelopekeyimport div.key input.button[disabled] { + display: none; +} -- Gitblit v1.9.1