Improve layout of data browser pages

Use float to position the navigation controls and map on the right
rather than a table so that we get more consistent positioning and
avoid forcing the map of the right hand side of the viewport.
This commit is contained in:
Tom Hughes 2010-04-22 23:05:20 +01:00
parent 4ef8776490
commit 54bed8e9c0
10 changed files with 93 additions and 141 deletions

View file

@ -526,6 +526,28 @@ hr {
font-weight: bold;
}
/* Rules for the data browser */
#browse_navigation {
float: right;
width: 250px;
text-align: center;
margin-left: 10px;
}
#browse_map {
float: right;
width: 250px;
text-align: right;
margin-left: 10px;
}
#browse_map #small_map {
width: 250px;
height: 300px;
border: solid 1px black;
}
/* Rules for the trace list shown by the traces tab etc */
#trace_list {