diff options
author | thomascube <thomas@roundcube.net> | 2005-12-03 16:54:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-12-03 16:54:12 +0000 |
commit | 1cded85790206afe084e1baff371c543711b2b18 (patch) | |
tree | b050fb89707e048df5f30f500faad792962a1e81 /skins | |
parent | 5bc8cb662fc3bcda9aa641b7a5e88c0b81dd63d6 (diff) |
Re-design of caching (new database table added\!); some bugfixes; Postgres support
Diffstat (limited to 'skins')
-rw-r--r-- | skins/default/images/sort_asc.gif | bin | 0 -> 121 bytes | |||
-rw-r--r-- | skins/default/images/sort_desc.gif | bin | 0 -> 123 bytes | |||
-rw-r--r-- | skins/default/mail.css | 27 | ||||
-rw-r--r-- | skins/default/pngbehavior.htc | 2 | ||||
-rw-r--r-- | skins/default/templates/compose.html | 5 | ||||
-rw-r--r-- | skins/default/templates/mail.html | 4 |
6 files changed, 29 insertions, 9 deletions
diff --git a/skins/default/images/sort_asc.gif b/skins/default/images/sort_asc.gif Binary files differnew file mode 100644 index 000000000..244db104c --- /dev/null +++ b/skins/default/images/sort_asc.gif diff --git a/skins/default/images/sort_desc.gif b/skins/default/images/sort_desc.gif Binary files differnew file mode 100644 index 000000000..2427311b4 --- /dev/null +++ b/skins/default/images/sort_desc.gif diff --git a/skins/default/mail.css b/skins/default/mail.css index f429407dd..9d507fe7b 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -75,9 +75,10 @@ position: absolute; top: 60px; right: 40px; - width: 200px; + width: 220px; height: 20px; text-align: right; + white-space: nowrap; } #messagecountbar span @@ -332,6 +333,26 @@ body.messagelist background-image: url(images/listheader_dark.gif); } +#messagelist thead tr td.sortedASC a +{ + background: url(images/sort_asc.gif) top right no-repeat; +} + +#messagelist thead tr td.sortedDESC a +{ + background: url(images/sort_desc.gif) top right no-repeat; +} + +#messagelist thead tr td a, +#messagelist thead tr td a:hover +{ + display: block; + width: auto !important; + width: 100%; + color: #333333; + text-decoration: none; +} + #messagelist tbody tr td { height: 16px !important; @@ -645,9 +666,10 @@ div.message-part pre #compose-body { margin-top: 10px; + margin-bottom: 5px; width: 99% !important; width: 95%; - height: 95%; + height: 90%; min-height: 300px; font-size: 9pt; font-family: "Courier New", Courier, monospace; @@ -702,4 +724,3 @@ div.message-part pre margin-top: 8px; } - diff --git a/skins/default/pngbehavior.htc b/skins/default/pngbehavior.htc index 553699a2f..24bfd4c79 100644 --- a/skins/default/pngbehavior.htc +++ b/skins/default/pngbehavior.htc @@ -40,7 +40,7 @@ function fixImage() { element.src = blankSrc; // set filter element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + - src + "',sizingMethod='scale')"; + src + "',sizingMethod='crop')"; } else { // remove filter diff --git a/skins/default/templates/compose.html b/skins/default/templates/compose.html index aa28098c8..0a3f874ae 100644 --- a/skins/default/templates/compose.html +++ b/skins/default/templates/compose.html @@ -87,8 +87,9 @@ function rcmail_toggle_display(id) </tr><tr> -<td style="width:100%; height:100%; vertical-align:top;"> -<roundcube:object name="composeBody" id="compose-body" form="form" cols="80" rows="20" warp="virtual" tabindex="7" /> +<td style="width:100%; height:95%; vertical-align:top;"> +<roundcube:object name="composeBody" id="compose-body" form="form" cols="80" rows="20" warp="virtual" tabindex="7" /><br /> +<roundcube:label name="charset" />: <roundcube:object name="charsetSelector" tabindex="8" /> </td> </tr></table> diff --git a/skins/default/templates/mail.html b/skins/default/templates/mail.html index 61d0e6d52..0f87c635d 100644 --- a/skins/default/templates/mail.html +++ b/skins/default/templates/mail.html @@ -37,9 +37,7 @@ messageIcon="/images/icons/dot.png" unreadIcon="/images/icons/unread.png" repliedIcon="/images/icons/replied.png" - attachmentIcon="/images/icons/attachment.png" - sortDescButton="/images/buttons/up_arrow.png" - sortAscButton="/images/buttons/down_arrow.png" /> + attachmentIcon="/images/icons/attachment.png" /> </div> <div id="listcontrols"> |