aimeos / ai-admin-jqadm

Aimeos e-commerce Vue.js+Bootstrap based admin interface
https://aimeos.org
GNU Lesser General Public License v3.0
204 stars 43 forks source link

Fix left-margin of multiline category names #121

Closed rowild closed 4 years ago

rowild commented 4 years ago

When a category name breaks, the second (and following) lines to not respect the left margin due to the fact that span is by definition set to display: inline:

long-category-name-before-fix

Adding display: inline-block to the class .ul.jqtree-tree .jqtree-title forces all lines to respect the left margin:

long-category-name-after-fix

aimeos commented 4 years ago

Thanks a lot!