diff options
author | thomascube <thomas@roundcube.net> | 2011-12-16 18:38:59 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-12-16 18:38:59 +0000 |
commit | f94e442469deca30b39f3fa08aade83cbd0ede70 (patch) | |
tree | 33a1d290c73ff935ffc01eaf114deaa0203f2778 /program/steps/mail/func.inc | |
parent | e10f1385ec91b77b2114e1841697ef4cb46ba48b (diff) |
Add more classes and options to HTML elements for better styleability
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 857ecd3f6..d44e9c3d5 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -379,6 +379,8 @@ function rcmail_message_list_head($attrib, $a_show_cols) // make sort links if (in_array($col, $a_sort_cols)) $col_name = html::a(array('href'=>"./#sort", 'onclick' => 'return '.JS_OBJECT_NAME.".command('sort','".$col."',this)", 'title' => rcube_label('sortby')), $col_name); + else if ($col_name[0] != '<') + $col_name = '<span class="' . $col .'">' . $col_name . '</span>'; $sort_class = $col == $sort_col ? " sorted$sort_order" : ''; $class_name = $col.$sort_class; |