Merge pull request #3467 from matrix-org/bwindels/cider-formatbar-zindex

Fix: formatbar appearing below other elements
pull/21833/head
Bruno Windels 2019-09-23 12:31:22 +00:00 committed by GitHub
commit fc26850d9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -23,6 +23,9 @@ limitations under the License.
border-radius: 4px; border-radius: 4px;
background-color: $message-action-bar-bg-color; background-color: $message-action-bar-bg-color;
user-select: none; user-select: none;
// equal to z-index of mx_ReplyPreview and mx_RoomView_statusArea (1000)
// but as it appears after them in the DOM, will appear on top.
z-index: 1000;
&.mx_MessageComposerFormatBar_shown { &.mx_MessageComposerFormatBar_shown {
display: block; display: block;