This commit is contained in:
davegandy 2013-05-04 21:50:47 -04:00
parent 12f86a6b71
commit 5b900850ab
2 changed files with 12 additions and 0 deletions

View file

@ -142,6 +142,10 @@ ul.icons-ul > li [class^="icon-"],
ul.icons-ul > li .icon-li { ul.icons-ul > li .icon-li {
width: 0.6428571428571429em; width: 0.6428571428571429em;
} }
[class^="icon-"].hide,
[class*=" icon-"].hide {
display: none;
}
.icon-muted { .icon-muted {
color: #eeeeee; color: #eeeeee;
} }

View file

@ -145,6 +145,14 @@ ul.icons-ul {
} }
} }
// allows usage of the hide class directly on font awesome icons
[class^="icon-"],
[class*=" icon-"] {
&.hide {
display:none;
}
}
.icon-muted { .icon-muted {
color: @iconMuted; color: @iconMuted;
} }