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
This commit is contained in:
@@ -1361,9 +1361,11 @@ function svg_edit_setup() {
|
|||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
})
|
})
|
||||||
.mouseover(function(evt){
|
.mouseover(function(evt){
|
||||||
|
$(this).css({"font-style": "italic", "color":"blue"});
|
||||||
toggleHighlightLayer(this.textContent);
|
toggleHighlightLayer(this.textContent);
|
||||||
})
|
})
|
||||||
.mouseout(function(evt){
|
.mouseout(function(evt){
|
||||||
|
$(this).css({"font-style": "normal", "color":"black"});
|
||||||
toggleHighlightLayer();
|
toggleHighlightLayer();
|
||||||
});
|
});
|
||||||
$('#layerlist td.layervis').click(function(evt){
|
$('#layerlist td.layervis').click(function(evt){
|
||||||
|
|||||||
Reference in New Issue
Block a user