- Make so addcontact icon doesn't jump alone to next line

release-0.6
alecpl 14 years ago
parent de62f02eed
commit 768091e094

@ -1261,7 +1261,7 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null)
} }
else if (check_email($part['mailto'], false)) { else if (check_email($part['mailto'], false)) {
if ($linked) { if ($linked) {
$out .= html::a(array( $address = html::a(array(
'href' => 'mailto:'.$mailto, 'href' => 'mailto:'.$mailto,
'onclick' => sprintf("return %s.command('compose','%s',this)", JS_OBJECT_NAME, JQ($mailto)), 'onclick' => sprintf("return %s.command('compose','%s',this)", JS_OBJECT_NAME, JQ($mailto)),
'title' => $mailto, 'title' => $mailto,
@ -1270,12 +1270,12 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null)
Q($name ? $name : $mailto)); Q($name ? $name : $mailto));
} }
else { else {
$out .= html::span(array('title' => $mailto, 'class' => "rcmContactAddress"), $address = html::span(array('title' => $mailto, 'class' => "rcmContactAddress"),
Q($name ? $name : $mailto)); Q($name ? $name : $mailto));
} }
if ($addicon && $got_writable_abook) { if ($addicon && $got_writable_abook) {
$out .= '&nbsp;' . html::a(array( $address = '<span>' . $address . html::a(array(
'href' => "#add", 'href' => "#add",
'onclick' => sprintf("return %s.command('add-contact','%s',this)", JS_OBJECT_NAME, urlencode($string)), 'onclick' => sprintf("return %s.command('add-contact','%s',this)", JS_OBJECT_NAME, urlencode($string)),
'title' => rcube_label('addtoaddressbook'), 'title' => rcube_label('addtoaddressbook'),
@ -1283,8 +1283,9 @@ function rcmail_address_string($input, $max=null, $linked=false, $addicon=null)
html::img(array( html::img(array(
'src' => $CONFIG['skin_path'] . $addicon, 'src' => $CONFIG['skin_path'] . $addicon,
'alt' => "Add contact", 'alt' => "Add contact",
))); ))) . '</span>';
} }
$out .= $address;
} }
else { else {
if ($name) if ($name)

@ -1046,6 +1046,11 @@ table.headers-table tr td.subject
font-weight: bold; font-weight: bold;
} }
table.headers-table tr td.header span
{
white-space: nowrap;
}
#attachment-list #attachment-list
{ {
margin: 0; margin: 0;

Loading…
Cancel
Save