Setting the menu container width to 100% even if its status is
„collapsing“
This commit is contained in:
koenemann 2016-06-07 15:04:54 +02:00
parent 316e0c7cfc
commit 1a761eff72
3 changed files with 10 additions and 2 deletions

View File

@ -4631,6 +4631,9 @@ a.skip-link {
.navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px; }
.navbar .collapsing, .navbar .collapse.in {
width: 100%; }
.navbar-dark .navbar-toggle {
border: 1px solid #fff; }
@ -4691,7 +4694,7 @@ a.skip-link {
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font: normal normal normal 14px / 1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;

2
css/theme.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -112,7 +112,12 @@ right: 0px;
.icon-bar + .icon-bar {
margin-top: 4px;
}
}
.navbar {
.collapsing, .collapse.in {
width:100%;
}
}
.navbar-dark {