mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 20:27:28 +08:00
UX: fix chat drawer z-index (#27568)
This commit is contained in:
parent
160011793a
commit
f38bb5e3e4
|
@ -103,6 +103,7 @@ $z-layers: (
|
|||
"content": 400,
|
||||
),
|
||||
"dropdown": 300,
|
||||
"chat-drawer": 200,
|
||||
"timeline": 100,
|
||||
"base": 1,
|
||||
);
|
||||
|
|
|
@ -25,8 +25,8 @@ html.rtl {
|
|||
}
|
||||
|
||||
.chat-drawer-outlet-container {
|
||||
// higher than timeline, lower than composer, lower than user card (bump up below)
|
||||
z-index: z("composer", "content") - 1;
|
||||
// higher than timeline, lower than composer, dropdown, and user card
|
||||
z-index: z("chat-drawer");
|
||||
position: fixed;
|
||||
right: var(--composer-right, 20px);
|
||||
left: 0;
|
||||
|
|
Loading…
Reference in New Issue
Block a user