From 3d3e32befb369f8c6a9f3ac1ee48bce3d266f4b8 Mon Sep 17 00:00:00 2001 From: Naouak Date: Sat, 15 Apr 2017 22:47:48 +0200 Subject: Check for a custom css file to help customization of instances (#1368) * User can create a custom.scss to customize their instance without modifying gitted files. * Add documentation for customization. * Forgot the helper file * Fix Style to pass codeclimate * Requests from maintainer. --- app/views/layouts/application.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 app/views/layouts/application.html.haml (limited to 'app/views/layouts/application.html.haml') diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml old mode 100644 new mode 100755 index e8253bd6f..a27c3de95 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -17,7 +17,7 @@ = ' - ' = site_title - = stylesheet_link_tag 'application', media: 'all' + = stylesheet_link_tag stylesheet_for_layout, media: 'all' = csrf_meta_tags = yield :header_tags -- cgit