caboose-cms 0.9.217 → 0.9.218

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: 197067f684fafa4a905e5738704c16a1737670a0da44bda413d215c22597366d
4
- data.tar.gz: 36f29a42035a8aed6eba7e52511116b4f4113809bad65f896e1ffe3d14fb6971
3
+ metadata.gz: 98e776416b884130973c4e3d3e27c168c8d988f088dc2408c1bd2d7a59416cd3
4
+ data.tar.gz: 8eb670f4400d4c486568314c821cccbbf2903e88378774bf035a5dbfd89caf7e
5
5
  SHA512:
6
- metadata.gz: 19db87f6b3d0f0323f52f2d80c25710ffe7e0737801aa718ead684244df976e2ff5a09394e5555a3f9ad8cda4725faa7ef2b8c888fdcf710b23ab9c26f429650
7
- data.tar.gz: 6ca692a22a0e6cb0ad2046e06f6a7d3257d719b9af205413e865958b05ae9cb5aa16bc2bfe46ab1a362ebf7222d48692ba28ca68d483af3f8bd245a34bf30262
6
+ metadata.gz: b66093d9edf3896601560e83b72004f673e027394c5ed775735eec732f95b56d706a91645b407534affa0243c0a67284dc3acdd9bf90cc4cd690d79b81de3cab
7
+ data.tar.gz: e6e42f0c414dc0d81854abb26d846e209b024fd44f9bcb05a1ff8191a79ca1778ec29e11da19388c19323dcd8c667be60e7ae90761103ad361ec7f34c51fdb4c
@@ -48,17 +48,22 @@
48
48
  color: #282828;
49
49
  }
50
50
  &.cb {
51
- margin-top: 15px;
51
+ margin: 15px 0 10px 0;
52
52
  text-align: right;
53
+ padding: 0;
53
54
  label {
54
55
  display: inline-block;
55
56
  font-size: 14px;
56
57
  margin: 0 5px 0 0;
58
+ width: auto;
59
+ float: none;
60
+ padding: 0;
57
61
  }
58
62
  input[type="checkbox"] {
59
63
  width: auto;
60
64
  display: inline-block;
61
65
  margin: 0;
66
+ float: none;
62
67
  }
63
68
  }
64
69
  }
@@ -903,7 +903,7 @@ class Caboose::Schema < Caboose::Utilities::Schema
903
903
  [ :head_code, :text ],
904
904
  [ :body_open_code, :text ],
905
905
  [ :body_close_code, :text ],
906
- [ :recaptcha_threshold, :float, { :default => 0.5 } ]
906
+ [ :recaptcha_threshold, :float, { :default => 0.05 } ]
907
907
  ],
908
908
  Caboose::SiteMembership => [
909
909
  [ :site_id , :integer ],
@@ -1010,6 +1010,7 @@ class Caboose::Schema < Caboose::Utilities::Schema
1010
1010
  [ :custom_invoice_pdf , :string ]
1011
1011
  ],
1012
1012
  Caboose::Subscription => [
1013
+ [ :site_id , :integer ],
1013
1014
  [ :variant_id , :integer ],
1014
1015
  [ :user_id , :integer ],
1015
1016
  [ :date_started , :date ],
@@ -15,11 +15,7 @@ tabs = {
15
15
  <% tabs.each do |text, href| %>
16
16
  <li<%= raw request.fullpath == href ? " class='selected'" : '' %>><a href='<%= href %>'><%= raw text %></a></li>
17
17
  <% end %>
18
- <% if @site.is_master %>
19
- <li class="back"><input type="button" onclick="window.location='/admin/sites';" value="< Back" />
20
- <% else %>
21
18
  <li class="back"><input type="button" onclick="window.location='/admin';" value="< Back" />
22
- <% end %>
23
19
  </ul>
24
20
  <div id='content2'>
25
21
 
@@ -15,11 +15,7 @@ tabs = {
15
15
  <% tabs.each do |text, href| %>
16
16
  <li<%= raw request.fullpath == href ? " class='selected'" : '' %>><a href='<%= href %>'><%= raw text %></a></li>
17
17
  <% end %>
18
- <% if @site.is_master %>
19
- <li class="back"><input type="button" onclick="window.location='/admin/sites';" value="< Back" />
20
- <% else %>
21
18
  <li class="back"><input type="button" onclick="window.location='/admin';" value="< Back" />
22
- <% end %>
23
19
  </ul>
24
20
  <div id='content2'>
25
21
 
@@ -15,11 +15,7 @@ tabs = {
15
15
  <% tabs.each do |text, href| %>
16
16
  <li<%= raw request.fullpath == href ? " class='selected'" : '' %>><a href='<%= href %>'><%= raw text %></a></li>
17
17
  <% end %>
18
- <% if @site.is_master %>
19
- <li class="back"><input type="button" onclick="window.location='/admin/sites';" value="< Back" />
20
- <% else %>
21
18
  <li class="back"><input type="button" onclick="window.location='/admin';" value="< Back" />
22
- <% end %>
23
19
  </ul>
24
20
  <div id='content2'>
25
21
 
@@ -1,3 +1,3 @@
1
1
  module Caboose
2
- VERSION = '0.9.217'
2
+ VERSION = '0.9.218'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caboose-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.217
4
+ version: 0.9.218
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Barry
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-10 00:00:00.000000000 Z
11
+ date: 2018-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pg