diff options
author | Thomas Park <thomas@thomaspark.co> | 2015-07-02 16:47:52 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.co> | 2015-07-02 16:47:52 -0400 |
commit | 0e31fc27000acfd95a03f32815599aa766a4da87 (patch) | |
tree | 6914a009c0460b5524dfb57dbf75fbdf3f83da00 /sandstone | |
parent | 1013ac368365241f307e91ef9ba7f25806fe677e (diff) |
for sass, give $icon-font-path conditional value, fixes #453
Diffstat (limited to 'sandstone')
-rw-r--r-- | sandstone/_variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandstone/_variables.scss b/sandstone/_variables.scss index accb1521..57fa598e 100644 --- a/sandstone/_variables.scss +++ b/sandstone/_variables.scss @@ -76,7 +76,7 @@ $headings-color: inherit !default; //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower. //** Load fonts from this directory. -$icon-font-path: "../fonts/" !default; +$icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default; //** File name for all font files. $icon-font-name: "glyphicons-halflings-regular" !default; //** Element ID within SVG icon file. |