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 +4 -4
- data/app/assets/javascripts/zuora_connect_ui/input.js +1 -1
- data/app/assets/stylesheets/_zuora_connect_ui.scss +27 -0
- data/app/assets/stylesheets/zuora_connect_ui/base.scss +1 -1
- data/app/assets/stylesheets/zuora_connect_ui/tables.scss +23 -0
- data/lib/zuora_connect_ui/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f76c8b0687d22a650d076e75b83ae62b57a85ef
|
|
4
|
+
data.tar.gz: bece91e8b3cf33a55f40873c6da1bee7e36e6063
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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";
|
|
@@ -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
|
+
}
|
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.
|
|
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-
|
|
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
|