Resolve difference in app/assets/stylesheets/application.scss

This commit is contained in:
Lukas Eipert 2019-07-22 15:00:08 +02:00
parent 886a6957ec
commit 809b7f8b3d
No known key found for this signature in database
GPG key ID: 148BEA37CB35B2AC
3 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,5 @@
/*
This is a noop-file. In EE:
ee/app/assets/stylesheets/_ee/application_ee.scss
will take precedence over it and import more styles
*/

View file

@ -34,4 +34,8 @@
// Styles for JS behaviors.
@import "behaviors";
// EE-only stylesheets
@import "application_ee";
// CSS util classes
@import "utilities";

View file

@ -183,6 +183,12 @@ module Gitlab
config.assets.precompile << "pages/jira_connect.css"
end
# Import path for EE specific SCSS entry point
# In CE it will import a noop file, in EE a functioning file
# Order is important, so that the ee file takes precedence:
config.assets.paths << "#{config.root}/ee/app/assets/stylesheets/_ee"
config.assets.paths << "#{config.root}/app/assets/stylesheets/_ee"
config.assets.paths << "#{config.root}/vendor/assets/javascripts/"
config.assets.precompile << "snowplow/sp.js"