Skip to content

Commit

Permalink
Fix: remove text-decoration, correct missing hover state on close but…
Browse files Browse the repository at this point in the history
…ton due to ordering of rules
  • Loading branch information
necolas committed Apr 2, 2011
1 parent 3e55259 commit 031a89b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions jquery.autoSuggest.css
Expand Up @@ -105,6 +105,7 @@
font-size: 14px;
font-weight: bold;
text-shadow: 0 1px 1px #fff;
text-decoration: none;
color: #5491be;
cursor: pointer;
-webkit-transition: color .1s ease-in;
Expand All @@ -113,22 +114,20 @@
transition: color .1s ease-in;
}

.as-selections .as-selection-item .as-close:hover {
color: #1b3c65;
.as-selections .as-selection-item:hover .as-close {
color: #4d70b0;
}

.as-selections .as-selection-item .as-close:hover,
.as-selections .as-selection-item .as-close:focus,
.as-selections .as-selection-item .as-close:active {
color: #4d70b0;
color: #1b3c65;
}

.as-selections .as-selection-item.blur .as-close {
color: #999;
}

.as-selections .as-selection-item:hover .as-close {
color: #4d70b0;
}

/* ------------------------------------------------------------------------------------------------------------- SUGGESTIONS LIST */

.as-results {
Expand Down

0 comments on commit 031a89b

Please sign in to comment.