Bug 544300, IE isn't nearly important enough to warrant a :hover fix that causes this much lag

This commit is contained in:
Matt Claypotch 2010-09-09 16:41:17 -07:00
Родитель d3a8a4ae69
Коммит ebe065fdc1
2 изменённых файлов: 4 добавлений и 10 удалений

Просмотреть файл

@ -2556,16 +2556,18 @@ html[xmlns] .clearfix {
.addon-tags li .removetag {
display:none;
}
.addon-tags li.hover .removetag,
.addon-tags li:hover .removetag,
#tags .nojs li .removetag {
display:inline;
background: transparent url(../../img/amo2009/icons/cross.png) no-repeat left;
border: none;
margin: 0;
padding: 0;
padding-left: 12px;
text-indent: -1000px;
/* IE7 fix in ie7.css */
}
.html-rtl .addon-tags li.hover .removetag,
.html-rtl .addon-tags li:hover .removetag,
.html-rtl #tags .nojs li .removetag {
background-position: right;
}

Просмотреть файл

@ -54,14 +54,6 @@ $(document).ready(function(){
e.stopPropagation();
});
$("#tags .developertag, #tags .usertag")
.live("mouseover",function(){
$(this).addClass("hover");
})
.live("mouseout",function(){
$(this).removeClass("hover");
});
$("#addatag").click(function(e){
$(".addtagform")
.removeClass("hidden")