We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I feel like the current behaviour of the tables on mobile isn't ideal.
Normal:
Mobile
This makes it really hard to read, especially if the column values aren't as obvious as this example.
I feel something like this will make a lot more sense (taken form here):
Or just showing the column name next to the value could be enough.
The text was updated successfully, but these errors were encountered:
Hi, @lsarni.
Do you have an idea how to do this without JavaScript?
If JavaScript is the only way, we can work on a separate library for this purpose.
Sorry, something went wrong.
There is this codepen, I built a workaround for my case based on that but it's too hacky.
column do "<span class='column-title'>#{day}:</span><span class='common'> #{order.meal.menu.name}</span>".html_safe end
#attributes_table_arbre_html_menu { .column-title { display: none !important; } } @media only screen and (max-width: 767px) { #attributes_table_arbre_html_menu { .column-title { display: inline !important; text-decoration: underline; } } }
Web:
Mobile:
No branches or pull requests
I feel like the current behaviour of the tables on mobile isn't ideal.
Normal:
Mobile
This makes it really hard to read, especially if the column values aren't as obvious as this example.
I feel something like this will make a lot more sense (taken form here):
Or just showing the column name next to the value could be enough.
The text was updated successfully, but these errors were encountered: