mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-12-26 13:31:30 +08:00
implementing prefix from AlvinLing b7976b8a10
This commit is contained in:
parent
8f93d701a0
commit
b0d91e4a3a
@ -19,9 +19,9 @@
|
||||
* Twitter: http://twitter.com/fortaweso_me
|
||||
* Work: Lead Product Designer @ http://kyruus.com
|
||||
|
||||
$fontAwesomePath: "../font" !default
|
||||
$borderColor: #eee
|
||||
$iconMuted: #eee
|
||||
$fontAwesomePath: "../font" !default
|
||||
$fontAwesomeBorderColor: #eee !default
|
||||
$fontAwesomeMutedColor: #eee !default
|
||||
@mixin border-radius($radius)
|
||||
-webkit-border-radius: $radius
|
||||
-moz-border-radius: $radius
|
||||
@ -97,13 +97,13 @@ ul.icons
|
||||
width: .75em
|
||||
|
||||
.icon-muted
|
||||
color: $iconMuted
|
||||
color: $fontAwesomeMutedColor
|
||||
|
||||
// Icon Borders
|
||||
// -------------------------
|
||||
|
||||
.icon-border
|
||||
border: solid 1px $borderColor
|
||||
border: solid 1px $fontAwesomeBorderColor
|
||||
padding: .2em .25em .15em
|
||||
@include border-radius(3px)
|
||||
|
||||
|
17
sass/font-awesome.scss
vendored
17
sass/font-awesome.scss
vendored
@ -21,11 +21,14 @@
|
||||
|
||||
*/
|
||||
|
||||
$fontAwesomePath: "../font" !default;
|
||||
$borderColor: #eee;
|
||||
$iconMuted: #eee;
|
||||
@mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; border-radius: $radius; }
|
||||
|
||||
$fontAwesomePath: "../font" !default;
|
||||
$fontAwesomeBorderColor: #eee !default;
|
||||
$fontAwesomeMutedColor: #eee !default;
|
||||
@mixin border-radius($radius) {
|
||||
-webkit-border-radius: $radius;
|
||||
-moz-border-radius: $radius;
|
||||
border-radius: $radius;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'FontAwesome';
|
||||
@ -115,14 +118,14 @@ ul.icons {
|
||||
}
|
||||
|
||||
.icon-muted {
|
||||
color: $iconMuted;
|
||||
color: $fontAwesomeMutedColor;
|
||||
}
|
||||
|
||||
// Icon Borders
|
||||
// -------------------------
|
||||
|
||||
.icon-border {
|
||||
border: solid 1px $borderColor;
|
||||
border: solid 1px $fontAwesomeBorderColor;
|
||||
padding: .2em .25em .15em;
|
||||
@include border-radius(3px);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user