mirror of https://github.com/zulip/zulip.git
Cause the composebox to be on top of the "more messages" popup.
If this is not the case, then you can't actually click the "Press Enter to send" checkbox in the composebox (or anything in the space occupied by where the popup will go). This actually is not a perfect solution because that area still remains unclickable for anything else. (In particular, for example, scroll a message's "Info" link and then try to click on it -- you can't! The click is captured by the #notifications-area div.) http://www.vinylfox.com/forwarding-mouse-events-through-layers/ proposes an alternative more general way of dealing with this, but it seems like a real pain. This fixes Trac #1017. (imported from commit 9cfde1cfff63ab32ae7d129980c47567e221eac3)
This commit is contained in:
parent
4e4e15bb4a
commit
41c0605fe6
|
@ -492,6 +492,7 @@ img.inline_profile_picture {
|
|||
bottom: 0px;
|
||||
background: white;
|
||||
max-width: 670px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* Like .nav-tabs > li > a */
|
||||
|
@ -946,7 +947,6 @@ table.floating_recipient {
|
|||
|
||||
#notifications-area {
|
||||
position: fixed;
|
||||
z-index: 9000;
|
||||
bottom: 0px;
|
||||
right: 20px;
|
||||
width: 200px;
|
||||
|
@ -954,6 +954,7 @@ table.floating_recipient {
|
|||
}
|
||||
|
||||
#notifications-bar {
|
||||
z-index: 9000;
|
||||
position: absolute;
|
||||
bottom: 0px; /* necessary to get slideUp, slideDown directions correct */
|
||||
width: 100%;
|
||||
|
|
Loading…
Reference in New Issue