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/assets/stylesheets/variables.scss | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) mode change 100644 => 100755 app/assets/stylesheets/variables.scss (limited to 'app/assets') diff --git a/app/assets/stylesheets/variables.scss b/app/assets/stylesheets/variables.scss old mode 100644 new mode 100755 index cdf81c818..0dded90b0 --- a/app/assets/stylesheets/variables.scss +++ b/app/assets/stylesheets/variables.scss @@ -1,8 +1,8 @@ -$color1: #282c37; // darkest -$color2: #d9e1e8; // lightest -$color3: #9baec8; // lighter -$color4: #2b90d9; // vibrant -$color5: #ffffff; // white -$color6: #df405a; // error red -$color7: #79bd9a; // succ green -$color8: #000000; // black +$color1: #282c37 !default; // darkest +$color2: #d9e1e8 !default; // lightest +$color3: #9baec8 !default; // lighter +$color4: #2b90d9 !default; // vibrant +$color5: #ffffff !default; // white +$color6: #df405a !default; // error red +$color7: #79bd9a !default; // succ green +$color8: #000000 !default; // black -- cgit