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-75d572ba1dddmaster
parent
8ce44e7755
commit
9f3cb7d668
|
@ -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){
|
||||
|
|
Loading…
Reference in New Issue