Commit 6f2a0b37ae464e0d086d0c6c5f0a1485273f0849
Committed by
Paulo Meireles
1 parent
7b5b15c4
Exists in
master
and in
28 other branches
Showing source tree expanded by default
Fixing cell size
Showing
1 changed file
with
5 additions
and
4 deletions
Show diff stats
plugins/mezuro/lib/kalibro/entities/module_node.rb
... | ... | @@ -25,16 +25,17 @@ class Kalibro::Entities::ModuleNode < Kalibro::Entities::Entity |
25 | 25 | id = @module.name |
26 | 26 | "<table>" + |
27 | 27 | "<tr>" + |
28 | - "<td width=\"1\">" + | |
28 | + "<td width=\"10%\">" + | |
29 | 29 | "<img id=\"#{id}_plus\" onclick=\"toogle('#{id}')\"" + |
30 | - "alt=\"+\" src=\"/plugins/mezuro/images/plus.png\" class=\"link\"/>" + | |
30 | + "alt=\"+\" src=\"/plugins/mezuro/images/plus.png\" class=\"link\"" + | |
31 | + "style=\"display: none\"/>" + | |
31 | 32 | "<img id=\"#{id}_minus\" onclick=\"toogle('#{id}')\"" + |
32 | 33 | "alt=\"-\" src=\"/plugins/mezuro/images/minus.png\" class=\"link\"" + |
33 | - "style=\"display: none\"/>" + | |
34 | + "/>" + | |
34 | 35 | "</td>" + |
35 | 36 | cell + |
36 | 37 | "</tr>" + |
37 | - "<tr id=\"#{id}_hidden\" style=\"display: none\">" + | |
38 | + "<tr id=\"#{id}_hidden\">" + | |
38 | 39 | "<td></td>" + |
39 | 40 | "<td style=\"text-align: left\">" + |
40 | 41 | @child.collect { |child| child.print }.to_s + | ... | ... |