-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 admin payment actions style table issue #2589
Fix admin payment actions style table issue #2589
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.
Thank you for trying to fix this, but we can’t just transform all tables in the admin into flexboxes.
A scrolling container around the tables (I think bootstrap has something for responsive tables) could be a less intrusive solution.
@tvdeyen I just changed the approach, what do you think? |
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.
Still one question.
@@ -1,4 +1,4 @@ | |||
<table class="index" id='payments' data-order-id='<%= @order.number %>'> | |||
<table class="index table table-sm table-responsive" id='payments' data-order-id='<%= @order.number %>'> |
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 we not change the table style here? Won’t adding just table-responsive
be enough to fix the issue?
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.
I just tested it and yes, we can use only table-responsive
, I sent the changes https://github.com/solidusio/solidus/pull/2589/files
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.
Thanks
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.
Thank you
What it does?
Solves: #2535
Preview
http://recordit.co/hR8Qjd0k61
Reference