diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-10-27 17:51:28 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-10-27 17:51:28 +0100 |
commit | 421ed1e5458ef8b3947ca4cce45eae7804b41f74 (patch) | |
tree | 517f8fb3239c87992b017d946cca5b190a32fe4a /skins/larry | |
parent | 9aa55d5a50bd4c219f409dcd1c42c373c7dcfdb8 (diff) |
Fix compose body area size, so scrollbars aren't truncated, unify padding
Diffstat (limited to 'skins/larry')
-rw-r--r-- | skins/larry/googiespell.css | 7 | ||||
-rw-r--r-- | skins/larry/mail.css | 6 | ||||
-rw-r--r-- | skins/larry/ui.js | 2 |
3 files changed, 6 insertions, 9 deletions
diff --git a/skins/larry/googiespell.css b/skins/larry/googiespell.css index d2f1cea78..2241ccd58 100644 --- a/skins/larry/googiespell.css +++ b/skins/larry/googiespell.css @@ -8,10 +8,7 @@ } .googie_edit_layer { - position: relative; - top: 1px; - left: 1px; - padding: 8px; + padding: 4px; font-size: 9pt; font-family: monospace; background-color: #fff; @@ -26,7 +23,7 @@ width: 100%; margin: 0; padding: 0; - border-spacing: 0; + border-spacing: 0; } .googie_list td { diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 0f1eaa8a7..9a2fe6974 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -1305,13 +1305,13 @@ div.message-partheaders .headers-table td.header { width: 99%; border: 0; border-radius: 0 0 0 4px; - padding: 8px 0 8px 8px; + padding: 4px; resize: none; font-family: monospace; font-size: 9pt; outline: none; - box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.2); - -webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.2); + box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); + -webkit-box-shadow: inset 0 0 2px 1px rgba(0,0,0, 0.1); } #composebody:active, diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 5cd216724..c8204b603 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -502,7 +502,7 @@ function rcube_mail_ui() $('#composebodycontainer > div').width(w+8); $('#composebody_ifr').height(h + 4 - $('div.mce-toolbar').height()); - $('#googie_edit_layer').height(h - 8); + $('#googie_edit_layer').width(w).height(h); // $('#composebodycontainer')[(btns ? 'addClass' : 'removeClass')]('buttons'); // $('#composeformbuttons')[(btns ? 'show' : 'hide')](); |