Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@
// Display apps in a grid
align-content: flex-start;
display: flex !important;
z-index: 1024 !important;
// Must stay below mail's .o-mail-ChatWindow (z-index: $zindex-sticky):
// both are full-height `position: fixed` panels that spatially overlap,
// so a value >= $zindex-sticky here permanently hides any open chat
// window whenever the apps grid is opened.
z-index: $zindex-sticky - 1 !important;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
Expand Down
Loading