-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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 table view #37870
Fix table view #37870
Conversation
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.
Could the input fields be a little longer to fill up empty spaces?
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.
Looks good anyway 👍
Is the |
Thanks for remark |
a6b780e
to
09547d1
Compare
77e8332
to
b847914
Compare
COnflicts. CI stopped to free resources for mergeable PRs |
f0aaa08
to
a108936
Compare
I think removing the stickyness of the right action buttons is quite bad for a general user experience. Can you elaborate on the reasons why sticky is not working? Also cc @jancborchardt for that |
Sticky on master was already broken. Because z-indexes were wrong implemented, please look in:
Current master: |
Proposals regarding sticky + z-index issue: Render
Generate progressive z-index - set each next row less
|
@juliushaertl any suggestion how to improve this? Also @jancborchardt |
@AndyScherzinger Sounds reasonable – I missed that the stickyness was already broken on master as mentioned by @JuliaKirschenheuter. Let’s keep it separate, get the table fixes in, and fix the stickyness separately. (Just for reference, we got reports for it not being discoverable which is why we added it. :) |
So then 👍 from my point, but please open a follow-up issue so we can track the stickyness problem. :) |
Ok, sticky issue has been already existed. I would suggest to move forwards without |
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.
Looks good design-wise! :)
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
a108936
to
cb852ef
Compare
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.
The bug shows on our pre-production testing instance too. Filed #38245. @JuliaKirschenheuter please have a look |
Summary
Create a grid for users view.
One visual change: made input fields visible in editing mode.
AFTER STRUCTURE CHANGES (TABLE) STYLES RESPONSIBLE FOR ACTIONS WHILE EDITING A ROW WERE BROKEN
Related (same issue here): #37860
I've adapted styles and now action menu is not broken anymore. But i had to remove
position: sticky
for it.It is absolutely valid to have a vertical scrolling inside of a table.
position:sticky
in this case causes too much problems and because of it i would like to leave implementation like this.Checklist