thecore_ui_commons 2.4.3 → 2.4.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb0697da6f177c3bace28cd572e62808247dec33f2aabe6de78da62e454e3ad0
4
- data.tar.gz: 0c540548e4b5e9ebe730e120df524185e86434726cfae8ca9d35fd4ee2875aa8
3
+ metadata.gz: 8158d74af4f7ef339f1168341064cf14f3519bc673ffb12e968070c4afa144dc
4
+ data.tar.gz: 309c09bb39ec4560652aebecae0b704ef1e238d49ffb6ddb7902a7d72492d7df
5
5
  SHA512:
6
- metadata.gz: 6c0fed430cb50e732802d151a58749fa87428d371b8f6d52d8eb49297a644e6eda5d7d631caee5e6bec049c6575236b1910cc50c6edba51a34a28fce10ce7b74
7
- data.tar.gz: 39fcb8e127da9f90c76f6e7dd2542663b15df105564aed909f70f48480a16da2c649a350204c6a1de330480b4c5f6b05d57c01f48e962eecd93c86fb35132a08
6
+ metadata.gz: 40870e56f8df0f49b50a2d1abfe919a5d51f2796f43216fcd268fdf591c95f40688b6a8c25214936cc5e9c67f690c62ed29bf21dcab10985d3e6de997ec6d409
7
+ data.tar.gz: 976904ec654f9c5c349cdad8bf8ded947860b9912398b930dfbd0ecdda6558d2e56f3de5e8abc9fed3c70cbc16b7c029099aa55874b70f111aebd1906502ea28
Binary file
@@ -4,7 +4,6 @@
4
4
  //= require apexcharts
5
5
 
6
6
  $(document).ready(function () {
7
-
8
7
  window.setTimeout(function() {
9
8
  $(".alert").fadeTo(1000, 0).slideUp(1000, function(){
10
9
  $(this).remove();
@@ -1,4 +1,4 @@
1
- <div class="col-md-4 col-md-offset-4" id="login-form">
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") %>
@@ -1,3 +0,0 @@
1
- <!-- Arrow to workaround the problem, on android default browser, of input fields being hidden by keyboard /-->
2
-
3
- <img src="<%= image_url('up-arrow.png') %>" class="img-responsive" id="up-arrow"/>
@@ -0,0 +1,3 @@
1
+ <img class="main-menu-app-logo" src="<%= image_url('customer_logo.png') %>"/>
2
+ <div id="main-menu-app-header">&nbsp;</div>
3
+ <div id="main-menu-app-description">&nbsp;</div>
@@ -29,18 +29,18 @@
29
29
  <body>
30
30
  <div class="jumbotron vertical-center">
31
31
  <div class="container">
32
- <div class="col-md-4 col-md-offset-4 text-center">
33
- <img class="main-menu-app-logo" style="width: 25%; max-width: 152px" src="<%= image_url('logo.png') %>"/>
32
+ <div class="logos">
33
+ <%=render partial: 'layouts/logos'%>
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 )
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.3
4
+ version: 2.4.7
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-09-21 00:00:00.000000000 Z
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
@@ -162,6 +163,7 @@ files:
162
163
  - app/views/kaminari/_paginator.html.erb
163
164
  - app/views/kaminari/_prev_page.html.erb
164
165
  - app/views/layouts/_footer.html.erb
166
+ - app/views/layouts/_logos.html.erb
165
167
  - app/views/layouts/_messages.html.erb
166
168
  - app/views/layouts/_navigation.html.erb
167
169
  - app/views/layouts/_navigation_links.html.erb