Setting the menu container width to 100% even if its status is „collapsing“
This commit is contained in:
parent
316e0c7cfc
commit
1a761eff72
|
@ -4631,6 +4631,9 @@ a.skip-link {
|
||||||
.navbar-toggle .icon-bar + .icon-bar {
|
.navbar-toggle .icon-bar + .icon-bar {
|
||||||
margin-top: 4px; }
|
margin-top: 4px; }
|
||||||
|
|
||||||
|
.navbar .collapsing, .navbar .collapse.in {
|
||||||
|
width: 100%; }
|
||||||
|
|
||||||
.navbar-dark .navbar-toggle {
|
.navbar-dark .navbar-toggle {
|
||||||
border: 1px solid #fff; }
|
border: 1px solid #fff; }
|
||||||
|
|
||||||
|
@ -4691,7 +4694,7 @@ a.skip-link {
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font: normal normal normal 14px/1 FontAwesome;
|
font: normal normal normal 14px / 1 FontAwesome;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
text-rendering: auto;
|
text-rendering: auto;
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -112,7 +112,12 @@ right: 0px;
|
||||||
.icon-bar + .icon-bar {
|
.icon-bar + .icon-bar {
|
||||||
margin-top: 4px;
|
margin-top: 4px;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar {
|
||||||
|
.collapsing, .collapse.in {
|
||||||
|
width:100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-dark {
|
.navbar-dark {
|
||||||
|
|
Reference in New Issue