Skip to content
Merged
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 src/styles/Message.scss
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,11 @@
position: relative;
display: none;
}

&--options.str-chat-angular__message-simple__actions__action--options--editing {
position: relative;
display: flex;
}
}
}

Expand Down
3 changes: 2 additions & 1 deletion src/styles/MessageInputFlat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@
}
}

.rfu-image-previewer {
.rfu-image-previewer,
.rfu-image-previewer-angular-host {
flex: 1 1 100%;

&__image {
Expand Down
3 changes: 1 addition & 2 deletions src/styles/Modal.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
.str-chat__modal {
background: var(--black);
background: var(--modal-overlay-color);
Copy link
Copy Markdown
Contributor Author

@szuperaz szuperaz Nov 15, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This affects the React SDK as well

The problem was that not only the modal layout was transparent, but the modal itself (before and after screenshots attached)
Screenshot 2021-11-15 at 17 11 14

Screenshot 2021-11-15 at 17 21 09

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DanC5 for some reason I couldn't add you as a reviewer, but please review this MR

position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10000;
opacity: 0.89;
display: none;
align-items: center;
justify-content: center;
Expand Down
2 changes: 2 additions & 0 deletions src/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,6 @@ $border-radius: 16px;
--white: #ffffff;
--white-smoke: #f2f2f2;
--white-snow: #fcfcfc;

--modal-overlay-color: rgba(0, 0, 0, 0.89);
}