
The responsive menu on the 'default' theme shouldn't have the little 'arrow' associated with it. Closes-bug: #1539972 Change-Id: Icb4a500e9bd3bb1e11853391a5357876ffa61348
29 lines
437 B
SCSS
29 lines
437 B
SCSS
.navbar {
|
|
border-top: none;
|
|
border-right: none;
|
|
border-left: none;
|
|
|
|
// Specificity Required
|
|
.navbar-toggle {
|
|
border-color: transparent;
|
|
}
|
|
|
|
// Pushes the menu slightly down from the navbar
|
|
li > .dropdown-menu {
|
|
margin-top: 2px;
|
|
|
|
@media (max-width: $screen-sm) {
|
|
&:after,
|
|
&:before {
|
|
border: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Specificity required
|
|
.topbar {
|
|
.navbar {
|
|
margin-bottom: 0;
|
|
}
|
|
} |