Merge pull request #369 from sabreuse/dev

Fix an issue with menu item layout at small screen sizes
This commit is contained in:
Skud
2014-07-14 12:00:59 +10:00

View File

@@ -190,19 +190,6 @@ p.stats {
}
}
// Overrides applying only to mobile view
@media only screen and (max-width: 767px) {
.sidebar {
margin-left: 0;
border-left: none;
padding-left: 0;
}
#map {
height: 300px;
}
}
li.crop-hierarchy {
list-style-type: disc;
@@ -255,3 +242,21 @@ li.crop-hierarchy {
.navbar-search{
padding-bottom: 7px;
}
// Overrides applying only to mobile view. This must be at the end of the overrides file.
@media only screen and (max-width: 767px) {
.sidebar {
margin-left: 0;
border-left: none;
padding-left: 0;
}
#map {
height: 300px;
}
.navbar .nav > li {
display: block;
}
}