summaryrefslogtreecommitdiff
path: root/css/codeq.css
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-10-19 13:36:50 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2015-10-19 14:42:56 +0200
commitcb84c6558b66e1441ddfc9701d91c9c994335198 (patch)
treecfe415fccb0e0b51d9d019bd70896c387cf8285e /css/codeq.css
parentbea986b587a8e61234430bc1144609e1a5f117b4 (diff)
Show attempted/solved status in problem list
Diffstat (limited to 'css/codeq.css')
-rw-r--r--css/codeq.css12
1 files changed, 11 insertions, 1 deletions
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: ' ✔';
+}