-
Notifications
You must be signed in to change notification settings - Fork 9.4k
simplify product lists #2 #9019
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
simplify product lists #2 #9019
Conversation
Conflicts: app/code/Magento/Catalog/view/frontend/templates/product/list.phtml app/code/Magento/Catalog/view/frontend/templates/product/list/items.phtml app/code/Magento/Catalog/view/frontend/templates/product/listing.phtml app/code/Magento/Catalog/view/frontend/templates/product/widget/new/column/new_default_list.phtml app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_grid.phtml app/code/Magento/Catalog/view/frontend/templates/product/widget/new/content/new_list.phtml app/code/Magento/CatalogWidget/view/frontend/templates/product/widget/content/grid.phtml app/code/Magento/Reports/view/frontend/templates/widget/compared/column/compared_default_list.phtml app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_grid.phtml app/code/Magento/Reports/view/frontend/templates/widget/compared/content/compared_list.phtml app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_default_list.phtml app/code/Magento/Reports/view/frontend/templates/widget/viewed/column/viewed_images_list.phtml app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_grid.phtml app/code/Magento/Reports/view/frontend/templates/widget/viewed/content/viewed_list.phtml app/code/Magento/Wishlist/view/frontend/templates/item/list.phtml
[EngCom] Public Pull Requests - MAGETWO-70817: remove redundant else and use strict check #10271 - MAGETWO-70787: update phpserver to support versioned static urls #10250 - MAGETWO-70764: Fix overwrite default value image/file with NULL #10253 - MAGETWO-70761: Show values that are duplicate in attribute error msg #10213 - MAGETWO-70758: Fix for #4530 $product->getRatingSummary() always returns null […] #10248 - MAGETWO-70706: simplify product lists #2 #9019 - MAGETWO-70669: Fix fatal errors with deleteOptionsAndSelections #7711 - MAGETWO-70464: Fix shipping address can use for billing #10130 - MAGETWO-69913: magento/magento2 #9196 - Products ordered report doesn't show simple (child) products of configurable products #9908
This PR broke the product grid in Luma / blank themes — grids use inline-block method and thus cannot contain whitespace. I agree the previous solution was ugly (way overkill). Imo the nicest solution is to comment out any whitespace using HTML comment tags. The other solution is to use the font-size 0 trick, but I'm not a fan due to the complex CSS required. I'll create PR. |
Ah, there's already an issue: #19312 |
I've updated my old pull request #6881 in order to resolve conflicts