From: Michael M Slusarz Date: Fri, 30 Oct 2009 21:55:43 +0000 (-0600) Subject: More tweaks to mimePartInfo output X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c4a714339ff323f706a40852efa4f724045a4cfa;p=horde.git More tweaks to mimePartInfo output --- diff --git a/imp/lib/UI/Message.php b/imp/lib/UI/Message.php index 8f304eb47..6223c0f40 100644 --- a/imp/lib/UI/Message.php +++ b/imp/lib/UI/Message.php @@ -422,7 +422,7 @@ class IMP_UI_Message foreach ($display as $val) { $tmp_summary[] = $summary[$val]; } - return '
' . implode(' ', $tmp_summary) . '
'; + return '
' . implode(' ', $tmp_summary) . '
'; } /** diff --git a/imp/themes/ie6_or_less.css b/imp/themes/ie6_or_less.css index a91d2a735..86af15f36 100644 --- a/imp/themes/ie6_or_less.css +++ b/imp/themes/ie6_or_less.css @@ -3,7 +3,7 @@ */ /* Fixes broken inline-block. */ -div.msgflags, span.spellcheckPopdownImg, span.treeImg, .downloadAtc, .downloadZipAtc, .saveImgAtc, .deleteImg, span.mimePartInfo, .mimeStatusMessage { +div.msgflags, span.spellcheckPopdownImg, span.treeImg, .downloadAtc, .downloadZipAtc, .saveImgAtc, .deleteImg, div.mimePartInfo, .mimeStatusMessage { zoom: 1; *display: inline; } diff --git a/imp/themes/ie7.css b/imp/themes/ie7.css index 5762fcb9e..b66aa5bdd 100644 --- a/imp/themes/ie7.css +++ b/imp/themes/ie7.css @@ -3,7 +3,7 @@ */ /* Fixes broken inline-block. */ -div.msgflags, span.spellcheckPopdownImg, span.treeImg, .downloadAtc, .downloadZipAtc, .saveImgAtc, .deleteImg, span.mimePartInfo, .mimeStatusMessage { +div.msgflags, span.spellcheckPopdownImg, span.treeImg, .downloadAtc, .downloadZipAtc, .saveImgAtc, .deleteImg, div.mimePartInfo, .mimeStatusMessage { zoom: 1; *display: inline; } diff --git a/imp/themes/screen.css b/imp/themes/screen.css index fa7847ea5..4229cc916 100644 --- a/imp/themes/screen.css +++ b/imp/themes/screen.css @@ -157,12 +157,12 @@ div.msgActions, #fmanager div.folderActions { background: #fff; padding: 8px; } -.messageBody div.fixed { - padding-top: 8px; +.messageBody div { + margin-bottom: 8px; } /* Search page styling. */ -#search_form DIV.item { +#search_form div.item { padding: 1px 0 1px 0; } #search_form .checkbox { @@ -172,7 +172,7 @@ div.msgActions, #fmanager div.folderActions { #search_form .foldersImg { vertical-align: middle; } -#search_form EM.join { +#search_form em.join { font-style: normal; font-weight: bold; } @@ -519,7 +519,7 @@ td.addressTr span.loadingImg { } /* MIME styles. */ -.mimeStatusMessage, .mimeHeaders, .mimePartInfo { +.mimeStatusMessage, .mimeHeaders { padding: 4px; margin-bottom: 3px; font-size: 90%; @@ -540,21 +540,24 @@ td.addressTr span.loadingImg { background: #f9f9f9; width: auto; } -.mimePartInfo { - border: 1px solid #ccc; +div.mimePartInfo { background: #efefef; + border: 1px solid #ccc; + font-size: 90%; + margin-bottom: 3px; + padding: 5px; /* For FF2 */ display: table-cell; display: inline-block; } -.mimePartInfo img { +div.mimePartInfo img { vertical-align: bottom; } -.mimeStatusMessage td, .mimePartInfo td { +.mimeStatusMessage td { padding: 0; } -.mimeStatusMessage td table td, .mimePartInfo td table td { +.mimeStatusMessage td table td { padding-right: 2px; white-space: nowrap; }