zuora_connect_ui 0.2.7 → 0.2.8
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/stylesheets/zuora_connect_ui/base.scss +9 -1
- data/app/assets/stylesheets/zuora_connect_ui/buttons.scss +1 -1
- data/app/assets/stylesheets/zuora_connect_ui/datatables.scss +2 -3
- data/app/assets/stylesheets/zuora_connect_ui/modal.scss +3 -4
- data/app/views/partials/_table.html.erb +2 -2
- data/lib/zuora_connect_ui/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7da537166f15d960fb293bb8e5f6e85c61cfc03d
|
4
|
+
data.tar.gz: ad9175c60d92b1b6e7068aefb8526ddfaf96adc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccbadaf04baaddd51a7bd632e9e812df4bc7b07951442bd1b782a8b3123cf0ac5a86b86cba7e3280c90631850c85514852cc1f5f5e98e15da0f1dbf7993fd349
|
7
|
+
data.tar.gz: 2888ec386620b232b226ccab857654bcdcec8495f62fa656568e854c27f3cc572370cf025dcd5ef6403c1fdb8c4633c922652e4e8dfc00528c9c603833debbfc
|
@@ -48,6 +48,14 @@ select {
|
|
48
48
|
-moz-appearance: none;
|
49
49
|
}
|
50
50
|
|
51
|
+
.zuo-flex {
|
52
|
+
display: flex;
|
53
|
+
|
54
|
+
&--center {
|
55
|
+
align-items: center;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
51
59
|
.zc-spin {
|
52
60
|
display: inline-block;
|
53
61
|
-webkit-animation: zc-spin 2s infinite linear;
|
@@ -95,7 +103,7 @@ select {
|
|
95
103
|
|
96
104
|
.dropdown-menu {
|
97
105
|
min-width: 164px;
|
98
|
-
padding: .5rem 0;
|
106
|
+
padding: 0.5rem 0;
|
99
107
|
box-shadow: 0 1px 8px -1px $neutral-shadow;
|
100
108
|
border-radius: 0;
|
101
109
|
font-size: 0.875rem;
|
@@ -232,7 +232,7 @@ div.dataTables_scrollBody table.dataTable thead th.sorting_desc:after {
|
|
232
232
|
ul.context-menu-list {
|
233
233
|
border: 1px solid #d3d7d8;
|
234
234
|
border-radius: 0px;
|
235
|
-
padding: .5rem 0;
|
235
|
+
padding: 0.5rem 0;
|
236
236
|
box-shadow: 0 1px 8px -1px $neutral-shadow;
|
237
237
|
font-size: 0.875rem;
|
238
238
|
|
@@ -255,8 +255,7 @@ ul.context-menu-list {
|
|
255
255
|
}
|
256
256
|
|
257
257
|
.context-menu-icon.context-menu-icon--fa::before,
|
258
|
-
.context-menu-icon.context-menu-icon--fa.context-menu-hover::before
|
259
|
-
{
|
258
|
+
.context-menu-icon.context-menu-icon--fa.context-menu-hover::before {
|
260
259
|
color: $primary;
|
261
260
|
}
|
262
261
|
|
@@ -43,9 +43,9 @@
|
|
43
43
|
form {
|
44
44
|
&.loading {
|
45
45
|
.modal-body {
|
46
|
-
opacity: .15;
|
46
|
+
opacity: 0.15;
|
47
47
|
}
|
48
|
-
.overlay
|
48
|
+
.overlay {
|
49
49
|
display: block;
|
50
50
|
#loading_form_icon {
|
51
51
|
visibility: visible;
|
@@ -74,6 +74,5 @@ form {
|
|
74
74
|
}
|
75
75
|
|
76
76
|
#loading_form_icon {
|
77
|
-
display:none;
|
77
|
+
display: none;
|
78
78
|
}
|
79
|
-
|
@@ -107,7 +107,7 @@
|
|
107
107
|
}
|
108
108
|
});
|
109
109
|
|
110
|
-
|
110
|
+
/* Debounce Draw Function */
|
111
111
|
var <%= table_name %>_draw = debounce(function() {
|
112
112
|
if($('#<%= table_name %>_content').is(":visible") && !$('#<%= table_name %>_content .table_refresh').hasClass('zc-spin') && !document.hidden) {
|
113
113
|
return $("#<%= table_name %>").DataTable().draw(false);
|
@@ -195,7 +195,7 @@
|
|
195
195
|
}
|
196
196
|
resize_iframe();
|
197
197
|
|
198
|
-
|
198
|
+
/* Hide group actions and deselect */
|
199
199
|
$('#<%= table_name %>_select_all span').removeClass('z-icon-subtraction').addClass('z-icon-addition');
|
200
200
|
$('#<%= table_name %>_group_actions').addClass('hidden');
|
201
201
|
},
|
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.8
|
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-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap-sass
|