Fix menu overlap issue
The button for the conversation menu was rendering on top of the global menu since the global menu was part of a position-fixed element and thus except from the normal document flow. // FREEBIE
This commit is contained in:
parent
34d50f94a9
commit
de745c3ba0
2 changed files with 2 additions and 4 deletions
|
@ -29,9 +29,8 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
position: fixed;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: $header-height;
|
height: 0;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
color: #f2f2f2;
|
color: #f2f2f2;
|
||||||
|
|
||||||
|
|
|
@ -38,9 +38,8 @@ body {
|
||||||
display: none; }
|
display: none; }
|
||||||
|
|
||||||
#header {
|
#header {
|
||||||
position: fixed;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 36px;
|
height: 0;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
color: #f2f2f2; }
|
color: #f2f2f2; }
|
||||||
#header button {
|
#header button {
|
||||||
|
|
Loading…
Reference in a new issue