From 54c7be0af5c70156aa22c3c2da0b4c1db827db06 Mon Sep 17 00:00:00 2001 From: ericsonga Date: Mon, 6 Jun 2016 14:34:33 -0400 Subject: [PATCH] Fix to boxes around lines in codelens I had accidentally added boxes around the lines of code in codelens when I was trying to add boxes around the clickable areas. The boxes are now only around clickable areas rather than all table data or table headers. --- .gitignore | 2 ++ runestone/clickableArea/css/clickable.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 498b73cb0..afdb3b116 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ nosetests.xml .idea bower_componenets/ test/ + +runestone/build_info diff --git a/runestone/clickableArea/css/clickable.css b/runestone/clickableArea/css/clickable.css index 0a5297b52..24775aa77 100644 --- a/runestone/clickableArea/css/clickable.css +++ b/runestone/clickableArea/css/clickable.css @@ -20,7 +20,7 @@ table { border-collapse: collapse; } -table, th, td { +th.clickable, td.clickable { border: 1px solid black; }