lib/request_log_analyzer/output/html.rb in request-log-analyzer-1.12.10 vs lib/request_log_analyzer/output/html.rb in request-log-analyzer-1.12.11
- old
+ new
@@ -51,11 +51,11 @@
# <tt>&block</tt>: A block yeilding the rows.
def table(*columns, &block)
rows = Array.new
yield(rows)
- @io << tag(:table, {:id => 'mytable', :cellspacing => 0}) do |content|
+ @io << tag(:table, {:class => 'rla-report-table', :cellspacing => 0}) do |content|
if table_has_header?(columns)
content << tag(:tr) do
columns.map { |col| tag(:th, col[:title]) }.join("\n")
end
end
@@ -100,11 +100,11 @@
border: 1px solid;
height:10px;
background: #CAE8EA;
}
- #mytable {
+ .rla-report-table {
width: 700px;
padding: 0;
margin: 0;
padding-bottom:10px;
}
@@ -182,6 +182,6 @@
end
end
end
end
end
-end
\ No newline at end of file
+end