Use HTML and CSS buttons instead of dojo widgets

This commit is contained in:
Tom MacWright
2012-10-17 11:24:12 -04:00
parent a179eb2a26
commit 6c9bcbb995
2 changed files with 41 additions and 15 deletions

View File

@@ -1,3 +1,33 @@
/* Additional CSS rules will go here */
.currentMode { font-weight: bold; }
#zoombuttons {
position:absolute;
right:20px;
top:20px;
}
#zoombuttons button {
width:30px;
height:30px;
text-align:center;
margin:0;
background:#fff;
color:#555;
font:bold 20px/20px 'Helvetica';
border:1px solid #888;
}
#zoombuttons button:active {
background:#eee;
}
#zoombuttons #zoomIn {
border-radius: 4px 0 0 4px;
}
#zoombuttons #zoomOut {
border-left:0;
border-radius: 0 4px 4px 0;
}