summaryrefslogtreecommitdiff
path: root/httemplate/elements/table-grid.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/elements/table-grid.html')
-rw-r--r--httemplate/elements/table-grid.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/httemplate/elements/table-grid.html b/httemplate/elements/table-grid.html
deleted file mode 100644
index 4d7deeaa4..000000000
--- a/httemplate/elements/table-grid.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<STYLE TYPE="text/css">
-
-.grid TH { padding-left: 3px; padding-right: 3px; padding-bottom: 2px; border: none; empty-cells: show }
-.grid TD { padding-left: 3px; padding-right: 3px; padding-bottom: 2px; border: none; empty-cells: show }
-
-.inv table { border: none }
-.inv TH { border: none }
-.inv TD { border: none }
-
-</STYLE>
-
-<TABLE CLASS="grid" CELLSPACING=<% $opt{cellspacing} %> CELLPADDING=<% $opt{cellpadding} %> <% $opt{bgcolor} %> STYLE="border: 1px solid #cccccc;">
-
-<%init>
-
-my %opt = @_;
-$opt{cellspacing} ||= 0;
-$opt{cellpadding} ||= 0;
-
-$opt{bgcolor} =~ s/^#//;
-$opt{bgcolor} = 'BGCOLOR="#'. $opt{bgcolor}. '"' if length($opt{bgcolor});
-
-</%init>
-