Commit 6f2a0b37ae464e0d086d0c6c5f0a1485273f0849
Committed by
Paulo Meireles
1 parent
7b5b15c4
Exists in
master
and in
29 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,16 +25,17 @@ class Kalibro::Entities::ModuleNode < Kalibro::Entities::Entity | ||
25 | id = @module.name | 25 | id = @module.name |
26 | "<table>" + | 26 | "<table>" + |
27 | "<tr>" + | 27 | "<tr>" + |
28 | - "<td width=\"1\">" + | 28 | + "<td width=\"10%\">" + |
29 | "<img id=\"#{id}_plus\" onclick=\"toogle('#{id}')\"" + | 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 | "<img id=\"#{id}_minus\" onclick=\"toogle('#{id}')\"" + | 32 | "<img id=\"#{id}_minus\" onclick=\"toogle('#{id}')\"" + |
32 | "alt=\"-\" src=\"/plugins/mezuro/images/minus.png\" class=\"link\"" + | 33 | "alt=\"-\" src=\"/plugins/mezuro/images/minus.png\" class=\"link\"" + |
33 | - "style=\"display: none\"/>" + | 34 | + "/>" + |
34 | "</td>" + | 35 | "</td>" + |
35 | cell + | 36 | cell + |
36 | "</tr>" + | 37 | "</tr>" + |
37 | - "<tr id=\"#{id}_hidden\" style=\"display: none\">" + | 38 | + "<tr id=\"#{id}_hidden\">" + |
38 | "<td></td>" + | 39 | "<td></td>" + |
39 | "<td style=\"text-align: left\">" + | 40 | "<td style=\"text-align: left\">" + |
40 | @child.collect { |child| child.print }.to_s + | 41 | @child.collect { |child| child.print }.to_s + |