moved layers list styling to CSS
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2450 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
@@ -189,11 +189,11 @@ select {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top: 1px;
|
top: 1px;
|
||||||
bottom: 0px;
|
bottom: 0;
|
||||||
right: 0px;
|
right: 0;
|
||||||
width: 0px;
|
width: 0;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
margin: 0px;
|
margin: 0;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
}
|
}
|
||||||
@@ -314,6 +314,11 @@ select {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#layerlist td.layername:hover {
|
||||||
|
color: blue;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
#layerlist tr.layersel td.layername {
|
#layerlist tr.layersel td.layername {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3728,11 +3728,9 @@
|
|||||||
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