-
Notifications
You must be signed in to change notification settings - Fork 16
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
IBX-8647: MFU UI improvements #1301
Conversation
6321665
to
f5d073c
Compare
overflow: auto; | ||
margin-top: calculateRem(16px); | ||
margin: calculateRem(16px) 0; | ||
max-height: calc(90vh - 473px); |
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.
max-height: calc(90vh - 473px); | |
max-height: calc(90vh - calculateRem(473px)); |
@@ -96,6 +96,7 @@ export default class UploadPopupModule extends Component { | |||
closeBtnAttrs: { | |||
disabled: !itemsToUpload.length, | |||
}, | |||
...((hasAnyUploadedItems || hasAnyItemsToUpload) && { extraClasses: 'c-tooltip-popup--with-uploaded-items' }), |
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.
Personally I don't like this form, imho it's hard to read, I would do it as normal if below
if (hasAnyUploadedItems || hasAnyItemsToUpload) {
tooltipAttrs.extraClasses = 'c-tooltip-popup--with-uploaded-items';
}
af50f53
to
06a8fdd
Compare
@lucasOsti Screen.Recording.2024-07-30.at.13.34.49.mov |
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.
after expanding files details section, buttons are partially displayed
06a8fdd
to
089494a
Compare
|
Related PRs:
Description:
Modal without uploaded items:

Modal with uploaded items:

For QA:
DXP and standalone version test required
Documentation: