From cb84c6558b66e1441ddfc9701d91c9c994335198 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Mon, 19 Oct 2015 13:36:50 +0200 Subject: Show attempted/solved status in problem list --- css/codeq.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'css') diff --git a/css/codeq.css b/css/codeq.css index 77d1d9c..ba10bcd 100644 --- a/css/codeq.css +++ b/css/codeq.css @@ -520,10 +520,20 @@ ul.dropdown-menu a { padding-left: 1em; } -#screen_problem_list .group-problems li { +#screen_problem_list ul.group-problems li { list-style-type: none; } #screen_problem_list a { cursor: pointer; } + +#screen_problem_list .group-problems a.attempted::after { + color: orange; + content: ' ●'; +} + +#screen_problem_list .group-problems a.solved::after { + color: green; + content: ' ✔'; +} -- cgit v1.2.1