discourse/app/assets/stylesheets/common.css.erb

18 lines
547 B
Plaintext
Raw Normal View History

2013-08-27 16:40:30 -04:00
// Manifest
//
//= require ./vendor/normalize
//= require ./vendor/bootstrap
//= require ./common/foundation/base
2013-08-27 16:40:30 -04:00
//= require ./vendor/font_awesome/font-awesome
//= require ./vendor/chosen
//= require_tree ./common/components
//= require ./common/foundation/helpers
//= require_tree ./common
2013-08-27 16:40:30 -04:00
<%
# TODO this is very tricky, we want to add a dependency here on files that may not yet exist
# otherwise in dev we are often stuck nuking the tmp/cache directory
DiscoursePluginRegistry.stylesheets.each do |css|
require_asset(css)
end
%>