Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update edit message modal docs #299

Merged
merged 1 commit into from
Jun 18, 2024
Merged
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
18 changes: 9 additions & 9 deletions src/v2/styles/EditMessageForm/EditMessageForm-theme.scss
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
@use '../utils';

.str-chat {
/* The border radius used for the borders of the component */
/* The border radius used for the borders of the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-border-radius: none;

/* The text color used for the send button */
/* The text color used for the send button. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-send-button-color: var(--str-chat__primary-color);

/* The text color used for the cancel button */
/* The text color used for the cancel button. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-cancel-button-color: var(--str-chat__text-low-emphasis-color);

/* The background color of the component */
/* The background color of the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-background-color: transparent;

/* Top border of the component */
/* Top border of the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-border-block-start: none;

/* Bottom border of the component */
/* Bottom border of the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-border-block-end: none;

/* Left (right in RTL layout) border of the component */
/* Left (right in RTL layout) border of the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-border-inline-start: none;

/* Right (left in RTL layout) border of the component */
/* Right (left in RTL layout) border of the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-border-inline-end: none;

/* Box shadow applied to the component */
/* Box shadow applied to the component. Note for Angular SDK users: this variable isn't available starting from version 5 */
--str-chat__edit-message-modal-button-box-shadow: none;
}

Expand Down
Loading