zuora_connect 2.0.52 → 2.0.53

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb0cb8bf799348f71ae8f7cca99a33545d3e3430df0f39756303c1756c1a724a
4
- data.tar.gz: f600a3dc9f7890dac632eb0a9881312110cc73893be6b65805921806b0ce5518
3
+ metadata.gz: 2ec4985bc5f156a8a8c302664cd44cd5e3854caf6dc8a84f6d28f152becea312
4
+ data.tar.gz: 2bff90b4661c0278040296378a9323d3b0c2129f02114a3d09c0d3b7ebcbabc8
5
5
  SHA512:
6
- metadata.gz: 8096cbe9f312f5e2c27d8c1546bde2ae20f95b6a0011b2de1c6da9b0824871ae24908555c0c117fda0a3f544e7393bde0ffc696a356213c3ab3a027b8979e66b
7
- data.tar.gz: 0aa2d3ac8bea866d58ef925c8a3a7a208b866ef4ed56f4f91b3746d42ef8d407fb8c06f3af873c049525e06abb69be16ef617f360ec5672591551aa851e9168d
6
+ metadata.gz: 49acfbcaf17f0f0f718298ee7403f75a052dab6e2eb2b8ac5cd87a43e817a801fc04ff46716c1aba33f91449fd4b0aacb29c47d04571b7f4bcfad9acf4c794a0
7
+ data.tar.gz: d9c275091253fb5ae6e5dea8ad59bdd49219879047d13f1bde0625d5fd2a5371e6c322446935be8b29d169d554134526d0eed7d7772f5d1684b27c151248b9ee
@@ -5,19 +5,18 @@
5
5
  <style>
6
6
  body {
7
7
  background-color: white;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
8
  margin: 0;
12
9
  }
13
10
 
14
- div.dialog {
11
+ div.connect-dialog {
15
12
  width: 95%;
16
13
  max-width: 33em;
17
14
  margin: 4em auto 0;
15
+ color: #2E2F30;
16
+ text-align: center;
18
17
  }
19
18
 
20
- div.dialog > div {
19
+ div.connect-dialog > div {
21
20
  border: 1px solid #CCC;
22
21
  border-right-color: #999;
23
22
  border-left-color: #999;
@@ -30,12 +29,12 @@
30
29
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
31
30
  }
32
31
 
33
- h1 {
32
+ div.connect-dialog > h1 {
34
33
  font-size: 100%;
35
34
  color: #3D4B5A;
36
35
  line-height: 1.5em;
37
36
  }
38
- div.dialog > p {
37
+ div.connect-dialog > p {
39
38
  margin: 0 0 1em;
40
39
  padding: 1em;
41
40
  background-color: #F7F7F7;
@@ -54,7 +53,7 @@
54
53
 
55
54
  <body>
56
55
  <% if defined?(exception) %>
57
- <div class="dialog" style='max-width: 74em;'>
56
+ <div class="connect-dialog" style='max-width: 74em;'>
58
57
  <div><h1><%= exception.class %> - '<%= exception.message %>'</h1></div>
59
58
  <p style='text-align: left;'>
60
59
  <% exception.backtrace.each do |line| %>
@@ -63,7 +62,7 @@
63
62
  </p>
64
63
  </div>
65
64
  <% elsif defined?(message) && defined?(title) %>
66
- <div class="dialog">
65
+ <div class="connect-dialog">
67
66
  <div><h1><%= title %></h1></div>
68
67
  <p><%= message.html_safe %></p>
69
68
  </div>
@@ -5,19 +5,18 @@
5
5
  <style>
6
6
  body {
7
7
  background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
8
  margin: 0;
12
9
  }
13
10
 
14
- div.dialog {
11
+ div.connect-dialog {
15
12
  width: 95%;
16
13
  max-width: 33em;
17
14
  margin: 4em auto 0;
15
+ color: #2E2F30;
16
+ text-align: center;
18
17
  }
19
18
 
20
- div.dialog > div {
19
+ div.connect-dialog > div {
21
20
  border: 1px solid #CCC;
22
21
  border-right-color: #999;
23
22
  border-left-color: #999;
@@ -30,13 +29,13 @@
30
29
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
31
30
  }
32
31
 
33
- h1 {
32
+ div.connect-dialog > h1 {
34
33
  font-size: 100%;
35
34
  color: #730E15;
36
35
  line-height: 1.5em;
37
36
  }
38
37
 
39
- div.dialog > p {
38
+ div.connect-dialog > p {
40
39
  margin: 0 0 1em;
41
40
  padding: 1em;
42
41
  background-color: #F7F7F7;
@@ -56,7 +55,7 @@
56
55
  <body>
57
56
  <!-- This file lives in public/500.html -->
58
57
  <% if defined?(exception) %>
59
- <div class="dialog" style='max-width: 74em;'>
58
+ <div class="connect-dialog" style='max-width: 74em;'>
60
59
  <div><h1><%= exception.class %> - '<%= exception.message %>'</h1></div>
61
60
  <p style='text-align: left;'>
62
61
  <% if !defined?(skip_exception) %>
@@ -75,7 +74,7 @@
75
74
  </p>
76
75
  </div>
77
76
  <% else %>
78
- <div class="dialog">
77
+ <div class="connect-dialog">
79
78
  <div>
80
79
  <h1>The launch url was invalid</h1>
81
80
  </div>
@@ -5,19 +5,18 @@
5
5
  <style>
6
6
  body {
7
7
  background-color: #EFEFEF;
8
- color: #2E2F30;
9
- text-align: center;
10
- font-family: arial, sans-serif;
11
8
  margin: 0;
12
9
  }
13
10
 
14
- div.dialog {
11
+ div.connect-dialog {
15
12
  width: 95%;
16
13
  max-width: 33em;
17
14
  margin: 4em auto 0;
15
+ color: #2E2F30;
16
+ text-align: center;
18
17
  }
19
18
 
20
- div.dialog > div {
19
+ div.connect-dialog > div {
21
20
  margin: 0 0 1em;
22
21
  border: 1px solid #CCC;
23
22
  border-right-color: #999;
@@ -33,14 +32,14 @@
33
32
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
34
33
  }
35
34
 
36
- h1 {
35
+ div.connect-dialog > h1 {
37
36
  font-size: 100%;
38
37
  color: #3D4B5A;
39
38
  line-height: 1.5em;
40
39
  }
41
40
 
42
41
 
43
- div.launch_button {
42
+ div.connect-dialog > div.launch_button {
44
43
  margin: 1em 0 1em;
45
44
  margin-right: auto;
46
45
  margin-left: auto;
@@ -64,7 +63,7 @@
64
63
  </style>
65
64
  </head>
66
65
  <body style='background: white;'>
67
- <div class="dialog">
66
+ <div class="connect-dialog">
68
67
  <div>
69
68
  <h1>Please select the instance you would like to launch.</h1>
70
69
  <% names.each do |id, name| %>
@@ -1,3 +1,3 @@
1
1
  module ZuoraConnect
2
- VERSION = "2.0.52"
2
+ VERSION = "2.0.53"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.52
4
+ version: 2.0.53
5
5
  platform: ruby
6
6
  authors:
7
7
  - Connect Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-02 00:00:00.000000000 Z
11
+ date: 2020-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: apartment