Semantic-Org / Semantic-UI

Semantic is a UI component framework based around useful principles from natural language.
http://www.semantic-ui.com
MIT License
51.09k stars 4.95k forks source link

Inverted icon divider does not work! #6943

Open lTheMightyMl opened 4 years ago

lTheMightyMl commented 4 years ago
<head>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
</head>
<html>
<div class="ui inverted menu">
    <div class="ui item breadcrumb">
        <a class="section" href="index.html">Home</a>
        <i class="inverted right chevron icon divider"></i>
        <div class="active section" href="index.html">Home</div>
    </div>
</div>

</html>
<head>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
</head>
<html>
<div class="ui inverted menu">
    <div class="ui item breadcrumb">
        <a class="section" href="index.html">Home</a>
        <div class="inverted right chevron icon divider"></div>
        <div class="active section" href="index.html">Home</div>
    </div>
</div>

</html>

Neither of the codes above show any divider. Explicitly setting the color of the icon (\<i>) works.