Can someone explain why the panel-header displays all "-" instead of "+"?
When I click on the panel, it changes all "-" to "+". This happens consistently, not just the first time the page loads.
My CSS code:
.panel-heading a:after {
font-family: 'Glyphicons Halflings';
content: "\2212"; /* Plus */
float: right;
color: #ebebeb;
background-color:#fff;
padding:12px;
font-size:12px;
border-radius:6px;
}
.panel-heading a.collapsed:after {
content: "\2b";
}
If you want to see the full code, check out this Jsfiddle link.
Any ideas on what mistake I may have made?