bastion 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/app/assets/javascripts/bastion/bastion.module.js +1 -0
- data/app/assets/javascripts/bastion/layouts/details-nutupane.html +1 -1
- data/app/assets/javascripts/bastion/widgets/nutupane.factory.js +3 -1
- data/app/assets/stylesheets/bastion/bastion.less +35 -0
- data/app/assets/stylesheets/bastion/details-page.less +0 -0
- data/app/assets/stylesheets/bastion/nutupane.less +6 -1
- data/lib/bastion/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Y2MxYTYwZThlNTkzZGQ1NDY3MDc0YWRjN2Q4YzMwZTY5ZDgxZGJjYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGQ5ODY1YzAzNmVmY2IyMDJkZjYwODllMzg2NjY4YTQxYmRkN2IxYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDU4Y2U4NzUyNThmMjEzNTdiN2ZjMmJmNjkyMTFlYmQwMjI3YmM1MThmZDQ2
|
10
|
+
MmU1OTEzOTU4MDZkMzkxNzY1ZWI2ZGI1NmIzMTQ4ZGY0YTdhZTY1ZjQyNzQw
|
11
|
+
YTQ4NjdlY2EwMzYyMmZkMDE4ZGEwNGE3MDJiNzhhMzhjMmE5YmE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OGE3N2JiNTA1ZjcxYThiYWNhNmQwODNhZTZmOTQxMTVjZDk1Yzg1ZTkxOTA4
|
14
|
+
NmRkMzNhNWI4MGJmOWQ3OGQ0MjFmZjRhOTM0NjAwYjdmYzY1MGViOWRmNjQz
|
15
|
+
NTdjZjVkOTI0NTJkMTYxODBjYzUzYjVjM2RhNzI3YjJkYzc5N2U=
|
@@ -220,7 +220,9 @@ angular.module('Bastion.widgets').factory('Nutupane',
|
|
220
220
|
|
221
221
|
// Must be overridden
|
222
222
|
self.table.closeItem = function () {
|
223
|
-
|
223
|
+
if (!self.masterOnly) {
|
224
|
+
throw "Nutupane closeItem not implemented. If you are using Nutupane functionality with master-detail please pass 'masterOnly' to your Nutupane declaration";
|
225
|
+
}
|
224
226
|
};
|
225
227
|
|
226
228
|
self.table.replaceRow = function (row) {
|
@@ -9,9 +9,12 @@
|
|
9
9
|
@import "mixins";
|
10
10
|
@import "variables";
|
11
11
|
@import "nutupane";
|
12
|
+
@import "systems";
|
13
|
+
@import "tasks";
|
12
14
|
@import "overrides";
|
13
15
|
@import "helpers";
|
14
16
|
@import "./forms";
|
17
|
+
@import "gpg-keys";
|
15
18
|
@import "animations";
|
16
19
|
@import "path-selector";
|
17
20
|
@import "typography";
|
@@ -150,8 +153,40 @@
|
|
150
153
|
float: right;
|
151
154
|
}
|
152
155
|
}
|
156
|
+
|
157
|
+
.info-blocks {
|
158
|
+
margin-top: 20px;
|
159
|
+
margin-bottom: 20px;
|
160
|
+
|
161
|
+
.info-block-head {
|
162
|
+
font-size: 18px;
|
163
|
+
padding-left: 15px;
|
164
|
+
padding-top: 18px;
|
165
|
+
background: #F7F7F7;
|
166
|
+
}
|
167
|
+
|
168
|
+
.info-block {
|
169
|
+
text-align: center;
|
170
|
+
}
|
171
|
+
}
|
172
|
+
|
173
|
+
.details-page {
|
174
|
+
padding-top: 20px;
|
175
|
+
|
176
|
+
h1 {
|
177
|
+
margin-bottom: 20px;
|
178
|
+
}
|
179
|
+
|
180
|
+
.nav-tabs {
|
181
|
+
margin-bottom: 20px;
|
182
|
+
}
|
183
|
+
}
|
153
184
|
}
|
154
185
|
|
155
186
|
.modal.fade.in {
|
156
187
|
display: block;
|
157
188
|
}
|
189
|
+
|
190
|
+
.bottom-padding{
|
191
|
+
padding-bottom: 15px;
|
192
|
+
}
|
File without changes
|
@@ -1,5 +1,4 @@
|
|
1
1
|
@import "variables";
|
2
|
-
@import (reference) "rcue/rcue";
|
3
2
|
|
4
3
|
.table {
|
5
4
|
table-layout: fixed;
|
@@ -127,6 +126,12 @@ td.row-select {
|
|
127
126
|
}
|
128
127
|
}
|
129
128
|
|
129
|
+
.nutupane-details-bar {
|
130
|
+
.nutupane-bar;
|
131
|
+
background: inherit;
|
132
|
+
border: inherit;
|
133
|
+
}
|
134
|
+
|
130
135
|
.nutupane-select-all {
|
131
136
|
text-align: center;
|
132
137
|
.alert-info;
|
data/lib/bastion/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bastion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Katello
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: angular-rails-templates
|
@@ -120,6 +120,7 @@ files:
|
|
120
120
|
- app/assets/javascripts/bastion/widgets/widgets.module.js
|
121
121
|
- app/assets/stylesheets/bastion/animations.less
|
122
122
|
- app/assets/stylesheets/bastion/bastion.less
|
123
|
+
- app/assets/stylesheets/bastion/details-page.less
|
123
124
|
- app/assets/stylesheets/bastion/forms.less
|
124
125
|
- app/assets/stylesheets/bastion/helpers.less
|
125
126
|
- app/assets/stylesheets/bastion/mixins.less
|