mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-31 19:20:25 +00:00
FIX Firefox task hover checkbox bug
This commit is contained in:
parent
916ac57917
commit
eeec3cf1bc
1 changed files with 6 additions and 1 deletions
|
|
@ -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: '¬'
|
||||
|
|
|
|||
Loading…
Reference in a new issue