-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(feedback): Configure feedback border radius #10289
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -215,6 +215,10 @@ export interface FeedbackTheme { | |
* Border styling for actor and dialog | ||
*/ | ||
border: string; | ||
/** | ||
* Border radius styling for actor | ||
*/ | ||
borderRadius: string; | ||
/** | ||
* Box shadow for actor and dialog | ||
*/ | ||
|
@@ -299,6 +303,14 @@ export interface FeedbackTheme { | |
* Border styles for form inputs when focused | ||
*/ | ||
inputOutlineFocus: string; | ||
/** | ||
* Border radius for dialog | ||
*/ | ||
formBorderRadius: string; | ||
/** | ||
* Border radius for form inputs | ||
*/ | ||
formContentBorderRadius: string; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not 100% sure but what about maybe There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we considered |
||
} | ||
|
||
export interface FeedbackThemes { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, is
form
clear here as a prefix (from a user pov) - meaning is it clear what this border radius is referring to?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we use
formTitle
, and refer to Feedback form in the docs, so this should be clearThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can see if @Jesse-Box can update this image for us too: https://docs.sentry.io/static/e2e105a53b6f4e5d8a8be9acb8a6ec70/07a9c/user-feedback-widget-customization.png