thecore_ui_commons 2.4.2 → 2.4.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/images/customer_logo.png +0 -0
- data/app/assets/javascripts/thecore_ui_commons/thecore.js +0 -1
- data/app/views/devise/sessions/new.html.erb +1 -1
- data/app/views/layouts/_footer.html.erb +0 -3
- data/app/views/layouts/thecore.html.erb +7 -7
- data/config/initializers/thecore_ui_commons_application_config.rb +1 -0
- data/db/seeds.rb +3 -2
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fbafb526c5885971ca32dcbce0236a2619c8d7d2f82b907e4ecd49a9ad407d3
|
4
|
+
data.tar.gz: 1e8fa815ac2255e6ea94541ec1bd47cfeac72128384c2654bdc90358ddf2d706
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b99994c188069bd29bcd0fca8ed39d3f7acb696ea96190d3f6d37723caad96d30ed984152144add44dab727198487ba02a5419df90676e745ff1c2fc8eccee72
|
7
|
+
data.tar.gz: 19e313a5a344cf8bf4de01047b501c63fa5c4a18146633884887f50b8de09fa39d9680b9aad38e041a7293d314e20697996f33140e36f4c6dbb3edae486c44ff
|
Binary file
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<div class=
|
1
|
+
<div class=login-container id="login-form">
|
2
2
|
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
|
3
3
|
<div class="field">
|
4
4
|
<%= f.text_field :login, autofocus: true, :class => "form-control", placeholder: t("devise.sessions.new.login") %>
|
@@ -29,18 +29,18 @@
|
|
29
29
|
<body>
|
30
30
|
<div class="jumbotron vertical-center">
|
31
31
|
<div class="container">
|
32
|
-
<div class="
|
33
|
-
<img class="main-menu-app-logo"
|
32
|
+
<div class="logos">
|
33
|
+
<img class="main-menu-app-logo" src="<%= image_url('customer_logo.png') %>"/>
|
34
34
|
</div>
|
35
|
-
<%- unless flash.blank? %>
|
36
|
-
<div class="col-md-4 col-md-offset-4" style="margin-top: 1em;">
|
37
|
-
<%= render partial: 'shared/flash' %>
|
38
|
-
</div>
|
39
|
-
<%-end%>
|
40
35
|
<%= yield %>
|
41
36
|
</div>
|
42
37
|
</div>
|
43
38
|
|
39
|
+
|
40
|
+
<%- unless flash.blank? %>
|
41
|
+
<%= render partial: 'shared/flash' %>
|
42
|
+
<%-end%>
|
43
|
+
|
44
44
|
<%= render 'layouts/footer' %>
|
45
45
|
</body>
|
46
46
|
</html>
|
@@ -8,6 +8,7 @@ Rails.application.configure do
|
|
8
8
|
config.assets.precompile += %w( android-chrome-192x192.png )
|
9
9
|
config.assets.precompile += %w( android-chrome-512x512.png )
|
10
10
|
config.assets.precompile += %w( logo.png )
|
11
|
+
config.assets.precompile += %w( customer_logo.png )
|
11
12
|
config.assets.precompile += %w( up-arrow.png )
|
12
13
|
config.assets.precompile += %w( thecore.js )
|
13
14
|
config.assets.precompile += %w( thecore.css )
|
data/db/seeds.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
1
|
puts "Loading ThecoreUiCommons seeds"
|
2
|
-
|
3
|
-
|
2
|
+
|
3
|
+
Thecore::Seed.save_setting :importer, :import_from_folder, "tmp/imports"
|
4
|
+
Thecore::Seed.save_setting :importer, :extension, "txt"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thecore_ui_commons
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriele Tassoni
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thecore_background_jobs
|
@@ -122,6 +122,7 @@ files:
|
|
122
122
|
- app/assets/images/android-chrome-192x192.png
|
123
123
|
- app/assets/images/android-chrome-512x512.png
|
124
124
|
- app/assets/images/apple-touch-icon.png
|
125
|
+
- app/assets/images/customer_logo.png
|
125
126
|
- app/assets/images/favicon-16x16.png
|
126
127
|
- app/assets/images/favicon-32x32.png
|
127
128
|
- app/assets/images/favicon.ico
|