inline_forms 0.8.4 → 0.8.5
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.
- data/VERSION +1 -1
- data/inline_forms.gemspec +2 -2
- data/public/stylesheets/inline_forms.css +64 -17
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
1
|
+
0.8.5
|
data/inline_forms.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{inline_forms}
|
|
8
|
-
s.version = "0.8.
|
|
8
|
+
s.version = "0.8.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Ace Suares"]
|
|
12
|
-
s.date = %q{2011-03-
|
|
12
|
+
s.date = %q{2011-03-21}
|
|
13
13
|
s.description = %q{Inline Forms aims to ease the setup of forms that provide inline editing. The field list can be specified in the model.}
|
|
14
14
|
s.email = %q{ace@suares.an}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -28,53 +28,100 @@ a:link, a:visited, a:hover,a:active {
|
|
|
28
28
|
h1 { border: 1px solid blue;
|
|
29
29
|
color: darkblue;
|
|
30
30
|
}
|
|
31
|
-
#
|
|
31
|
+
#inline_forms_list {
|
|
32
32
|
border: 1px solid green;
|
|
33
33
|
padding: 0;
|
|
34
34
|
margin: 0;
|
|
35
35
|
list-style-type: none;
|
|
36
36
|
background-color: lightgoldenrodyellow;
|
|
37
37
|
}
|
|
38
|
-
#
|
|
38
|
+
#inline_forms_list li.inline_forms_new_record_link {
|
|
39
39
|
padding: 0.5em;
|
|
40
40
|
font-size: 200%;
|
|
41
41
|
}
|
|
42
|
-
#
|
|
42
|
+
#inline_forms_list li.inline_forms_new_record_link a {
|
|
43
43
|
}
|
|
44
|
-
#
|
|
45
|
-
padding: 0 1em
|
|
44
|
+
#inline_forms_list li {
|
|
45
|
+
padding: 0 1em 0.5em 1em;
|
|
46
46
|
}
|
|
47
|
-
#
|
|
47
|
+
#inline_forms_list li table {
|
|
48
48
|
border: 1px dotted darkcyan;
|
|
49
49
|
}
|
|
50
|
-
#
|
|
50
|
+
#inline_forms_list li table tr {
|
|
51
51
|
}
|
|
52
|
-
#
|
|
53
|
-
|
|
52
|
+
#inline_forms_list li table tr td {
|
|
53
|
+
padding: 0.2em 0.5em 0.2em 0.2em;
|
|
54
54
|
border-bottom: 1px dotted lightgrey;
|
|
55
55
|
}
|
|
56
|
-
#
|
|
56
|
+
#inline_forms_list div.attribute_name{
|
|
57
57
|
font-weight: bold;
|
|
58
58
|
}
|
|
59
|
-
#
|
|
59
|
+
#inline_forms_list div.attribute_value{
|
|
60
60
|
padding-left: 1em;
|
|
61
61
|
}
|
|
62
|
-
#
|
|
63
|
-
#
|
|
62
|
+
#inline_forms_list div.form_element_text_attribute { }
|
|
63
|
+
#inline_forms_list div.form_element_associated ul {
|
|
64
64
|
list-style-type: none;
|
|
65
65
|
padding: 0;
|
|
66
66
|
margin: 0;
|
|
67
67
|
}
|
|
68
|
-
#
|
|
69
|
-
|
|
68
|
+
#inline_forms_list div.form_element_associated li {
|
|
69
|
+
padding: 0em 0.5em 0.2em 0;
|
|
70
70
|
|
|
71
71
|
}
|
|
72
|
-
#
|
|
72
|
+
#inline_forms_list div.form_element_associated li a {
|
|
73
73
|
padding: 0;
|
|
74
74
|
margin: 0;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
#
|
|
77
|
+
#inline_forms_list div.associated_new {
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.attribute_text_area {
|
|
81
|
+
width: 80em;
|
|
82
|
+
height: 4em;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#description attribute_text_area {
|
|
86
|
+
width: 80em;
|
|
87
|
+
height: 8em;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.edit_form_checklist ul {
|
|
91
|
+
list-style-type: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
ul.checklist {
|
|
95
|
+
list-style-type: none;
|
|
96
|
+
margin: 0;
|
|
97
|
+
padding: 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
ul.checklist li {
|
|
101
|
+
margin: 0;
|
|
102
|
+
padding: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
.edit_form_checklist ul {
|
|
107
|
+
margin: 0;
|
|
108
|
+
padding: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
#inline_forms_list .edit_form_checklist ul li {
|
|
113
|
+
margin: 0;
|
|
114
|
+
padding: 0 0 0.3em 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.edit_form_checklist ul li .edit_form_checklist_text {
|
|
118
|
+
float: left;
|
|
119
|
+
padding: 0 0 0 0.2em;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.edit_form_checklist ul li input {
|
|
123
|
+
float: left;
|
|
124
|
+
padding: 0;
|
|
78
125
|
}
|
|
79
126
|
|
|
80
127
|
#tabs {
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: inline_forms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 53
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 8
|
|
9
|
-
-
|
|
10
|
-
version: 0.8.
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.8.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ace Suares
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-03-
|
|
18
|
+
date: 2011-03-21 00:00:00 -04:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|