Hello Uwe,
On 2015-04-29 09:20, Uwe Eischens wrote:
I'm currently evaluating Piler against Mailarchiva (the latter we've
used for legal archiving our company mails for some years now), and so
far I'm really impressed about Piler. Thanks Janos for the great
software!
I'm glad that you like it. I assume you have >20 mailboxes.
One thing I'm currently unable to manage: I've changed the output of
the date-column in the search result table to display the message-time
in addition to the date. Now the cell is not wide enough for the whole
content (date *and* time) and a line wrap occurs, which doubles the
height of the rows. Reducing the font-size from 14 to 12px in the
body-section of the css was insufficient. Is it possible to expand the
width of the date-column in the output table to suppress the wrap and
display date and time in in one row? If so, where can I find these
column width definitions? Looked in the included css
(metro-bootstrap.css) and various .tpl files but had no luck finding
the marching entries.
I've set $config['DATE_TEMPLATE'] = 'Y.m.d H:i:s'; and tried for myself,
and (for my screen) apparently it doesn't wrap. How big is your screen?
Anyway you may hack view/theme/default/templates/search/helper.tpl,
and fix <th id="date-header"> (10th line), eg.
<th id="date-header" style="width:230px;">
Or alternatively you may edit
view/theme/default/assets/css/metro-bootstrap.css,
and append:
#date-header { width: 230px; }
The trouble is that these changes will be gone when you update the gui.
Let me know if the hack works for you.
Janos