adding export to read mailbox status information, RT#15987
[freeside.git] / httemplate / elements / table-grid.html
1 <STYLE TYPE="text/css">
2
3 .grid TH { padding-left: 3px; padding-right: 3px; padding-bottom: 2px; border: none; empty-cells: show }
4 .grid TD { padding-left: 3px; padding-right: 3px; padding-bottom: 2px; border: none; empty-cells: show }
5
6 .inv table { border: none }
7 .inv TH { border: none }
8 .inv TD { border: none }
9
10 </STYLE>
11
12 <TABLE CLASS="grid" CELLSPACING=<% $opt{cellspacing} %> CELLPADDING=<% $opt{cellpadding} %> <% $opt{bgcolor} %> STYLE="border: 1px solid #cccccc;">
13
14 <%init>
15
16 my %opt = @_;
17 $opt{cellspacing} ||= 0;
18 $opt{cellpadding} ||= 0;
19
20 $opt{bgcolor} =~ s/^#//;
21 $opt{bgcolor} = 'BGCOLOR="#'. $opt{bgcolor}. '"' if length($opt{bgcolor});
22
23 </%init>
24