active_scaffold-sequel 0.3.0

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.
Files changed (318) hide show
  1. data/CHANGELOG +179 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README +36 -0
  4. data/app/assets/images/active_scaffold/add.gif +0 -0
  5. data/app/assets/images/active_scaffold/arrow_down.gif +0 -0
  6. data/app/assets/images/active_scaffold/arrow_up.gif +0 -0
  7. data/app/assets/images/active_scaffold/close.gif +0 -0
  8. data/app/assets/images/active_scaffold/close_touch.png +0 -0
  9. data/app/assets/images/active_scaffold/config.png +0 -0
  10. data/app/assets/images/active_scaffold/cross.png +0 -0
  11. data/app/assets/images/active_scaffold/gears.png +0 -0
  12. data/app/assets/images/active_scaffold/indicator-small.gif +0 -0
  13. data/app/assets/images/active_scaffold/indicator.gif +0 -0
  14. data/app/assets/images/active_scaffold/magnifier.png +0 -0
  15. data/app/assets/javascripts/active_scaffold.js.erb +19 -0
  16. data/app/assets/javascripts/jquery/active_scaffold.js +1057 -0
  17. data/app/assets/javascripts/jquery/date_picker_bridge.js.erb +24 -0
  18. data/app/assets/javascripts/jquery/draggable_lists.js +27 -0
  19. data/app/assets/javascripts/jquery/jquery.editinplace.js +743 -0
  20. data/app/assets/javascripts/jquery/tiny_mce_bridge.js +7 -0
  21. data/app/assets/javascripts/prototype/active_scaffold.js +1052 -0
  22. data/app/assets/javascripts/prototype/dhtml_history.js +870 -0
  23. data/app/assets/javascripts/prototype/form_enhancements.js +117 -0
  24. data/app/assets/javascripts/prototype/rico_corner.js +370 -0
  25. data/app/assets/javascripts/prototype/tiny_mce_bridge.js +7 -0
  26. data/app/assets/stylesheets/active_scaffold-ie.css +35 -0
  27. data/app/assets/stylesheets/active_scaffold.css.scss +14 -0
  28. data/app/assets/stylesheets/active_scaffold_colors.css.scss +395 -0
  29. data/app/assets/stylesheets/active_scaffold_extensions.css.erb +2 -0
  30. data/app/assets/stylesheets/active_scaffold_images.css.scss +43 -0
  31. data/app/assets/stylesheets/active_scaffold_layout.css +912 -0
  32. data/app/assets/stylesheets/blue-theme.css +74 -0
  33. data/config/locales/de.yml +114 -0
  34. data/config/locales/en.yml +118 -0
  35. data/config/locales/es.yml +120 -0
  36. data/config/locales/fr.yml +121 -0
  37. data/config/locales/hu.yml +74 -0
  38. data/config/locales/ja.yml +73 -0
  39. data/config/locales/ru.yml +123 -0
  40. data/frontends/default/views/_action_group.html.erb +24 -0
  41. data/frontends/default/views/_add_existing_form.html.erb +30 -0
  42. data/frontends/default/views/_base_form.html.erb +51 -0
  43. data/frontends/default/views/_create_form.html.erb +8 -0
  44. data/frontends/default/views/_create_form_on_list.html.erb +6 -0
  45. data/frontends/default/views/_field_search.html.erb +32 -0
  46. data/frontends/default/views/_form.html.erb +24 -0
  47. data/frontends/default/views/_form_association.html.erb +15 -0
  48. data/frontends/default/views/_form_association_footer.html.erb +47 -0
  49. data/frontends/default/views/_form_attribute.html.erb +20 -0
  50. data/frontends/default/views/_form_hidden_attribute.html.erb +2 -0
  51. data/frontends/default/views/_form_messages.html.erb +5 -0
  52. data/frontends/default/views/_horizontal_subform.html.erb +28 -0
  53. data/frontends/default/views/_horizontal_subform_footer.html.erb +0 -0
  54. data/frontends/default/views/_horizontal_subform_header.html.erb +11 -0
  55. data/frontends/default/views/_horizontal_subform_record.html.erb +38 -0
  56. data/frontends/default/views/_human_conditions.html.erb +1 -0
  57. data/frontends/default/views/_list.html.erb +18 -0
  58. data/frontends/default/views/_list_actions.html.erb +15 -0
  59. data/frontends/default/views/_list_calculations.html.erb +16 -0
  60. data/frontends/default/views/_list_column_headings.html.erb +12 -0
  61. data/frontends/default/views/_list_header.html.erb +10 -0
  62. data/frontends/default/views/_list_inline_adapter.html.erb +10 -0
  63. data/frontends/default/views/_list_messages.html.erb +30 -0
  64. data/frontends/default/views/_list_pagination.html.erb +11 -0
  65. data/frontends/default/views/_list_pagination_links.html.erb +9 -0
  66. data/frontends/default/views/_list_record.html.erb +14 -0
  67. data/frontends/default/views/_list_record_columns.html.erb +8 -0
  68. data/frontends/default/views/_list_with_header.html.erb +36 -0
  69. data/frontends/default/views/_messages.html.erb +10 -0
  70. data/frontends/default/views/_render_field.js.erb +20 -0
  71. data/frontends/default/views/_row.html.erb +6 -0
  72. data/frontends/default/views/_search.html.erb +34 -0
  73. data/frontends/default/views/_search_attribute.html.erb +10 -0
  74. data/frontends/default/views/_show.html.erb +8 -0
  75. data/frontends/default/views/_show_columns.html.erb +15 -0
  76. data/frontends/default/views/_update_actions.html.erb +9 -0
  77. data/frontends/default/views/_update_form.html.erb +6 -0
  78. data/frontends/default/views/_vertical_subform.html.erb +12 -0
  79. data/frontends/default/views/_vertical_subform_record.html.erb +38 -0
  80. data/frontends/default/views/action_confirmation.html.erb +13 -0
  81. data/frontends/default/views/add_existing.js.erb +18 -0
  82. data/frontends/default/views/add_existing_form.html.erb +5 -0
  83. data/frontends/default/views/create.html.erb +5 -0
  84. data/frontends/default/views/delete.html.erb +13 -0
  85. data/frontends/default/views/destroy.js.erb +24 -0
  86. data/frontends/default/views/edit_associated.js.erb +12 -0
  87. data/frontends/default/views/field_search.html.erb +5 -0
  88. data/frontends/default/views/form_messages.js.erb +1 -0
  89. data/frontends/default/views/list.html.erb +1 -0
  90. data/frontends/default/views/on_action_update.js.erb +13 -0
  91. data/frontends/default/views/on_create.js.erb +47 -0
  92. data/frontends/default/views/on_mark_all.js.erb +12 -0
  93. data/frontends/default/views/on_update.js.erb +31 -0
  94. data/frontends/default/views/refresh_list.js.erb +1 -0
  95. data/frontends/default/views/render_field.js.erb +1 -0
  96. data/frontends/default/views/search.html.erb +5 -0
  97. data/frontends/default/views/show.html.erb +5 -0
  98. data/frontends/default/views/update.html.erb +8 -0
  99. data/frontends/default/views/update_column.js.erb +16 -0
  100. data/frontends/default/views/update_row.js.erb +1 -0
  101. data/lib/active_scaffold/actions/common_search.rb +25 -0
  102. data/lib/active_scaffold/actions/core.rb +197 -0
  103. data/lib/active_scaffold/actions/create.rb +148 -0
  104. data/lib/active_scaffold/actions/delete.rb +76 -0
  105. data/lib/active_scaffold/actions/field_search.rb +82 -0
  106. data/lib/active_scaffold/actions/list.rb +196 -0
  107. data/lib/active_scaffold/actions/mark.rb +75 -0
  108. data/lib/active_scaffold/actions/nested.rb +245 -0
  109. data/lib/active_scaffold/actions/search.rb +48 -0
  110. data/lib/active_scaffold/actions/show.rb +61 -0
  111. data/lib/active_scaffold/actions/subform.rb +23 -0
  112. data/lib/active_scaffold/actions/update.rb +150 -0
  113. data/lib/active_scaffold/active_record_permissions.rb +136 -0
  114. data/lib/active_scaffold/attribute_params.rb +208 -0
  115. data/lib/active_scaffold/bridges/ancestry/ancestry_bridge.rb +39 -0
  116. data/lib/active_scaffold/bridges/ancestry.rb +5 -0
  117. data/lib/active_scaffold/bridges/calendar_date_select/as_cds_bridge.rb +67 -0
  118. data/lib/active_scaffold/bridges/calendar_date_select.rb +24 -0
  119. data/lib/active_scaffold/bridges/cancan/cancan_bridge.rb +107 -0
  120. data/lib/active_scaffold/bridges/cancan.rb +15 -0
  121. data/lib/active_scaffold/bridges/carrierwave/carrierwave_bridge.rb +31 -0
  122. data/lib/active_scaffold/bridges/carrierwave/carrierwave_bridge_helpers.rb +10 -0
  123. data/lib/active_scaffold/bridges/carrierwave/form_ui.rb +45 -0
  124. data/lib/active_scaffold/bridges/carrierwave/list_ui.rb +17 -0
  125. data/lib/active_scaffold/bridges/carrierwave.rb +12 -0
  126. data/lib/active_scaffold/bridges/country_helper/country_helper_bridge.rb +358 -0
  127. data/lib/active_scaffold/bridges/country_helper.rb +9 -0
  128. data/lib/active_scaffold/bridges/date_picker/ext.rb +45 -0
  129. data/lib/active_scaffold/bridges/date_picker/helper.rb +180 -0
  130. data/lib/active_scaffold/bridges/date_picker.rb +23 -0
  131. data/lib/active_scaffold/bridges/dragonfly/dragonfly_bridge.rb +34 -0
  132. data/lib/active_scaffold/bridges/dragonfly/dragonfly_bridge_helpers.rb +10 -0
  133. data/lib/active_scaffold/bridges/dragonfly/form_ui.rb +27 -0
  134. data/lib/active_scaffold/bridges/dragonfly/list_ui.rb +16 -0
  135. data/lib/active_scaffold/bridges/dragonfly.rb +9 -0
  136. data/lib/active_scaffold/bridges/file_column/as_file_column_bridge.rb +48 -0
  137. data/lib/active_scaffold/bridges/file_column/file_column_helpers.rb +57 -0
  138. data/lib/active_scaffold/bridges/file_column/form_ui.rb +34 -0
  139. data/lib/active_scaffold/bridges/file_column/list_ui.rb +26 -0
  140. data/lib/active_scaffold/bridges/file_column/test/functional/file_column_keep_test.rb +43 -0
  141. data/lib/active_scaffold/bridges/file_column/test/mock_model.rb +9 -0
  142. data/lib/active_scaffold/bridges/file_column/test/test_helper.rb +15 -0
  143. data/lib/active_scaffold/bridges/file_column.rb +11 -0
  144. data/lib/active_scaffold/bridges/paperclip/form_ui.rb +27 -0
  145. data/lib/active_scaffold/bridges/paperclip/list_ui.rb +16 -0
  146. data/lib/active_scaffold/bridges/paperclip/paperclip_bridge.rb +36 -0
  147. data/lib/active_scaffold/bridges/paperclip/paperclip_bridge_helpers.rb +24 -0
  148. data/lib/active_scaffold/bridges/paperclip.rb +12 -0
  149. data/lib/active_scaffold/bridges/record_select/helpers.rb +86 -0
  150. data/lib/active_scaffold/bridges/record_select.rb +11 -0
  151. data/lib/active_scaffold/bridges/semantic_attributes/column.rb +20 -0
  152. data/lib/active_scaffold/bridges/semantic_attributes.rb +5 -0
  153. data/lib/active_scaffold/bridges/shared/date_bridge.rb +209 -0
  154. data/lib/active_scaffold/bridges/tiny_mce/helpers.rb +46 -0
  155. data/lib/active_scaffold/bridges/tiny_mce.rb +17 -0
  156. data/lib/active_scaffold/bridges.rb +61 -0
  157. data/lib/active_scaffold/config/base.rb +71 -0
  158. data/lib/active_scaffold/config/core.rb +219 -0
  159. data/lib/active_scaffold/config/create.rb +44 -0
  160. data/lib/active_scaffold/config/delete.rb +33 -0
  161. data/lib/active_scaffold/config/field_search.rb +76 -0
  162. data/lib/active_scaffold/config/form.rb +48 -0
  163. data/lib/active_scaffold/config/list.rb +196 -0
  164. data/lib/active_scaffold/config/mark.rb +35 -0
  165. data/lib/active_scaffold/config/nested.rb +42 -0
  166. data/lib/active_scaffold/config/search.rb +73 -0
  167. data/lib/active_scaffold/config/show.rb +32 -0
  168. data/lib/active_scaffold/config/subform.rb +35 -0
  169. data/lib/active_scaffold/config/update.rb +41 -0
  170. data/lib/active_scaffold/configurable.rb +29 -0
  171. data/lib/active_scaffold/constraints.rb +170 -0
  172. data/lib/active_scaffold/data_structures/action_columns.rb +140 -0
  173. data/lib/active_scaffold/data_structures/action_link.rb +179 -0
  174. data/lib/active_scaffold/data_structures/action_links.rb +185 -0
  175. data/lib/active_scaffold/data_structures/actions.rb +45 -0
  176. data/lib/active_scaffold/data_structures/bridge.rb +22 -0
  177. data/lib/active_scaffold/data_structures/column.rb +389 -0
  178. data/lib/active_scaffold/data_structures/columns.rb +75 -0
  179. data/lib/active_scaffold/data_structures/error_message.rb +24 -0
  180. data/lib/active_scaffold/data_structures/nested_info.rb +130 -0
  181. data/lib/active_scaffold/data_structures/set.rb +57 -0
  182. data/lib/active_scaffold/data_structures/sorting.rb +172 -0
  183. data/lib/active_scaffold/engine.rb +4 -0
  184. data/lib/active_scaffold/extensions/action_controller_rendering.rb +22 -0
  185. data/lib/active_scaffold/extensions/action_view_rendering.rb +115 -0
  186. data/lib/active_scaffold/extensions/active_record_offset.rb +12 -0
  187. data/lib/active_scaffold/extensions/array.rb +7 -0
  188. data/lib/active_scaffold/extensions/cache_association.rb +16 -0
  189. data/lib/active_scaffold/extensions/localize.rb +10 -0
  190. data/lib/active_scaffold/extensions/name_option_for_datetime.rb +12 -0
  191. data/lib/active_scaffold/extensions/nil_id_in_url_params.rb +7 -0
  192. data/lib/active_scaffold/extensions/paginator_extensions.rb +26 -0
  193. data/lib/active_scaffold/extensions/routing_mapper.rb +48 -0
  194. data/lib/active_scaffold/extensions/to_label.rb +8 -0
  195. data/lib/active_scaffold/extensions/unsaved_associated.rb +60 -0
  196. data/lib/active_scaffold/extensions/unsaved_record.rb +20 -0
  197. data/lib/active_scaffold/extensions/usa_state.rb +46 -0
  198. data/lib/active_scaffold/finder.rb +372 -0
  199. data/lib/active_scaffold/helpers/association_helpers.rb +48 -0
  200. data/lib/active_scaffold/helpers/controller_helpers.rb +88 -0
  201. data/lib/active_scaffold/helpers/form_column_helpers.rb +321 -0
  202. data/lib/active_scaffold/helpers/human_condition_helpers.rb +62 -0
  203. data/lib/active_scaffold/helpers/id_helpers.rb +127 -0
  204. data/lib/active_scaffold/helpers/list_column_helpers.rb +340 -0
  205. data/lib/active_scaffold/helpers/pagination_helpers.rb +55 -0
  206. data/lib/active_scaffold/helpers/search_column_helpers.rb +267 -0
  207. data/lib/active_scaffold/helpers/show_column_helpers.rb +50 -0
  208. data/lib/active_scaffold/helpers/view_helpers.rb +342 -0
  209. data/lib/active_scaffold/marked_model.rb +38 -0
  210. data/lib/active_scaffold/paginator.rb +136 -0
  211. data/lib/active_scaffold/responds_to_parent.rb +70 -0
  212. data/lib/active_scaffold/version.rb +9 -0
  213. data/lib/active_scaffold.rb +368 -0
  214. data/lib/active_scaffold_env.rb +11 -0
  215. data/lib/generators/active_scaffold/USAGE +29 -0
  216. data/lib/generators/active_scaffold/active_scaffold_generator.rb +20 -0
  217. data/lib/generators/active_scaffold_controller/USAGE +19 -0
  218. data/lib/generators/active_scaffold_controller/active_scaffold_controller_generator.rb +29 -0
  219. data/lib/generators/active_scaffold_controller/templates/controller.rb +4 -0
  220. data/lib/generators/active_scaffold_controller/templates/helper.rb +2 -0
  221. data/public/blank.html +33 -0
  222. data/shoulda_macros/macros.rb +136 -0
  223. data/test/bridges/active_scaffold_dependent_protect_test.rb +34 -0
  224. data/test/bridges/bridge_test.rb +90 -0
  225. data/test/bridges/company.rb +81 -0
  226. data/test/bridges/paperclip_test.rb +68 -0
  227. data/test/bridges/tiny_mce_test.rb +27 -0
  228. data/test/bridges/unobtrusive_date_picker_test.rb +49 -0
  229. data/test/bridges/validation_reflection_test.rb +57 -0
  230. data/test/config/base_test.rb +15 -0
  231. data/test/config/core_test.rb +58 -0
  232. data/test/config/create_test.rb +58 -0
  233. data/test/config/delete_test.rb +33 -0
  234. data/test/config/field_search_test.rb +47 -0
  235. data/test/config/list_test.rb +129 -0
  236. data/test/config/nested_test.rb +62 -0
  237. data/test/config/search_test.rb +60 -0
  238. data/test/config/show_test.rb +43 -0
  239. data/test/config/subform_test.rb +17 -0
  240. data/test/config/update_test.rb +40 -0
  241. data/test/const_mocker.rb +36 -0
  242. data/test/data_structures/action_columns_test.rb +113 -0
  243. data/test/data_structures/action_link_test.rb +78 -0
  244. data/test/data_structures/action_links_test.rb +78 -0
  245. data/test/data_structures/actions_test.rb +25 -0
  246. data/test/data_structures/association_column_test.rb +42 -0
  247. data/test/data_structures/column_test.rb +185 -0
  248. data/test/data_structures/columns_test.rb +69 -0
  249. data/test/data_structures/error_message_test.rb +28 -0
  250. data/test/data_structures/set_test.rb +86 -0
  251. data/test/data_structures/sorting_test.rb +126 -0
  252. data/test/data_structures/standard_column_test.rb +24 -0
  253. data/test/data_structures/virtual_column_test.rb +23 -0
  254. data/test/extensions/active_record_test.rb +45 -0
  255. data/test/extensions/array_test.rb +12 -0
  256. data/test/helpers/form_column_helpers_test.rb +31 -0
  257. data/test/helpers/list_column_helpers_test.rb +42 -0
  258. data/test/helpers/pagination_helpers_test.rb +59 -0
  259. data/test/misc/active_record_permissions_test.rb +154 -0
  260. data/test/misc/attribute_params_test.rb +146 -0
  261. data/test/misc/configurable_test.rb +96 -0
  262. data/test/misc/constraints_test.rb +193 -0
  263. data/test/misc/finder_test.rb +92 -0
  264. data/test/misc/lang_test.rb +11 -0
  265. data/test/mock_app/app/controllers/application_controller.rb +10 -0
  266. data/test/mock_app/app/helpers/application_helper.rb +3 -0
  267. data/test/mock_app/config/boot.rb +110 -0
  268. data/test/mock_app/config/database.yml +16 -0
  269. data/test/mock_app/config/environment.rb +43 -0
  270. data/test/mock_app/config/environments/development.rb +17 -0
  271. data/test/mock_app/config/environments/production.rb +28 -0
  272. data/test/mock_app/config/environments/test.rb +28 -0
  273. data/test/mock_app/config/initializers/backtrace_silencers.rb +7 -0
  274. data/test/mock_app/config/initializers/inflections.rb +10 -0
  275. data/test/mock_app/config/initializers/mime_types.rb +5 -0
  276. data/test/mock_app/config/initializers/new_rails_defaults.rb +19 -0
  277. data/test/mock_app/config/initializers/session_store.rb +15 -0
  278. data/test/mock_app/config/locales/en.yml +5 -0
  279. data/test/mock_app/config/routes.rb +43 -0
  280. data/test/mock_app/db/test.sqlite3 +1 -0
  281. data/test/mock_app/public/blank.html +33 -0
  282. data/test/mock_app/public/images/active_scaffold/DO_NOT_EDIT +2 -0
  283. data/test/mock_app/public/images/active_scaffold/default/add.gif +0 -0
  284. data/test/mock_app/public/images/active_scaffold/default/arrow_down.gif +0 -0
  285. data/test/mock_app/public/images/active_scaffold/default/arrow_up.gif +0 -0
  286. data/test/mock_app/public/images/active_scaffold/default/close.gif +0 -0
  287. data/test/mock_app/public/images/active_scaffold/default/cross.png +0 -0
  288. data/test/mock_app/public/images/active_scaffold/default/indicator-small.gif +0 -0
  289. data/test/mock_app/public/images/active_scaffold/default/indicator.gif +0 -0
  290. data/test/mock_app/public/images/active_scaffold/default/magnifier.png +0 -0
  291. data/test/mock_app/public/javascripts/active_scaffold/DO_NOT_EDIT +2 -0
  292. data/test/mock_app/public/javascripts/active_scaffold/default/active_scaffold.js +532 -0
  293. data/test/mock_app/public/javascripts/active_scaffold/default/dhtml_history.js +867 -0
  294. data/test/mock_app/public/javascripts/active_scaffold/default/form_enhancements.js +117 -0
  295. data/test/mock_app/public/javascripts/active_scaffold/default/rico_corner.js +370 -0
  296. data/test/mock_app/public/stylesheets/active_scaffold/DO_NOT_EDIT +2 -0
  297. data/test/mock_app/public/stylesheets/active_scaffold/default/stylesheet-ie.css +35 -0
  298. data/test/mock_app/public/stylesheets/active_scaffold/default/stylesheet.css +848 -0
  299. data/test/model_stub.rb +55 -0
  300. data/test/run_all.rb +8 -0
  301. data/test/test_helper.rb +39 -0
  302. data/vendor/assets/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  303. data/vendor/assets/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  304. data/vendor/assets/images/ui-bg_flat_10_000000_40x100.png +0 -0
  305. data/vendor/assets/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  306. data/vendor/assets/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  307. data/vendor/assets/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  308. data/vendor/assets/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  309. data/vendor/assets/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  310. data/vendor/assets/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  311. data/vendor/assets/images/ui-icons_222222_256x240.png +0 -0
  312. data/vendor/assets/images/ui-icons_228ef1_256x240.png +0 -0
  313. data/vendor/assets/images/ui-icons_ef8c08_256x240.png +0 -0
  314. data/vendor/assets/images/ui-icons_ffd27a_256x240.png +0 -0
  315. data/vendor/assets/images/ui-icons_ffffff_256x240.png +0 -0
  316. data/vendor/assets/javascripts/jquery-ui-timepicker-addon.js +1276 -0
  317. data/vendor/assets/stylesheets/jquery-ui.css +568 -0
  318. metadata +502 -0
@@ -0,0 +1,912 @@
1
+ .active-scaffold form,
2
+ .active-scaffold table,
3
+ .active-scaffold p,
4
+ .active-scaffold div,
5
+ .active-scaffold fieldset {
6
+ margin: 0;
7
+ padding: 0;
8
+ }
9
+
10
+ .active-scaffold {
11
+ margin: 5px 0;
12
+ }
13
+
14
+ .active-scaffold table {
15
+ width: 100%;
16
+ border-collapse: separate;
17
+ }
18
+
19
+ .active-scaffold a,
20
+ .active-scaffold a:visited {
21
+ text-decoration: none;
22
+ }
23
+
24
+ .active-scaffold div.actions a img,
25
+ .active-scaffold td.actions a img {
26
+ border: none;
27
+ vertical-align: middle;
28
+ }
29
+
30
+ .active-scaffold div.actions a.disabled img,
31
+ .active-scaffold td.actions a.disabled img {
32
+ opacity: 0.5;
33
+ }
34
+
35
+ .active-scaffold .clear-fix {
36
+ clear: both;
37
+ }
38
+
39
+ noscript.active-scaffold {
40
+ border-left: solid 5px;
41
+ font-size: 11px;
42
+ font-weight: bold;
43
+ padding: 5px 20px 5px 5px;
44
+ }
45
+
46
+ .active-scaffold .mark_record_column {
47
+ width: 1px;
48
+ }
49
+
50
+ /* Header
51
+ ======================== */
52
+
53
+ .active-scaffold-header {
54
+ position: relative;
55
+ }
56
+
57
+ .active-scaffold-header h2 {
58
+ padding: 2px 0px;
59
+ margin: 0;
60
+ font: bold 160% arial, sans-serif;
61
+ }
62
+
63
+ .active-scaffold-header div.actions a,
64
+ .active-scaffold-header div.actions {
65
+ float: right;
66
+ font: bold 14px arial;
67
+ letter-spacing: -1px;
68
+ text-decoration: none;
69
+ padding: 1px 2px;
70
+ white-space: nowrap;
71
+ margin-left: 5px;
72
+ background-position: 1px 50%;
73
+ background-repeat: no-repeat;
74
+ }
75
+
76
+ .active-scaffold-header div.actions a {
77
+ padding: 5px 5px;
78
+ margin-left: 0px;
79
+ }
80
+
81
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions > a {
82
+ padding: 1px 5px;
83
+ }
84
+
85
+ .active-scaffold-header div.actions div.action_group {
86
+ display: inline;
87
+ float: right;
88
+ }
89
+
90
+ .active-scaffold-header div.actions div.action_group li a,
91
+ .active-scaffold-header div.actions div.action_group li div {
92
+ float: none;
93
+ margin: 0;
94
+ }
95
+
96
+ .active-scaffold-header div.actions .action_group ul {
97
+ line-height: 130%;
98
+ top: 19px;
99
+ }
100
+
101
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions .action_group ul {
102
+ top: 14px;
103
+ }
104
+
105
+ .view .active-scaffold-header div.actions a,
106
+ .view .active-scaffold-header div.actions div,
107
+ .view .active-scaffold-header div.actions div.action_group {
108
+ float: left;
109
+ }
110
+
111
+ .active-scaffold-header div.actions a.disabled {
112
+ opacity: 0.5;
113
+ }
114
+
115
+ .active-scaffold-header div.actions a.new,
116
+ .active-scaffold-header div.actions a.new_existing,
117
+ .active-scaffold-header div.actions a.show_search,
118
+ .active-scaffold-header div.actions a.show_config_list,
119
+ .active-scaffold-header div.actions div.action_group div {
120
+ margin:0;
121
+ padding: 5px 5px 5px 25px;
122
+ background-position: 5px 50%;
123
+ background-repeat: no-repeat;
124
+ }
125
+
126
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions > a.new,
127
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions > a.new_existing,
128
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions > a.show_search,
129
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions > a.show_config_list,
130
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions div.action_group > div {
131
+ margin:0;
132
+ padding: 1px 5px 1px 20px;
133
+ background-position: 1px 50%;
134
+ background-repeat: no-repeat;
135
+ }
136
+
137
+ .active-scaffold-header div.actions a.disabled:hover {
138
+ background-color: transparent;
139
+ cursor: default;
140
+ }
141
+
142
+ .active-scaffold-header div.actions {
143
+ position: absolute;
144
+ right: 5px;
145
+ top: 5px;
146
+ text-align: right;
147
+ }
148
+
149
+ /* Table :: Column Headers
150
+ ============================= */
151
+
152
+ .active-scaffold th {
153
+ text-align: left;
154
+ }
155
+
156
+ .active-scaffold th a,
157
+ .active-scaffold th p {
158
+ font: bold 11px arial, sans-serif;
159
+ display: block;
160
+ }
161
+
162
+ .active-scaffold th a, .active-scaffold th a:visited {
163
+ padding: 2px 2px 2px 5px;
164
+ }
165
+
166
+ .active-scaffold th p {
167
+ padding: 2px 5px;
168
+ }
169
+
170
+ .active-scaffold th.sorted a {
171
+ padding-right: 18px;
172
+ }
173
+
174
+ .active-scaffold th.asc a,
175
+ .active-scaffold th.asc a:hover,
176
+ .active-scaffold th.desc a,
177
+ .active-scaffold th.desc a:hover,
178
+ .active-scaffold th.loading a,
179
+ .active-scaffold th.loading a:hover {
180
+ background: right 50% no-repeat;
181
+ }
182
+
183
+ .active-scaffold th .mark_heading {
184
+ margin-left: 5px;
185
+ }
186
+
187
+ .active-scaffold th.hidden, .active-scaffold td.hidden {
188
+ display: none;
189
+ }
190
+
191
+ /* Table :: Record Rows
192
+ ============================= */
193
+
194
+ .active-scaffold tr.record td {
195
+ padding: 5px 4px;
196
+ font-family: Verdana, sans-serif;
197
+ font-size: 11px;
198
+ border: solid 1px;
199
+ border-width: 0 0 1px 1px;
200
+ }
201
+
202
+ .active-scaffold tr.record td.messages-container {
203
+ padding: 0px;
204
+ }
205
+
206
+ .active-scaffold tbody.records td.empty {
207
+ text-align: center;
208
+ }
209
+
210
+ .active-scaffold td.numeric,
211
+ .active-scaffold-calculations td {
212
+ text-align: right;
213
+ }
214
+
215
+ /* Table :: Actions (Edit, Delete)
216
+ ============================= */
217
+ .active-scaffold tr.record td.actions {
218
+ border-right: solid 1px;
219
+ padding: 0;
220
+ min-width: 1%;
221
+ }
222
+
223
+ .active-scaffold tr.record td.actions table {
224
+ float: right;
225
+ width: auto;
226
+ margin-right: 5px;
227
+ }
228
+
229
+ .active-scaffold tr.record td.actions table td {
230
+ border: none;
231
+ text-align: right;
232
+ padding: 0 2px;
233
+ }
234
+
235
+ .active-scaffold tr.record td.actions a,
236
+ .active-scaffold tr.record td.actions div {
237
+ font: bold 11px verdana, sans-serif;
238
+ letter-spacing: -1px;
239
+ padding: 2px;
240
+ margin: 0 2px;
241
+ line-height: 16px;
242
+ white-space: nowrap;
243
+ }
244
+
245
+ .active-scaffold tr.record td.actions a.disabled {
246
+ opacity: 0.5;
247
+ }
248
+
249
+ .active-scaffold .actions .action_group {
250
+ position: relative;
251
+ text-align: left;
252
+ }
253
+
254
+ .active-scaffold .actions .action_group ul {
255
+ border: 2px solid;
256
+ list-style-type: none;
257
+ margin: 0;
258
+ padding: 0;
259
+ position: absolute;
260
+ line-height: 200%;
261
+ display: none;
262
+ width: 150px;
263
+ right: 0px;
264
+ }
265
+
266
+ .active-scaffold .actions .action_group ul ul {
267
+ display: none;
268
+ position: absolute;
269
+ top: 0;
270
+ right: 150px;
271
+ }
272
+
273
+ .active-scaffold .actions .action_group ul li {
274
+ background: none repeat scroll 0 0;
275
+ border-top: 1px dashed;
276
+ display: block;
277
+ position: relative;
278
+ width: auto;
279
+ z-index: 2;
280
+ }
281
+
282
+ .active-scaffold .actions .action_group ul li div {
283
+ margin: 0;
284
+ padding: 5px 5px 5px 25px;
285
+ background-position: 5px 50%;
286
+ background-repeat: no-repeat;
287
+ }
288
+
289
+ .active-scaffold .actions .action_group ul li a {
290
+ display: block;
291
+ margin: 0;
292
+ padding: 5px 5px 5px 25px;
293
+ background-position: 5px 50%;
294
+ background-repeat: no-repeat;
295
+ }
296
+
297
+ .active-scaffold .actions .action_group ul li.top {
298
+ border-top-width: 0px;
299
+ }
300
+
301
+ .active-scaffold .actions .action_group:hover ul ul,
302
+ .active-scaffold .actions .action_group:hover ul ul ul {
303
+ display: none;
304
+ }
305
+
306
+ .active-scaffold .actions .action_group:hover ul,
307
+ .active-scaffold .actions .action_group ul li:hover > ul,
308
+ .active-scaffold .actions .action_group ul ul li:hover ul {
309
+ display: block;
310
+ }
311
+
312
+ /* Table :: Inline Adapter
313
+ ============================= */
314
+
315
+ .active-scaffold .view {
316
+ padding: 4px;
317
+ border: solid 1px;
318
+ }
319
+
320
+ .active-scaffold tbody.records td.inline-adapter-cell .view {
321
+ border-top: none;
322
+ }
323
+
324
+ .active-scaffold .before-header td.inline-adapter-cell .view {
325
+ border-bottom: none;
326
+ }
327
+
328
+ .active-scaffold a.inline-adapter-close {
329
+ float: right;
330
+ text-indent: -4000px;
331
+ width: 16px;
332
+ height: 17px;
333
+ background: 0 0 no-repeat;
334
+ }
335
+
336
+ /* Nested
337
+ ======================== */
338
+
339
+ .active-scaffold .active-scaffold .active-scaffold-header {
340
+ margin-right: 25px;
341
+ }
342
+
343
+ .active-scaffold .active-scaffold .active-scaffold-header h2 {
344
+ font-size: 12px;
345
+ font-weight: bold;
346
+ }
347
+
348
+
349
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions {
350
+ top: 0px;
351
+ right: 0px;
352
+ }
353
+
354
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions a,
355
+ .active-scaffold .active-scaffold .active-scaffold-header div.actions div {
356
+ font: bold 11px verdana, sans-serif;
357
+ }
358
+
359
+ .active-scaffold .active-scaffold .view {
360
+ background-color: transparent;
361
+ padding: 0px;
362
+ border: none;
363
+ }
364
+
365
+ .active-scaffold .active-scaffold td {
366
+ border-bottom: solid 1px;
367
+ border-left: solid 1px;
368
+ }
369
+
370
+ .active-scaffold .active-scaffold td.inline-adapter-cell {
371
+ padding: 4px;
372
+ border: solid 1px;
373
+ border-top: none;
374
+ }
375
+
376
+ .active-scaffold .active-scaffold .active-scaffold td.inline-adapter-cell {
377
+ padding: 4px;
378
+ border: solid 1px;
379
+ border-top: none;
380
+ }
381
+
382
+ .active-scaffold .active-scaffold .active-scaffold-footer {
383
+ font-size: 11px;
384
+ }
385
+
386
+ /* Footer
387
+ ========================== */
388
+
389
+ .active-scaffold-calculations td {
390
+ border-top: 2px solid;
391
+ font: bold 12px arial, sans-serif;
392
+ }
393
+
394
+ .active-scaffold .active-scaffold-footer {
395
+ padding: 3px 0px 2px 0px;
396
+ border-bottom: none;
397
+ font: bold 12px arial, sans-serif;
398
+ }
399
+
400
+ .active-scaffold-footer .active-scaffold-pagination {
401
+ float: right;
402
+ white-space: nowrap;
403
+ margin-right: 5px;
404
+ }
405
+
406
+ .active-scaffold-footer a {
407
+ text-decoration: none;
408
+ letter-spacing: 0;
409
+ padding: 0 2px;
410
+ margin: 0 -2px;
411
+ font: bold 12px arial, sans-serif;
412
+ }
413
+
414
+ .active-scaffold-footer .next {
415
+ margin-left: 0;
416
+ padding-left: 5px;
417
+ border-left: solid 1px;
418
+ }
419
+
420
+ .active-scaffold-footer .previous {
421
+ margin-right: 0;
422
+ padding-right: 5px;
423
+ border-right: solid 1px;
424
+ }
425
+
426
+ /* Messages
427
+ ========================= */
428
+
429
+ .active-scaffold .messages-container,
430
+ .active-scaffold .active-scaffold .messages-container{
431
+ padding: 0;
432
+ margin: 0 7px;
433
+ border: none;
434
+ }
435
+
436
+ .active-scaffold .empty-message, .active-scaffold .filtered-message {
437
+ padding: 4px;
438
+ text-align: center;
439
+ }
440
+
441
+ .active-scaffold .message {
442
+ font-size: 11px;
443
+ font-weight: bold;
444
+ padding: 5px 20px 5px 5px;
445
+ position: relative;
446
+ margin: 2px 7px;
447
+ line-height: 12px;
448
+ }
449
+
450
+ .active-scaffold .message a {
451
+ position: absolute;
452
+ right: 10px;
453
+ top: 4px;
454
+ padding: 0;
455
+ font: bold 11px verdana, sans-serif;
456
+ letter-spacing: -1px;
457
+ }
458
+
459
+ .active-scaffold .messages-container .message {
460
+ margin: 0;
461
+ }
462
+
463
+ .active-scaffold .error-message {
464
+ border-left: solid 5px;
465
+ }
466
+
467
+ .active-scaffold .warning-message {
468
+ border-left: solid 5px;
469
+ }
470
+
471
+ .active-scaffold .info-message {
472
+ border-left: solid 5px;
473
+ }
474
+
475
+ /* Error Styling
476
+ ========================== */
477
+
478
+ .active-scaffold .errorExplanation {
479
+ border: solid 1px;
480
+ }
481
+
482
+ .active-scaffold fieldset {
483
+ clear: both;
484
+ }
485
+
486
+ .active-scaffold .errorExplanation h2 {
487
+ padding: 2px 5px;
488
+ font-size: 11px;
489
+ margin: 0;
490
+ letter-spacing: 0;
491
+ font-family: Verdana;
492
+ }
493
+
494
+ .active-scaffold .errorExplanation ul {
495
+ margin: 0;
496
+ padding: 0 2px 4px 25px;
497
+ list-style: disc;
498
+ }
499
+
500
+ .active-scaffold .errorExplanation p {
501
+ font-size: 11px;
502
+ padding: 2px 5px;
503
+ font-family: Verdana;
504
+ margin: 0;
505
+ }
506
+
507
+ .active-scaffold .errorExplanation ul li {
508
+ font: bold 11px verdana;
509
+ letter-spacing: -1px;
510
+ margin: 0;
511
+ padding: 0;
512
+ background-color: transparent;
513
+ }
514
+
515
+ /* Loading Indicators
516
+ ============================== */
517
+
518
+ .active-scaffold .loading-indicator {
519
+ vertical-align: text-bottom;
520
+ width: 16px;
521
+ margin: 0;
522
+ }
523
+
524
+ .active-scaffold .active-scaffold-header .loading-indicator {
525
+ margin-top: 3px;
526
+ }
527
+
528
+ /* Show
529
+ ============================= */
530
+
531
+ .active-scaffold .show-view dl {
532
+ margin-left: 5px;
533
+ }
534
+ .active-scaffold .show-view dl dl {
535
+ margin-left: 0px;
536
+ }
537
+
538
+ .active-scaffold .show-view dt {
539
+ width: 12em;
540
+ float: left;
541
+ clear: left;
542
+ font: normal 11px verdana, sans-serif;
543
+ line-height: 16px;
544
+ }
545
+
546
+ .active-scaffold .show-view dd {
547
+ float: left;
548
+ font: bold 14px arial;
549
+ padding-left: 5px;
550
+ margin-bottom: 5px;
551
+ }
552
+
553
+ /* Form
554
+ ============================== */
555
+
556
+ .active-scaffold dl {
557
+ margin: 0;
558
+ }
559
+
560
+ .active-scaffold .submit {
561
+ font-weight: bold;
562
+ font-size: 14px;
563
+ font-family: Arial, sans-serif;
564
+ letter-spacing: 0;
565
+ margin: 0;
566
+ margin-top: 5px;
567
+ }
568
+
569
+ .active-scaffold form p {
570
+ clear: both;
571
+ }
572
+
573
+ .active-scaffold fieldset {
574
+ border: none;
575
+ }
576
+
577
+ .active-scaffold h4,
578
+ .active-scaffold h5 {
579
+ padding: 2px;
580
+ margin: 0;
581
+ text-transform: none;
582
+ letter-spacing: -1px;
583
+ font: bold 16px arial;
584
+ }
585
+
586
+ .active-scaffold h5 {
587
+ padding: 0;
588
+ margin: 5px 0 2px 0;
589
+ font-size: 14px;
590
+ letter-spacing: 0;
591
+ }
592
+
593
+ .active-scaffold ol {
594
+ clear: both;
595
+ float: none;
596
+ padding: 2px;
597
+ margin-left: 5px;
598
+ list-style: none;
599
+ }
600
+
601
+ .active-scaffold p.form-footer {
602
+ clear: both;
603
+ }
604
+
605
+ .active-scaffold a.as_cancel,
606
+ .active-scaffold p.form-footer a {
607
+ font: bold 14px arial, sans-serif;
608
+ letter-spacing: 0;
609
+ }
610
+
611
+ /* Form :: Fields
612
+ ============================== */
613
+
614
+ .active-scaffold li.form-element {
615
+ clear: both;
616
+ }
617
+
618
+ .active-scaffold label {
619
+ font: normal 11px verdana, sans-serif;
620
+ }
621
+
622
+ .active-scaffold li.form-element dt {
623
+ float: left;
624
+ width: 12em;
625
+ padding: 6px 0;
626
+ }
627
+
628
+ .active-scaffold li.form-element dd {
629
+ float: left;
630
+ }
631
+
632
+ .active-scaffold li.form-element dd p,
633
+ .active-scaffold li.form-element dd input[type="checkbox"] {
634
+ margin-top: 6px;
635
+ }
636
+
637
+ .active-scaffold .form dd {
638
+ margin: 0;
639
+ }
640
+
641
+
642
+ .active-scaffold .description {
643
+ display: inline-block;
644
+ font-size: 10px;
645
+ margin-left: 5px;
646
+ }
647
+
648
+ .active-scaffold .required label {
649
+ font-weight: bold;
650
+ }
651
+
652
+ .active-scaffold label.example {
653
+ font-size: 11px;
654
+ font-family: arial;
655
+ }
656
+
657
+ .active-scaffold input.text-input,
658
+ .active-scaffold select {
659
+ font: bold 16px arial;
660
+ letter-spacing: -1px;
661
+ border: solid 1px;
662
+ }
663
+
664
+ .active-scaffold input.text-input {
665
+ padding: 2px;
666
+ }
667
+
668
+ .active-scaffold .fieldWithErrors input,
669
+ .active-scaffold .field_with_errors input,
670
+ .active-scaffold .fieldWithErrors textarea,
671
+ .active-scaffold .field_with_errors textarea,
672
+ .active-scaffold .fieldWithErrors select,
673
+ .active-scaffold .field_with_errors select {
674
+ border: solid 1px;
675
+ }
676
+
677
+ .active-scaffold select {
678
+ padding: 1px;
679
+ }
680
+
681
+
682
+ .active-scaffold textarea {
683
+ font-family: Arial, sans-serif;
684
+ font-size: 12px;
685
+ padding: 1px;
686
+ border: solid 1px;
687
+ }
688
+
689
+ .active-scaffold .checkbox-list {
690
+ padding-left: 0px;
691
+ }
692
+
693
+ .active-scaffold .checkbox-list li {
694
+ padding-right: 5px;
695
+ display: inline;
696
+ }
697
+
698
+ .active-scaffold .checkbox-list li label {
699
+ padding: 0 0 0 2px;
700
+ }
701
+
702
+ .active-scaffold .draggable-list {
703
+ float: left;
704
+ width: 300px;
705
+ margin-right: 15px;
706
+ min-height: 30px;
707
+ max-height: 100px;
708
+ overflow: auto;
709
+ }
710
+
711
+ .active-scaffold .draggable-list.hover {
712
+ opacity: 0.5;
713
+ }
714
+
715
+
716
+ .active-scaffold .draggable-list li {
717
+ display: block;
718
+ }
719
+
720
+ li.draggable-item {
721
+ list-style: none;
722
+ }
723
+ li.draggable-item input,
724
+ .active-scaffold .draggable-list input {
725
+ display: none;
726
+ }
727
+
728
+ /* Form :: Sub-Sections
729
+ ============================== */
730
+
731
+ .active-scaffold li.sub-section {
732
+ clear: left;
733
+ padding: 5px 0;
734
+ }
735
+
736
+ /* Form :: Association Sub-Forms
737
+ ============================== */
738
+
739
+ .active-scaffold .sub-form {
740
+ float: left;
741
+ clear: left;
742
+ padding: 5px 0;
743
+ padding-left: 5px;
744
+ }
745
+
746
+ .active-scaffold .sub-form h5 {
747
+ margin-left: -5px;
748
+ }
749
+
750
+ .active-scaffold .sub-form table,
751
+ .active-scaffold .sub-form table td {
752
+ width: auto;
753
+ background: none;
754
+ }
755
+
756
+ .active-scaffold .sub-form table th {
757
+ font: normal 10px verdana, sans-serif;
758
+ padding: 0 5px 0 1px;
759
+ background: none;
760
+ }
761
+
762
+ .active-scaffold .horizontal-sub-form td dt label {
763
+ display: none;
764
+ }
765
+
766
+ .active-scaffold .sub-form .checkbox-list {
767
+ padding: 0 2px 2px 2px;
768
+ border: solid 1px;
769
+ }
770
+
771
+ .active-scaffold .sub-form .checkbox-list label {
772
+ display: block;
773
+ }
774
+
775
+ .active-scaffold .sub-form table td {
776
+ border: none;
777
+ background-color: transparent;
778
+ padding: 1px;
779
+ vertical-align: top;
780
+ }
781
+
782
+ .active-scaffold .sub-form .actions {
783
+ vertical-align: middle;
784
+ background-color: transparent;
785
+ clear: left;
786
+ }
787
+
788
+ .active-scaffold .sub-form .association-record a.destroy {
789
+ font-weight: bold;
790
+ display: block;
791
+ height: 16px;
792
+ padding: 0;
793
+ width: 16px;
794
+ text-indent: -4000px;
795
+ background: 0 0 no-repeat;
796
+ }
797
+
798
+ .active-scaffold .sub-form .locked a.destroy {
799
+ display: none;
800
+ }
801
+
802
+ .active-scaffold .sub-form .association-record a {
803
+ font: bold 12px arial;
804
+ }
805
+
806
+ .active-scaffold .sub-form input.text-input,
807
+ .active-scaffold .sub-form select {
808
+ letter-spacing: 0;
809
+ font: bold 12px arial;
810
+ }
811
+
812
+ .active-scaffold .sub-form .footer-wrapper {
813
+ margin-top: 3px;
814
+ margin-right: 10px;
815
+ }
816
+
817
+ .active-scaffold .sub-form .footer {
818
+ padding: 3px 5px;
819
+ }
820
+
821
+ .active-scaffold .sub-form .footer select,
822
+ .active-scaffold .sub-form .footer input {
823
+ font-weight: bold;
824
+ font-size: 12px;
825
+ padding: 0;
826
+ }
827
+
828
+ .active-scaffold a.visibility-toggle {
829
+ font-size: 100%;
830
+ }
831
+
832
+ .active-scaffold-found {
833
+ float:left;
834
+ }
835
+
836
+ .as_touch a.inline-adapter-close {
837
+ width: 25px;
838
+ height: 27px;
839
+ background: 0 0 no-repeat;
840
+ }
841
+
842
+ .as_touch .as_paginate {
843
+ font-size: 20px;
844
+ padding: 3px 10px;
845
+ }
846
+
847
+ .as_touch .active-scaffold-header div.actions a {
848
+ padding: 7px 5px;
849
+ }
850
+
851
+ .as_touch .active-scaffold .active-scaffold-header div.actions a {
852
+ padding: 7px 5px;
853
+ }
854
+
855
+ .as_touch .active-scaffold-header div.actions .action_group ul {
856
+ line-height: 130%;
857
+ top: 23px;
858
+ }
859
+
860
+ .as_touch .active-scaffold .active-scaffold-header div.actions .action_group ul {
861
+ top: 23px;
862
+ }
863
+
864
+ .as_touch .active-scaffold-header div.actions a.new,
865
+ .as_touch .active-scaffold-header div.actions a.new_existing,
866
+ .as_touch .active-scaffold-header div.actions a.show_search,
867
+ .as_touch .active-scaffold-header div.actions a.show_config_list,
868
+ .as_touch .active-scaffold-header div.actions div.action_group div {
869
+ padding: 7px 5px 7px 25px;
870
+ }
871
+
872
+ .as_touch .active-scaffold .active-scaffold-header div.actions > a.new,
873
+ .as_touch .active-scaffold .active-scaffold-header div.actions > a.new_existing,
874
+ .as_touch .active-scaffold .active-scaffold-header div.actions > a.show_search,
875
+ .as_touch .active-scaffold .active-scaffold-header div.actions > a.show_config_list,
876
+ .as_touch .active-scaffold .active-scaffold-header div.actions div.action_group > div {
877
+ padding: 7px 5px 7px 25px;
878
+ background-position: 5px 50%;
879
+ }
880
+
881
+ .as_touch .actions .action_group ul li div {
882
+ padding: 7px 5px 7px 25px;
883
+ }
884
+
885
+ .as_touch .actions .action_group ul li a {
886
+ padding: 7px 5px 7px 25px;
887
+ }
888
+
889
+ .as_touch .active-scaffold-header h2 {
890
+ padding: 4px 0px;
891
+ }
892
+
893
+ .as_touch .active-scaffold .active-scaffold-header div.actions a,
894
+ .as_touch .active-scaffold .active-scaffold-header div.actions div {
895
+ font: bold 14px arial;
896
+ }
897
+
898
+ .as_touch .active-scaffold .active-scaffold-header div.actions {
899
+ right: 15px;
900
+ }
901
+
902
+ .as_touch tr.record {
903
+ line-height: 130%;
904
+ }
905
+
906
+ .as_touch th a, .as_touch th a:visited {
907
+ padding: 5px 2px 5px 5px;
908
+ }
909
+
910
+ .as_touch tr.record td {
911
+ padding: 5px 10px;
912
+ }