When hovering over a layer name, turn it blue and italic

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@826 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-10-14 05:18:52 +00:00
parent 8ce44e7755
commit 9f3cb7d668
1 changed files with 2 additions and 0 deletions

View File

@ -1361,9 +1361,11 @@ function svg_edit_setup() {
evt.preventDefault();
})
.mouseover(function(evt){
$(this).css({"font-style": "italic", "color":"blue"});
toggleHighlightLayer(this.textContent);
})
.mouseout(function(evt){
$(this).css({"font-style": "normal", "color":"black"});
toggleHighlightLayer();
});
$('#layerlist td.layervis').click(function(evt){