No icons
Closed this issue · 4 comments
I've added scss version of semantic but my icons now dissapears.
need more info, code sample, gem version, etc.
I have a similar issue. I'm using SilverStripe so have run compass create -r semantic-ui-sass --using semantic-ui
in my /[siteroot]/themes/default/ directory. Semantic UI is running but is trying to load fonts and icons from /[siteroot]/images/semantic-ui/ and /[siteroot]/images/semantic-ui/. I tried adding variable $siteFolder : 'themes/default/';
to styles.scss with no success. I can't find any other references as to how to set up a different path.
Sass compilation returns:
WARNING: 'icons.woff' was not found (or cannot be read) in /var/www/[siteroot]/fonts/semantic-ui
gem: semantic-ui-sass (2.1.3.0)
gulpfile.js:
var compass = require('gulp-compass');
var gulp = require('gulp');
gulp.task('compass', function () {
gulp.src('themes/default/sass/*.scss')
.pipe(compass({
config_file: 'themes/default/config.rb',
css: 'themes/default/stylesheets',
sass: 'themes/default/sass'
}))
});
//Watch task
gulp.task('default', function () {
gulp.watch('themes/default/sass/*.scss', ['compass']);
});
There isn't any (semantic ui) themes directory or theme.config so maybe I'm missing something in the setup?
Same issue here. Using semantic-ui-sass 2.2.6 and rails 4.2.0.
works for me after overriding the $icon-font-path variable before your semantic import
with
$icons-font-path: '~/semantic-ui-sass/icons';