mirror of https://github.com/zulip/zulip.git
css: Fix alert-bar-container CSS blocking "Home" button.
Because the alert-bar-container had the full width of the page, it's higher z-index caused it to break clicking on things.
This commit is contained in:
parent
2e65dc1206
commit
2506c691b8
|
@ -2408,9 +2408,8 @@ button.topic_edit_cancel {
|
|||
|
||||
#home .alert-bar-container {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
top: 41px;
|
||||
left: 0px;
|
||||
left: 320px;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
|
@ -2427,7 +2426,7 @@ button.topic_edit_cancel {
|
|||
padding: 10px 35px 10px 10px;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
z-index: 99;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
#home .alert-bar .alert-icon {
|
||||
|
|
Loading…
Reference in New Issue