Adding a hover-able destroy icon

This commit is contained in:
Jeremy Ashkenas
2010-10-25 15:48:34 -04:00
parent 62f43bde9d
commit d6e57b334c
2 changed files with 4 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 555 B

View File

@@ -146,11 +146,14 @@ html {
cursor: pointer;
width: 20px;
height: 20px;
background: url(destroy.png) no-repeat center center;
background: url(destroy.png) no-repeat 0 0;
}
#todo-list li:hover .todo-destroy {
display: block;
}
#todo-list .todo-destroy:hover {
background-position: 0 -20px;
}
#todo-stats {
*zoom: 1;