From 55ab3dc2fb6b59d9d07c5166f58b313321741490 Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 30 Jan 2018 02:35:34 +0100 Subject: Adding CSS that decreases tables opacity by default --- css/tdd.css | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 css/tdd.css (limited to 'css/tdd.css') diff --git a/css/tdd.css b/css/tdd.css new file mode 100644 index 0000000..94ee73b --- /dev/null +++ b/css/tdd.css @@ -0,0 +1,7 @@ +body > table > tbody > tr { + opacity: 0.2 +} +body > table > tbody > tr.hovered, +body > table > tbody > tr.specified { + opacity: 1.0; +} -- cgit v1.2.3 From 179574d7d2ee03d9d7cfa9f37ad62e96fcbd4656 Mon Sep 17 00:00:00 2001 From: Michal Zimniewicz Date: Sat, 3 Feb 2018 23:18:48 +0100 Subject: move inline style to .css --- css/tdd.css | 4 ++++ tdd-bootstrap.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'css/tdd.css') 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 .= '

...

'; } - $tr->outertext = '' . $insert . '' . $tr->outertext; + $tr->outertext = '' . $insert . '' . $tr->outertext; } $tr = @$tr->next_sibling(); } -- cgit v1.2.3