Fix/improve UI feedback on undo/redo buttons

This commit is contained in:
John Firebaugh
2012-11-25 13:30:04 -04:00
parent ca38da7cbd
commit e022e5f85b
4 changed files with 49 additions and 12 deletions
+7 -2
View File
@@ -84,11 +84,16 @@ input[type=text]:focus {
padding:10px;
}
#bar button:hover {
#bar button[disabled] {
color:#eee;
cursor:auto;
}
#bar button:hover:not([disabled]) {
background:#eee;
}
#bar button.active {
#bar button.active:not([disabled]) {
background:#eee;
color:#000;
}