From 6d2c656e64b86c75e93c5b887c77a219b9af29fe Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 16 Mar 2014 23:17:31 +0000 Subject: [PATCH] Tweak the tabulation style. Change the colours, and don't show the range except in 'range' type cells. --- tabulate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tabulate.py b/tabulate.py index 16a23c8..b986384 100755 --- a/tabulate.py +++ b/tabulate.py @@ -36,7 +36,7 @@ def read(n,m): show_bound = "" elif best_nature == 'p': tdclass = "probable" - show_bound = " (– %s)" + show_bound = "" else: tdclass = "range" show_bound = " – %s" @@ -61,10 +61,10 @@ td.known { background-color: #00ff00; } td.believed { - background-color: #44ff44; + background-color: #aaff00; } td.probable { - background-color: #88ff88; + background-color: #ffff00; } td.range { background-color: #ff8888; -- 2.30.2