Hi Nathan; I just had that same issue with Glyphicons, and can confirm that you need to bump up your Gemfile dependency on sass-rails 4.x to 5.x so that it picks up it's own updated dependency on sass >- 3.2. I set mine to
```# Use SCSS for stylesheets # Need at least sass-rails 5.0 so that it uses sass >= 3.3 in order to support @at-root directive # that caused grief with Glyphicons in bootstrap-sass. gem 'sass-rails', '~> 5.0.4' ``` See this issue for more details: https://github.com/twbs/bootstrap-sass/issues/920 Tim On Tuesday, July 14, 2015 at 3:37:29 PM UTC-4, Nathan Peters wrote: > > Hello Stefan. > > I finally got your bootstrap3 branch installed and running with Hobo! The > magic commands that worked for me were (from the vendor/gems directory): > > git clone -b bootstrap3 git://github.com/informatom/hobo_bootstrap > git clone -b bootstrap3 git://github.com/informatom/hobo_bootstrap_ui > > Then I just made your Gemfile mods. > > It looks like I may have some customization ahead of me. On the first page > of an initial Hobo app the glyphicon on the search button is missing, in > it's place is one of those unprintable character boxes. Plus the search > button is shifted down in relation to the search text field. And the user > dropdown to the right is shifted down even further. > > So as I make my modification should I be doing this in the bootstrap3 > branch of hobo_bootstrap, the Dryml tags or in CSS? > > Thanks for the great work getting Bootstrap to Hobo! > -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/hobousers. For more options, visit https://groups.google.com/d/optout.
