zuora_connect_ui 0.2.10 → 0.2.12

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
  SHA1:
3
- metadata.gz: 240fdf4190ed4c3d3a7d42180f7bfc6a946b7d3d
4
- data.tar.gz: 93db8237305f72e72b0bd67c7959244b67f29393
3
+ metadata.gz: 4f76c8b0687d22a650d076e75b83ae62b57a85ef
4
+ data.tar.gz: bece91e8b3cf33a55f40873c6da1bee7e36e6063
5
5
  SHA512:
6
- metadata.gz: 6e7f851483abca43be4b2911e381aa5d4dc35c20df639280cf488ebbc84947ff111e97d7f2d35760a9e8770569b1968d3f67ceec13726f9b51bfd80b5828e97c
7
- data.tar.gz: 2347f4f96225dfbcbde4cbcd8e156399269667859d0770225c788612fcf44b0ed2e1608d2f6dc1cdd836a9a90c8314d9860839b3da18a01e0d9838ae1219fa2a
6
+ metadata.gz: f87bdb76ef49d156566844845324eb683badac62f8fa9d55c6690692e08b8f7e56ab603f4363da711cb7f061455aca64562785df6fcf17053957f6a76b82c3b9
7
+ data.tar.gz: e0acaa316923d694aa0952b676658ccd60a99e32f493b314146e3eab24f93f715963ab365381ab906469e93fd8b2cb264c67313cf7b52d84a7306f53fec2b22c
@@ -1,6 +1,6 @@
1
1
  // 'Polyfill' for :placeholder-shown, since it's not standard yet
2
2
 
3
- $(document).on('focus focusout', '.zuo-textbox', function(e) {
3
+ $(document).on('focus focusout', '.zuo-textbox:not([type="date"])', function(e) {
4
4
  $("label[for='" + $(this).attr('id') + "']").toggleClass('floating', $(this).val() !== "");
5
5
  });
6
6
 
@@ -1,3 +1,4 @@
1
+ // OLD COLORS
1
2
  $primary: #384b5d;
2
3
  $neutral-1: #1a232b;
3
4
  $neutral-2: #d0d3da;
@@ -18,6 +19,31 @@ $neutral-shadow: rgba(
18
19
  0.3
19
20
  ); // disabled btn text color, dropdown box shadow color
20
21
 
22
+ // NEW ANJUNA COLORS
23
+ $anj-primary: #384b5d;
24
+ $anj-primary-dark: #2c3d4c;
25
+ $anj-secondary: #036ed1;
26
+ $anj-secondary-dark: #3c75a3;
27
+ $anj-highlight: #6ec5ab;
28
+ $anj-neutral: #6e7c89;
29
+ $anj-neutral-dark: #5d6974;
30
+ $anj-neutral-light: #a5aeb6;
31
+ $anj-dark: #1a232b;
32
+ $anj-light: #fff;
33
+ $anj-danger: #d23f3c;
34
+ $anj-success: #31b865;
35
+ $anj-warning: #ffe952;
36
+ $anj-background: #f1f2f4;
37
+ $anj-border: #e9ebee;
38
+ $anj-border-dark: #d3d7d8;
39
+ $anj-shadow: rgba(56, 75, 93, 0.3);
40
+ $anj-theater: rgba(56, 75, 93, 0.6);
41
+ $anj-font-family: "Muli", sans-serif;
42
+ $anj-spacing-closer: -0.025rem;
43
+ $anj-spacing-close: -0.0125rem;
44
+ $anj-spacing-wide: 0.0125rem;
45
+ $anj-spacing-wider: 0.031rem;
46
+
21
47
  $brand-primary: $primary; //New
22
48
  $brand-success: $support-2; //show
23
49
  $brand-info: #6d95a0; //Edit/Update
@@ -139,3 +165,4 @@ $check-icon: "\E936";
139
165
  @import "zuora_connect_ui/input";
140
166
  @import "zuora_connect_ui/modal";
141
167
  @import "zuora_connect_ui/tabs";
168
+ @import "zuora_connect_ui/tables";
@@ -9,7 +9,7 @@ body {
9
9
 
10
10
  p {
11
11
  color: $primary;
12
- font-size: 1rem;
12
+ font-size: 0.875rem;
13
13
  line-height: 1.5rem;
14
14
  }
15
15
 
@@ -0,0 +1,23 @@
1
+ .zuo-table {
2
+ width: 100%;
3
+
4
+ .zuo-table__th {
5
+ background-color: $anj-light;
6
+ border-top: 1px solid transparent;
7
+ border-bottom: 1px solid $anj-border;
8
+ padding: 0.657rem 0.75rem;
9
+ vertical-align: bottom;
10
+
11
+ color: $anj-neutral;
12
+ font-size: 0.75rem;
13
+ font-weight: 600;
14
+ line-height: 1.5;
15
+ text-transform: uppercase;
16
+ }
17
+
18
+ .zuo-table__td {
19
+ border-bottom: 1px solid $anj-border;
20
+ border-top: 1px solid transparent;
21
+ padding: 0.657rem 0.75rem;
22
+ }
23
+ }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ZuoraConnectUi
4
- VERSION = '0.2.10'
4
+ VERSION = '0.2.12'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora_connect_ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.10
4
+ version: 0.2.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Connect Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-28 00:00:00.000000000 Z
11
+ date: 2019-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap-sass
@@ -160,6 +160,7 @@ files:
160
160
  - app/assets/stylesheets/zuora_connect_ui/grid_view.scss
161
161
  - app/assets/stylesheets/zuora_connect_ui/input.scss
162
162
  - app/assets/stylesheets/zuora_connect_ui/modal.scss
163
+ - app/assets/stylesheets/zuora_connect_ui/tables.scss
163
164
  - app/assets/stylesheets/zuora_connect_ui/tabs.scss
164
165
  - app/helpers/datatable_helper.rb
165
166
  - app/helpers/input_helper.rb