add Bootstrap:

- remove normalize.css, included
- adjust to Bootstrap's "box-sizing: border-box"
- conflict with Leaflet "label" class
This commit is contained in:
Norbert Renner 2014-08-27 17:01:00 +02:00
parent 32cde2b8e9
commit 5a277b0a34
5 changed files with 24 additions and 7 deletions

View file

@ -45,7 +45,7 @@ div.elevation {
.title {
padding-top: 4px;
/* normalize height, for absolute Profile control positioning */
height: 17px;
height: 21px;
}
.title-name {
font-size: larger;
@ -121,7 +121,7 @@ td {
.leaflet-leftpane .leaflet-control {
margin: 3px 5px;
width: 370px;
width: 386px;
}
/* Profile Control */
@ -185,3 +185,15 @@ textarea:focus {
stroke-dashoffset: 0;
}
}
/* override Bootstrap label for Leaflet layer switcher */
.leaflet-control-layers label {
max-width: none;
margin-bottom: 0px;
font-weight: normal;
/* normalize label height
| Firefox | Chrome |
Leaflet only | 21 | 20 |
Bootstrap | 23 | 22 |*/
height: 21px;
}