Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,11 @@ body.block_ai_chat_openfull a#block_ai_chat_openfull {
color: #007bff;
}

body.block_ai_chat_chatwindow.block_ai_chat_open .navbar.fixed-top,
body.block_ai_chat_dockright.block_ai_chat_open .navbar.fixed-top {
z-index: 1058;
}

body.block_ai_chat_dockright.block_ai_chat_open #page-wrapper #page,
body.block_ai_chat_dockright.block_ai_chat_open #sticky-footer {
margin-right: 50%;
Expand Down
10 changes: 10 additions & 0 deletions styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,16 @@ body.block_ai_chat_openfull {
}
}

// MBS-10833: When the chat window or dock-right panel is open it renders as a modal
// (z-index 1057). Raise the Boost navbar above it so its popovers
// (e.g. the user-profile menu) stay visible.
body.block_ai_chat_chatwindow.block_ai_chat_open,
body.block_ai_chat_dockright.block_ai_chat_open {
.navbar.fixed-top {
z-index: 1058;
}
}

body.block_ai_chat_dockright {
&.block_ai_chat_open {
#page-wrapper #page,
Expand Down
Loading