You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason for the problem is a collision between class name "list" with a icon named "list".
The approach to fix this by making the list selector more specific (#6510) fixes this only for the current situation. We could run into random collisions in the future when new icons appear in font awesome.
An alternative is to prefix icons in general, which would solve this once and for all. This carries the trade off that we would probably need to support both icon class names for a while.
<i class="ui-list icon"> instead of <i class="list icon">
Steps
<div class="ui list">
or<div class="list">
<i class="list icon"></i>
for anitem
Expected Result
list icon
has same padding / offset as othersActual Result
list icon
has weird padding / offsetVersion
2.3.1
Testcase
https://jsfiddle.net/8prnh2ym/
The text was updated successfully, but these errors were encountered: