Revision 1293d3ed

b/ui/static/ie.css
1
div.machine div.actions a {
2
    width: auto;
3
}
4

  
5
div.machine div.actions {
6
    right: -93px;
7
}
8

  
9
div.machine {
10
    width: 528px;
11
}
b/ui/static/main.css
772 772
}
773 773

  
774 774
div.machine div.actions a.selected {
775
    color: #FF7F2A;
775
    color: #FF7F2A !important;
776 776
    width: 50px;
777 777
}
778 778

  
b/ui/templates/home.html
379 379
                $(this).parent().parent().find(".tab-name").text($(this).parent().find("a.current").attr("href"));
380 380
            }
381 381
        );
382
        
382

  
383
        //load IE css fixes
384
        if ($.browser.msie) {
385
            $("<link/>", {
386
               rel: "stylesheet",
387
               type: "text/css",
388
               href: "static/ie.css"
389
            }).appendTo("head");
390
        }
391

  
383 392
    </script>
384 393
    <!-- base notification for error/success reporting -->
385 394
    <a id="notification" rel="#error-success" href="#"></a>
b/ui/templates/machines_icon.html
723 723
$('.confirm_multiple button.yes').text('Confirm All');
724 724
$('.confirm_multiple button.no').text('Cancel All');
725 725

  
726

  
727
if ($.browser.msie) {
728
    //IE fix for div hover
729
    $("div.machine").live("mouseenter", function () {
730
        $(this).css("background-color","#A1C8DB");
731
        $(this).find(".actions a").css("color","black");
732
    });
733
    $("div.machine").live("mouseleave", function () {
734
        $(this).css("background-color","transparent");
735
        $(this).find(".actions a").css("color","transparent");
736
    });
737
}
726 738
</script>

Also available in: Unified diff