2013-05-23 08:04:02 -05:00
|
|
|
---
|
|
|
|
---
|
2013-05-23 14:10:10 -04:00
|
|
|
{% include license-code.less %}
|
2013-01-01 21:37:41 -05:00
|
|
|
|
2012-12-24 00:40:46 -06:00
|
|
|
.icon-large {
|
|
|
|
font-size: 4/3em;
|
|
|
|
margin-top: -4px;
|
|
|
|
padding-top: 3px;
|
|
|
|
margin-bottom: -4px;
|
|
|
|
padding-bottom: 3px;
|
2013-01-17 12:18:00 -05:00
|
|
|
vertical-align: middle;
|
2012-06-12 14:00:23 +02:00
|
|
|
}
|
|
|
|
|
2013-01-17 12:18:00 -05:00
|
|
|
.nav {
|
2012-12-24 00:40:46 -06:00
|
|
|
[class^="icon-"],
|
|
|
|
[class*=" icon-"] {
|
2012-12-29 11:38:38 -06:00
|
|
|
vertical-align: inherit;
|
2012-12-24 00:40:46 -06:00
|
|
|
margin-top: -4px;
|
|
|
|
padding-top: 3px;
|
|
|
|
margin-bottom: -4px;
|
|
|
|
padding-bottom: 3px;
|
2013-01-17 12:18:00 -05:00
|
|
|
&.icon-large {
|
|
|
|
vertical-align: -25%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-pills, .nav-tabs {
|
|
|
|
[class^="icon-"],
|
|
|
|
[class*=" icon-"] {
|
|
|
|
&.icon-large {
|
|
|
|
line-height: .75em;
|
|
|
|
margin-top: -7px;
|
|
|
|
padding-top: 5px;
|
|
|
|
margin-bottom: -5px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-09 18:47:02 -04:00
|
|
|
ul.icons-ul {
|
|
|
|
text-indent: -1em;
|
|
|
|
margin-left: 30/14em;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
.icon-li {
|
|
|
|
width: 1em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-17 12:18:00 -05:00
|
|
|
.btn {
|
|
|
|
[class^="icon-"],
|
|
|
|
[class*=" icon-"] {
|
|
|
|
&.pull-left, &.pull-right { vertical-align: inherit; }
|
|
|
|
&.icon-large {
|
|
|
|
margin-top: -.5em;
|
|
|
|
}
|
2012-12-24 00:40:46 -06:00
|
|
|
}
|
2012-06-12 14:00:23 +02:00
|
|
|
}
|
|
|
|
|
2012-12-29 11:38:38 -06:00
|
|
|
a [class^="icon-"],
|
|
|
|
a [class*=" icon-"] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2012-12-24 00:40:46 -06:00
|
|
|
|
2013-05-07 15:05:08 -04:00
|
|
|
.ie7icon(@inner) { *zoom: ~"expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '@{inner}')"; }
|
2012-06-12 14:00:23 +02:00
|
|
|
|
2013-05-23 08:04:02 -05:00
|
|
|
{% for icon in icons %}
|
|
|
|
.icon-{{ icon.id }} {
|
|
|
|
.ie7icon('&#x{{ icon.unicode }};');
|
|
|
|
}
|
|
|
|
{% for alias in icon.aliases %}
|
|
|
|
.icon-{{ alias }} {
|
|
|
|
.ie7icon('&#x{{ icon.unicode }};');
|
|
|
|
}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|