aboutsummaryrefslogtreecommitdiffstats
path: root/share/skin/base/layout/field
diff options
context:
space:
mode:
Diffstat (limited to 'share/skin/base/layout/field')
-rw-r--r--share/skin/base/layout/field/array.tt4
-rw-r--r--share/skin/base/layout/field/collection.tt4
-rw-r--r--share/skin/base/layout/field/container.tt4
-rw-r--r--share/skin/base/layout/field/mutable.tt5
-rw-r--r--share/skin/base/layout/field/mutable/choose_many.tt12
-rw-r--r--share/skin/base/layout/field/mutable/choose_one.tt3
6 files changed, 10 insertions, 22 deletions
diff --git a/share/skin/base/layout/field/array.tt b/share/skin/base/layout/field/array.tt
index cd9c0c2..ac62db7 100644
--- a/share/skin/base/layout/field/array.tt
+++ b/share/skin/base/layout/field/array.tt
@@ -9,11 +9,9 @@
=for layout list
-<div class="array_list">
<ul>
-[% content %]
+ [% content %]
</ul>
-</div>
=for layout item
diff --git a/share/skin/base/layout/field/collection.tt b/share/skin/base/layout/field/collection.tt
index 2203344..1f6ae9e 100644
--- a/share/skin/base/layout/field/collection.tt
+++ b/share/skin/base/layout/field/collection.tt
@@ -9,11 +9,9 @@
=for layout list
-<div class="collection_list">
<ul>
-[% call_next %]
+ [% call_next %]
</ul>
-</div>
=for layout item
diff --git a/share/skin/base/layout/field/container.tt b/share/skin/base/layout/field/container.tt
index c504e55..d9e0ced 100644
--- a/share/skin/base/layout/field/container.tt
+++ b/share/skin/base/layout/field/container.tt
@@ -11,8 +11,6 @@
=for layout field
-<div class="field_container_field">
- [% call_next %]
-</div>
+[% call_next %]
=cut
diff --git a/share/skin/base/layout/field/mutable.tt b/share/skin/base/layout/field/mutable.tt
index d21e979..c4ef2e1 100644
--- a/share/skin/base/layout/field/mutable.tt
+++ b/share/skin/base/layout/field/mutable.tt
@@ -1,6 +1,6 @@
=for layout widget
-<div class="[% field_class %]">[% label_fragment %] [% field %] [% message_fragment %]</div>
+[% label_fragment %] [% field %] [% message_fragment %]
=for layout label
@@ -18,8 +18,7 @@ class="required_field"
=for layout field
-<input type="[% field_type %]" name="[% field_name %]" id="[% field_id %]"
- [% field_body %] />
+<input type="[% field_type %]" name="[% field_name %]" id="[% field_id %]" [% field_body %] />
=for layout field_body
diff --git a/share/skin/base/layout/field/mutable/choose_many.tt b/share/skin/base/layout/field/mutable/choose_many.tt
index 51f315e..9d19fff 100644
--- a/share/skin/base/layout/field/mutable/choose_many.tt
+++ b/share/skin/base/layout/field/mutable/choose_many.tt
@@ -8,7 +8,6 @@
=for layout field
-<div class="choose_many_field">
<table>
<tr>
<td> [% available_values %] </td>
@@ -19,7 +18,6 @@
</td>
</tr>
</table>
-</div>
=for layout available_values
@@ -43,12 +41,10 @@
=for layout action_buttons
-<div class="choose_many_buttons">
- <input type="submit" value="&gt;&gt;" name="[% event_id_add_all_values %]" />
- <input type="submit" value="&gt;" name="[% event_id_do_add_values %]" />
- <input type="submit" value="&lt;" name="[% event_id_do_remove_values %]" />
- <input type="submit" value="&lt;&lt;" name="[% event_id_remove_all_values %]" />
-</div>
+<input type="submit" value="&gt;&gt;" name="[% event_id_add_all_values %]" />
+<input type="submit" value="&gt;" name="[% event_id_do_add_values %]" />
+<input type="submit" value="&lt;" name="[% event_id_do_remove_values %]" />
+<input type="submit" value="&lt;&lt;" name="[% event_id_remove_all_values %]" />
=for layout message
diff --git a/share/skin/base/layout/field/mutable/choose_one.tt b/share/skin/base/layout/field/mutable/choose_one.tt
index 0db3ffd..c366a86 100644
--- a/share/skin/base/layout/field/mutable/choose_one.tt
+++ b/share/skin/base/layout/field/mutable/choose_one.tt
@@ -15,8 +15,7 @@
=for layout option
- <option value="[% option_value %]" [% option_is_selected %]
- > [% option_name %]</option>
+ <option value="[% option_value %]" [% option_is_selected %]>[% option_name %]</option>
=for layout option_is_selected_yes