From 916ac57917f1db794b0fbc05f7fedb9fe91de486 Mon Sep 17 00:00:00 2001 From: Zachary Kain Date: Fri, 15 Mar 2013 12:18:57 -0400 Subject: [PATCH 1/2] FIX Firefox outline freakout on tasks --- styles/app/tasks.styl | 1 + 1 file changed, 1 insertion(+) diff --git a/styles/app/tasks.styl b/styles/app/tasks.styl index b8dd2d11e7..789f8182b2 100644 --- a/styles/app/tasks.styl +++ b/styles/app/tasks.styl @@ -109,6 +109,7 @@ for $stage in $stages // an individual task entry // ------------------------ .task + overflow: hidden list-style: none clear: both padding: 0 0.5em 0 0.5em From eeec3cf1bcb499d405ef9b57d72f18383bcdd636 Mon Sep 17 00:00:00 2001 From: Zachary Kain Date: Fri, 15 Mar 2013 12:21:27 -0400 Subject: [PATCH 2/2] FIX Firefox task hover checkbox bug --- styles/app/tasks.styl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/styles/app/tasks.styl b/styles/app/tasks.styl index 789f8182b2..d02012c28c 100644 --- a/styles/app/tasks.styl +++ b/styles/app/tasks.styl @@ -202,8 +202,8 @@ for $stage in $stages position: relative // uncompleted icon label:after, label:before - content: '▨' // content: '◯' + content: '' display: block height: 1.714285714em width: 1.714285714em @@ -213,10 +213,15 @@ for $stage in $stages color: black opacity: 0.2 + label:after + content: '▨' label:before position: absolute left: 0 // hint at completed icon + label:hover:before, + label:focus:before + content: '' label:hover:after, label:focus:after content: '¬'