diff options
author | thomascube <thomas@roundcube.net> | 2011-12-19 12:44:40 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-19 12:44:40 +0000 |
commit | 18863495ae95937276919f83db54f439ede8bd18 (patch) | |
tree | b383c7f0ec8182d316053723af96abb3e04f7880 /skins/larry/mail.css | |
parent | fbebf54a927f4431690286d78e1fe7336f738f63 (diff) |
Fix compose editor toggling and other style improvements
Diffstat (limited to 'skins/larry/mail.css')
-rw-r--r-- | skins/larry/mail.css | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 618487469..8a29fa7ce 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -321,7 +321,7 @@ a.iconbutton.threadmode.selected { } .boxlistcontent tbody tr td { - padding: 4px 7px; + padding: 3px 7px; border-bottom: 1px solid #ddd; border-left: 1px dotted #bbd3da; white-space: nowrap; @@ -800,13 +800,20 @@ h3.subject { #message-objects div a.button, #messagebody span.part-notice a.button { margin-left: 10px; - border: 1px solid #ccc; box-shadow: 0 1px 1px 0 #e8e386; -o-box-shadow: 0 1px 1px 0 #e8e386; -webkit-box-shadow: 0 1px 1px 0 #e8e386; -moz-box-shadow: 0 1px 1px 0 #e8e386; } +#message-objects div a.button:hover, +#messagebody span.part-notice a.button:hover { + box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); + -moz-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); + -webkit-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); + -o-box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6); +} + div.message-part, div.message-htmlpart { padding: 10px 2px; @@ -1115,6 +1122,11 @@ div.message-part blockquote blockquote blockquote { resize: none; font-family: monospace; font-size: 9pt; + outline: none; +} + +#composebody:active, +#composebody:focus { } #compose-attachments { @@ -1154,4 +1166,8 @@ div.message-part blockquote blockquote blockquote { text-align: right; } +.defaultSkin table.mceLayout, +.defaultSkin table.mceLayout tr.mceLast td { + border: 0 !important; +} |