-
Notifications
You must be signed in to change notification settings - Fork 15
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
fix: download Button name and tooltip added #1441
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: mariyaraj <[email protected]>
2c9712e
to
3fb37ed
Compare
Please join a snapshot to your PR. |
Could you clarify what kind of snapshot you need? I am new here and I am not sure, what should I do? |
#1185 includes two screenshots ; could you include the same screenshots with the visual changes you are proposing. |
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.
#1185 includes two screenshots ; could you include the same screenshots with the visual changes you are proposing.
@ericleponner Here are screenshots after my changes: |
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.
Download Transaction History
is long : we should replace it byDownload
.Download Transaction History
is fine fortitle
attribute but cannot be hard-coded becauseDownloadButton
is re-used in other views and different contexts- so title / tooltip must be parameterized by adding a new prop to
DownloadButton
(egbuttonTitle
) - some tooltip text must be defined for other
DownloadButton
usage ; your proposals are welcome
- so title / tooltip must be parameterized by adding a new prop to
- when window width is small, we should hide
Download
and keep the icon only (as it is today)Footer
view (line 40) shows how to do that
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.
This is useful for record keeping and tax reporting.
is a bit too much specific : remove it.
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.
- dialog titles are left-aligned everywhere so keep it left-aligned
- inline help text should be left-aligned too (we have other dialogs like this)
- remove
This is useful …
- when possible we try to avoid specific CSS definitions and prefer to use Bulma style classes
- here you can probably achieve the same visual with
has-text-grey
andmt-x
classes - and remove
dialog-title-container
anddialog-subtitle
- here you can probably achieve the same visual with
@ericleponner Changes committed. Here the screenshots: |
Fix for #1185