diff options
-rw-r--r-- | css/tdd.css | 4 | ||||
-rw-r--r-- | tdd-bootstrap.php | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/css/tdd.css b/css/tdd.css index 94ee73b..3ebce4f 100644 --- a/css/tdd.css +++ b/css/tdd.css @@ -1,3 +1,7 @@ +body > table > tbody > tr.tdd-header > td { + border-bottom: 1px solid #006; + padding-top: 30px; +} body > table > tbody > tr { opacity: 0.2 } diff --git a/tdd-bootstrap.php b/tdd-bootstrap.php index 79320b6..9f874a3 100644 --- a/tdd-bootstrap.php +++ b/tdd-bootstrap.php @@ -53,7 +53,7 @@ class Protocol { $insert .= '<p>...</p>'; } - $tr->outertext = '<tr class="tdd-header"><td colspan="7" style="border-bottom:1px solid #006;padding-top:30px;">' . $insert . '</td></tr>' . $tr->outertext; + $tr->outertext = '<tr class="tdd-header"><td colspan="7">' . $insert . '</td></tr>' . $tr->outertext; } $tr = @$tr->next_sibling(); } |