inline_forms 6.2.9 → 6.2.10
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/.ruby-version +1 -0
- data/app/assets/stylesheets/inline_forms/inline_forms.scss +20 -33
- data/app/views/inline_forms/_new.html.erb +4 -2
- data/lib/inline_forms/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff3094a2b0337320e668989254bddad02d6122c4a23a6458624835d2a4d754ae
|
|
4
|
+
data.tar.gz: b12fe63b1654c53a5f9a93d8fc860f44d1018afbb4ec86e1eddd9e51cb34feb0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 376a970e05404557eca7ac67bb2be53169cb9235940239ead1436b6d979c023ebf77e6a00bef3eda444911c7d711b8324ddb8b1cc4ab72fa030dc7cd851e8b15
|
|
7
|
+
data.tar.gz: bab1548ed27faad8ca0ee836afd8c7a3b7215c993da1f105589241af431b89ed33321b54206cd8ead8af8d4418156f967b3b14cfe0cffeb3c949ca7ccc909a2b
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby-3.2.1
|
|
@@ -203,17 +203,6 @@ select:hover, select:focus {
|
|
|
203
203
|
margin-bottom: 1.5em;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
.flash {
|
|
207
|
-
margin-top: 1em;
|
|
208
|
-
padding: 0.5em;
|
|
209
|
-
color: #A3381E;
|
|
210
|
-
font-size: 130%;
|
|
211
|
-
font-weight: bold;
|
|
212
|
-
line-height: 120%;
|
|
213
|
-
background-color: white;
|
|
214
|
-
border-top: 0.5em solid #fade7a;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
206
|
.custom-combobox {
|
|
218
207
|
position: relative;
|
|
219
208
|
display: inline-block;
|
|
@@ -262,32 +251,30 @@ select:hover, select:focus {
|
|
|
262
251
|
}
|
|
263
252
|
}
|
|
264
253
|
|
|
254
|
+
.flash {
|
|
255
|
+
padding: 0.3em;
|
|
256
|
+
color: #A3381E;
|
|
257
|
+
font-size: 130%;
|
|
258
|
+
font-weight: bold;
|
|
259
|
+
line-height: 120%;
|
|
260
|
+
background-color: white;
|
|
261
|
+
border-top: 0.3em solid #fade7a;
|
|
262
|
+
}
|
|
265
263
|
|
|
266
264
|
.error {
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
-moz-box-shadow: 0 1px 1px rgba(0,0,0, .1);
|
|
273
|
-
background-color: #a70f0f;
|
|
274
|
-
background-image: -moz-linear-gradient(100% 100% 90deg, #a70f0f, #c01313);
|
|
275
|
-
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#c01313), to(#a70f0f));
|
|
276
|
-
padding: 0.7em;
|
|
265
|
+
color: #ffffff;
|
|
266
|
+
font-weight: bold;
|
|
267
|
+
background-color: #a70f0f;
|
|
268
|
+
padding: 0.3em;
|
|
269
|
+
margin-bottom: 0.5em;
|
|
277
270
|
}
|
|
278
271
|
.success {
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
border-bottom: 1px solid #cccccc;
|
|
286
|
-
background-color: #4f8d0d;
|
|
287
|
-
background-image: -moz-linear-gradient(100% 100% 90deg, #4f8d0d, #5ba210);
|
|
288
|
-
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#5ba210), to(#4f8d0d));
|
|
289
|
-
padding: 0.7em;
|
|
290
|
-
margin-bottom: 0.5em;
|
|
272
|
+
color: #ffffff;
|
|
273
|
+
font-weight: bold;
|
|
274
|
+
border-bottom: 1px solid #cccccc;
|
|
275
|
+
background-color: #4f8d0d;
|
|
276
|
+
padding: 0.3em;
|
|
277
|
+
margin-bottom: 0.5em;
|
|
291
278
|
}
|
|
292
279
|
|
|
293
280
|
.ckeditor_area {
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
<div class="new_record"">
|
|
2
|
-
|
|
2
|
+
<div id="flash" class="row">
|
|
3
3
|
<% flash.each do |key, value| %>
|
|
4
4
|
<div class="flash <%= key %>">
|
|
5
5
|
<ul>
|
|
6
|
+
<% value.each do |msg| %>
|
|
6
7
|
<li>
|
|
7
|
-
<%=
|
|
8
|
+
<%= msg %>
|
|
8
9
|
</li>
|
|
10
|
+
<% end %>
|
|
9
11
|
</ul>
|
|
10
12
|
</div>
|
|
11
13
|
<% end %>
|
data/lib/inline_forms/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inline_forms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.2.
|
|
4
|
+
version: 6.2.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ace Suares
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2024-
|
|
13
|
+
date: 2024-03-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rvm
|
|
@@ -95,6 +95,7 @@ extra_rdoc_files: []
|
|
|
95
95
|
files:
|
|
96
96
|
- ".document"
|
|
97
97
|
- ".gitignore"
|
|
98
|
+
- ".ruby-version"
|
|
98
99
|
- Gemfile
|
|
99
100
|
- LICENSE.txt
|
|
100
101
|
- README.rdoc
|