normalize height for absolute Profile control positioning

This commit is contained in:
Norbert Renner 2014-05-27 16:09:03 +02:00
parent 9f2e15bff0
commit 3f41bc9a82

View file

@ -44,6 +44,8 @@ div.elevation {
} }
.title { .title {
padding-top: 4px; padding-top: 4px;
/* normalize height, for absolute Profile control positioning */
height: 17px;
} }
.title-name { .title-name {
font-size: larger; font-size: larger;
@ -68,6 +70,12 @@ div.elevation {
float: left; float: left;
} }
select {
max-width: 180px;
/* normalize height, for absolute Profile control positioning */
height: 24px;
}
table { table {
border-collapse: separate; border-collapse: separate;
border-spacing: 4px; border-spacing: 4px;
@ -117,7 +125,7 @@ td {
.leaflet-leftpane .leaflet-control:last-child { .leaflet-leftpane .leaflet-control:last-child {
position: absolute; position: absolute;
top: 432px; top: 441px;
bottom: 0px; bottom: 0px;
} }