diff options
author | emkael <emkael@tlen.pl> | 2018-01-30 02:35:34 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-01-30 02:35:34 +0100 |
commit | 55ab3dc2fb6b59d9d07c5166f58b313321741490 (patch) | |
tree | a9131b5f4f75d9d6fb7096bd2ecae7def9892cbe /tdd-bootstrap.php | |
parent | 98f99725d698fe72090087442a72a5bd17c29fa8 (diff) |
Adding CSS that decreases tables opacity by default
Diffstat (limited to 'tdd-bootstrap.php')
-rw-r--r-- | tdd-bootstrap.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tdd-bootstrap.php b/tdd-bootstrap.php index 2ed216b..342ecd0 100644 --- a/tdd-bootstrap.php +++ b/tdd-bootstrap.php @@ -65,6 +65,9 @@ class Protocol { $dom->find('/html/body/table/tr', 0)->outertext = ''; } + $head = $dom->find('/html/head', 0); + $head->innertext .= '<link rel="stylesheet" type="text/css" href="css/tdd.css" />'; + // replacing meta http-equiv refresh with a javascript refresh to preserve hash in the result page $meta = $head->find('meta'); foreach ($meta as $metaTag) { |