css on edit page

This commit is contained in:
Sanj 2012-08-17 13:15:05 +05:30
parent cce9a53539
commit d7d36c9781
2 changed files with 16 additions and 3 deletions

View File

@ -160,7 +160,7 @@ var baseLayers = {
};
var layersControl = L.control.layers(baseLayers, wmsLayers, {
'position': 'topleft',
'position': 'bottomleft',
'collapsed': false
}).addTo(map);

View File

@ -26,11 +26,24 @@ html, body {
right: 45px;
bottom: 10px;
overflow: auto;
background: rgba(204,204,204,0.6);
background: rgba(255,255,255,0.7);
}
.selectedItem {
background-color: green;
background-color: #7EF6EF;
}
#itemsList li {
cursor:pointer;
list-style-type: none;
margin-bottom: 40px;
font-family: sans-serif;
font-size: 17px;
color: #333;
}
#itemsList li:hover {
color: #000;
}
#opacityControl {