spree_backend 2.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (370) hide show
  1. checksums.yaml +15 -0
  2. data/app/assets/images/admin/bg/spree_50.png +0 -0
  3. data/app/assets/images/admin/payment_banner.png +0 -0
  4. data/app/assets/images/admin/progress.gif +0 -0
  5. data/app/assets/javascripts/admin/address_states.js +27 -0
  6. data/app/assets/javascripts/admin/admin.js.erb +283 -0
  7. data/app/assets/javascripts/admin/calculator.js +16 -0
  8. data/app/assets/javascripts/admin/checkouts/edit.js +94 -0
  9. data/app/assets/javascripts/admin/gateway.js +13 -0
  10. data/app/assets/javascripts/admin/image_settings.js.erb +62 -0
  11. data/app/assets/javascripts/admin/images/index.js.coffee +15 -0
  12. data/app/assets/javascripts/admin/images/new.js.coffee +7 -0
  13. data/app/assets/javascripts/admin/nested-attribute.js +23 -0
  14. data/app/assets/javascripts/admin/option_type_autocomplete.js.erb +35 -0
  15. data/app/assets/javascripts/admin/orders/edit.js +17 -0
  16. data/app/assets/javascripts/admin/orders/edit_form.js +16 -0
  17. data/app/assets/javascripts/admin/payments/new.js +16 -0
  18. data/app/assets/javascripts/admin/product_picker.js +37 -0
  19. data/app/assets/javascripts/admin/progress.coffee +27 -0
  20. data/app/assets/javascripts/admin/promotions.js +98 -0
  21. data/app/assets/javascripts/admin/shipments.js.erb +66 -0
  22. data/app/assets/javascripts/admin/spree-select2.js.erb +22 -0
  23. data/app/assets/javascripts/admin/spree_backend.js +19 -0
  24. data/app/assets/javascripts/admin/states.js +9 -0
  25. data/app/assets/javascripts/admin/stock_management.js.coffee +9 -0
  26. data/app/assets/javascripts/admin/stock_transfer.js.coffee +181 -0
  27. data/app/assets/javascripts/admin/taxon_autocomplete.js.erb +32 -0
  28. data/app/assets/javascripts/admin/taxon_tree_menu.js.coffee +22 -0
  29. data/app/assets/javascripts/admin/taxonomy.js.coffee +127 -0
  30. data/app/assets/javascripts/admin/underscore-min.js +1227 -0
  31. data/app/assets/javascripts/admin/user_picker.js +31 -0
  32. data/app/assets/javascripts/admin/variant_autocomplete.js.erb +180 -0
  33. data/app/assets/javascripts/admin/zone.js.coffee +39 -0
  34. data/app/assets/javascripts/store/backend.js +1 -0
  35. data/app/assets/stylesheets/admin/components/_actions.scss +31 -0
  36. data/app/assets/stylesheets/admin/components/_date-picker.scss +154 -0
  37. data/app/assets/stylesheets/admin/components/_messages.scss +43 -0
  38. data/app/assets/stylesheets/admin/components/_navigation.scss +150 -0
  39. data/app/assets/stylesheets/admin/components/_pagination.scss +17 -0
  40. data/app/assets/stylesheets/admin/components/_product_autocomplete.scss +29 -0
  41. data/app/assets/stylesheets/admin/components/_progress.scss +35 -0
  42. data/app/assets/stylesheets/admin/components/_sidebar.scss +24 -0
  43. data/app/assets/stylesheets/admin/components/_states.scss +34 -0
  44. data/app/assets/stylesheets/admin/components/_table-filter.scss +14 -0
  45. data/app/assets/stylesheets/admin/globals/_functions.scss +25 -0
  46. data/app/assets/stylesheets/admin/globals/_mixins.scss +25 -0
  47. data/app/assets/stylesheets/admin/globals/_variables.scss +142 -0
  48. data/app/assets/stylesheets/admin/globals/_variables_override.scss +7 -0
  49. data/app/assets/stylesheets/admin/hacks/_ie.scss +73 -0
  50. data/app/assets/stylesheets/admin/hacks/_mozilla.scss +32 -0
  51. data/app/assets/stylesheets/admin/hacks/_opera.scss +17 -0
  52. data/app/assets/stylesheets/admin/plugins/_jstree.scss +132 -0
  53. data/app/assets/stylesheets/admin/plugins/_powertip.scss +86 -0
  54. data/app/assets/stylesheets/admin/plugins/_select2.scss +176 -0
  55. data/app/assets/stylesheets/admin/plugins/_token-input.scss +110 -0
  56. data/app/assets/stylesheets/admin/plugins/font-awesome.scss +303 -0
  57. data/app/assets/stylesheets/admin/sections/_bulk_transfer.scss +8 -0
  58. data/app/assets/stylesheets/admin/sections/_edit_checkouts.scss +72 -0
  59. data/app/assets/stylesheets/admin/sections/_image_settings.scss +3 -0
  60. data/app/assets/stylesheets/admin/sections/_orders.scss +54 -0
  61. data/app/assets/stylesheets/admin/sections/_overview.scss +86 -0
  62. data/app/assets/stylesheets/admin/sections/_products.scss +113 -0
  63. data/app/assets/stylesheets/admin/sections/_promotions.scss +100 -0
  64. data/app/assets/stylesheets/admin/shared/_forms.scss +262 -0
  65. data/app/assets/stylesheets/admin/shared/_icons.scss +22 -0
  66. data/app/assets/stylesheets/admin/shared/_layout.scss +91 -0
  67. data/app/assets/stylesheets/admin/shared/_tables.scss +198 -0
  68. data/app/assets/stylesheets/admin/shared/_typography.scss +132 -0
  69. data/app/assets/stylesheets/admin/spree_admin.scss +39 -0
  70. data/app/assets/stylesheets/admin/spree_backend.css +16 -0
  71. data/app/assets/stylesheets/store/backend.css +1 -0
  72. data/app/controllers/spree/admin/adjustments_controller.rb +30 -0
  73. data/app/controllers/spree/admin/banners_controller.rb +14 -0
  74. data/app/controllers/spree/admin/base_controller.rb +92 -0
  75. data/app/controllers/spree/admin/countries_controller.rb +11 -0
  76. data/app/controllers/spree/admin/general_settings_controller.rb +34 -0
  77. data/app/controllers/spree/admin/image_settings_controller.rb +66 -0
  78. data/app/controllers/spree/admin/images_controller.rb +35 -0
  79. data/app/controllers/spree/admin/inventory_units_controller.rb +6 -0
  80. data/app/controllers/spree/admin/line_items_controller.rb +49 -0
  81. data/app/controllers/spree/admin/mail_methods_controller.rb +38 -0
  82. data/app/controllers/spree/admin/option_types_controller.rb +46 -0
  83. data/app/controllers/spree/admin/option_values_controller.rb +11 -0
  84. data/app/controllers/spree/admin/orders/customer_details_controller.rb +40 -0
  85. data/app/controllers/spree/admin/orders_controller.rb +133 -0
  86. data/app/controllers/spree/admin/overview_controller.rb +13 -0
  87. data/app/controllers/spree/admin/payment_methods_controller.rb +65 -0
  88. data/app/controllers/spree/admin/payments_controller.rb +111 -0
  89. data/app/controllers/spree/admin/product_properties_controller.rb +18 -0
  90. data/app/controllers/spree/admin/products_controller.rb +115 -0
  91. data/app/controllers/spree/admin/promotion_actions_controller.rb +45 -0
  92. data/app/controllers/spree/admin/promotion_rules_controller.rb +50 -0
  93. data/app/controllers/spree/admin/promotions_controller.rb +23 -0
  94. data/app/controllers/spree/admin/properties_controller.rb +12 -0
  95. data/app/controllers/spree/admin/prototypes_controller.rb +27 -0
  96. data/app/controllers/spree/admin/reports_controller.rb +55 -0
  97. data/app/controllers/spree/admin/resource_controller.rb +261 -0
  98. data/app/controllers/spree/admin/return_authorizations_controller.rb +21 -0
  99. data/app/controllers/spree/admin/search_controller.rb +27 -0
  100. data/app/controllers/spree/admin/shipping_categories_controller.rb +6 -0
  101. data/app/controllers/spree/admin/shipping_methods_controller.rb +45 -0
  102. data/app/controllers/spree/admin/states_controller.rb +29 -0
  103. data/app/controllers/spree/admin/stock_items_controller.rb +24 -0
  104. data/app/controllers/spree/admin/stock_locations_controller.rb +7 -0
  105. data/app/controllers/spree/admin/stock_movements_controller.rb +60 -0
  106. data/app/controllers/spree/admin/stock_transfers_controller.rb +53 -0
  107. data/app/controllers/spree/admin/tax_categories_controller.rb +19 -0
  108. data/app/controllers/spree/admin/tax_rates_controller.rb +26 -0
  109. data/app/controllers/spree/admin/tax_settings_controller.rb +17 -0
  110. data/app/controllers/spree/admin/taxonomies_controller.rb +21 -0
  111. data/app/controllers/spree/admin/taxons_controller.rb +112 -0
  112. data/app/controllers/spree/admin/trackers_controller.rb +6 -0
  113. data/app/controllers/spree/admin/variants_controller.rb +44 -0
  114. data/app/controllers/spree/admin/zones_controller.rb +26 -0
  115. data/app/helpers/spree/admin/base_helper.rb +168 -0
  116. data/app/helpers/spree/admin/general_settings_helper.rb +13 -0
  117. data/app/helpers/spree/admin/inventory_settings_helper.rb +9 -0
  118. data/app/helpers/spree/admin/navigation_helper.rb +154 -0
  119. data/app/helpers/spree/admin/orders_helper.rb +19 -0
  120. data/app/helpers/spree/admin/payments_helper.rb +11 -0
  121. data/app/helpers/spree/admin/products_helper.rb +27 -0
  122. data/app/helpers/spree/admin/stock_movements_helper.rb +13 -0
  123. data/app/helpers/spree/admin/tables_helper.rb +15 -0
  124. data/app/helpers/spree/admin/taxons_helper.rb +9 -0
  125. data/app/helpers/spree/promotion_rules_helper.rb +13 -0
  126. data/app/models/spree/backend_configuration.rb +5 -0
  127. data/app/views/spree/admin/adjustments/_adjustments_table.html.erb +36 -0
  128. data/app/views/spree/admin/adjustments/_form.html.erb +16 -0
  129. data/app/views/spree/admin/adjustments/edit.html.erb +22 -0
  130. data/app/views/spree/admin/adjustments/index.html.erb +14 -0
  131. data/app/views/spree/admin/adjustments/new.html.erb +23 -0
  132. data/app/views/spree/admin/banners/_gateway.html.erb +16 -0
  133. data/app/views/spree/admin/countries/_form.html.erb +22 -0
  134. data/app/views/spree/admin/countries/edit.html.erb +21 -0
  135. data/app/views/spree/admin/countries/index.html.erb +34 -0
  136. data/app/views/spree/admin/general_settings/edit.html.erb +92 -0
  137. data/app/views/spree/admin/image_settings/edit.html.erb +126 -0
  138. data/app/views/spree/admin/images/_form.html.erb +18 -0
  139. data/app/views/spree/admin/images/edit.html.erb +28 -0
  140. data/app/views/spree/admin/images/index.html.erb +58 -0
  141. data/app/views/spree/admin/images/new.html.erb +15 -0
  142. data/app/views/spree/admin/inventory_units/adjust.html.erb +31 -0
  143. data/app/views/spree/admin/line_items/create.js.erb +1 -0
  144. data/app/views/spree/admin/line_items/destroy.js.erb +1 -0
  145. data/app/views/spree/admin/mail_methods/_form.html.erb +80 -0
  146. data/app/views/spree/admin/mail_methods/edit.html.erb +21 -0
  147. data/app/views/spree/admin/option_types/_form.html.erb +17 -0
  148. data/app/views/spree/admin/option_types/_option_value_fields.html.erb +9 -0
  149. data/app/views/spree/admin/option_types/edit.html.erb +50 -0
  150. data/app/views/spree/admin/option_types/index.html.erb +40 -0
  151. data/app/views/spree/admin/option_types/new.html.erb +11 -0
  152. data/app/views/spree/admin/option_types/new.js.erb +2 -0
  153. data/app/views/spree/admin/orders/_add_product.html.erb +15 -0
  154. data/app/views/spree/admin/orders/_form.html.erb +45 -0
  155. data/app/views/spree/admin/orders/_line_item.html.erb +9 -0
  156. data/app/views/spree/admin/orders/_shipment.html.erb +148 -0
  157. data/app/views/spree/admin/orders/customer_details/_form.html.erb +66 -0
  158. data/app/views/spree/admin/orders/customer_details/edit.html.erb +27 -0
  159. data/app/views/spree/admin/orders/edit.html.erb +30 -0
  160. data/app/views/spree/admin/orders/index.html.erb +134 -0
  161. data/app/views/spree/admin/payment_methods/_form.html.erb +57 -0
  162. data/app/views/spree/admin/payment_methods/edit.html.erb +23 -0
  163. data/app/views/spree/admin/payment_methods/index.html.erb +52 -0
  164. data/app/views/spree/admin/payment_methods/new.html.erb +22 -0
  165. data/app/views/spree/admin/payments/_bill_address_form.html.erb +9 -0
  166. data/app/views/spree/admin/payments/_form.html.erb +28 -0
  167. data/app/views/spree/admin/payments/_list.html.erb +26 -0
  168. data/app/views/spree/admin/payments/credit.html.erb +18 -0
  169. data/app/views/spree/admin/payments/index.html.erb +24 -0
  170. data/app/views/spree/admin/payments/new.html.erb +26 -0
  171. data/app/views/spree/admin/payments/show.html.erb +18 -0
  172. data/app/views/spree/admin/payments/source_forms/_check.html.erb +0 -0
  173. data/app/views/spree/admin/payments/source_forms/_gateway.html.erb +50 -0
  174. data/app/views/spree/admin/payments/source_views/_check.html.erb +0 -0
  175. data/app/views/spree/admin/payments/source_views/_gateway.html.erb +29 -0
  176. data/app/views/spree/admin/product_properties/_product_property_fields.html.erb +17 -0
  177. data/app/views/spree/admin/product_properties/index.html.erb +59 -0
  178. data/app/views/spree/admin/products/_add_stock_form.html.erb +6 -0
  179. data/app/views/spree/admin/products/_form.html.erb +128 -0
  180. data/app/views/spree/admin/products/_properties_form.erb +10 -0
  181. data/app/views/spree/admin/products/edit.html.erb +18 -0
  182. data/app/views/spree/admin/products/index.html.erb +102 -0
  183. data/app/views/spree/admin/products/new.html.erb +81 -0
  184. data/app/views/spree/admin/products/new.js.erb +7 -0
  185. data/app/views/spree/admin/products/stock.html.erb +79 -0
  186. data/app/views/spree/admin/promotion_actions/create.js.erb +13 -0
  187. data/app/views/spree/admin/promotion_actions/destroy.js.erb +1 -0
  188. data/app/views/spree/admin/promotion_rules/create.js.erb +7 -0
  189. data/app/views/spree/admin/promotion_rules/destroy.js.erb +3 -0
  190. data/app/views/spree/admin/promotions/_actions.html.erb +32 -0
  191. data/app/views/spree/admin/promotions/_form.html.erb +56 -0
  192. data/app/views/spree/admin/promotions/_promotion_action.html.erb +11 -0
  193. data/app/views/spree/admin/promotions/_promotion_rule.html.erb +9 -0
  194. data/app/views/spree/admin/promotions/_rules.html.erb +45 -0
  195. data/app/views/spree/admin/promotions/_tab.html.erb +1 -0
  196. data/app/views/spree/admin/promotions/actions/_create_adjustment.html.erb +26 -0
  197. data/app/views/spree/admin/promotions/actions/_create_line_items.html.erb +22 -0
  198. data/app/views/spree/admin/promotions/edit.html.erb +28 -0
  199. data/app/views/spree/admin/promotions/index.html.erb +52 -0
  200. data/app/views/spree/admin/promotions/new.html.erb +16 -0
  201. data/app/views/spree/admin/promotions/rules/_first_order.html.erb +0 -0
  202. data/app/views/spree/admin/promotions/rules/_item_total.html.erb +6 -0
  203. data/app/views/spree/admin/promotions/rules/_landing_page.html.erb +5 -0
  204. data/app/views/spree/admin/promotions/rules/_product.html.erb +9 -0
  205. data/app/views/spree/admin/promotions/rules/_user.html.erb +4 -0
  206. data/app/views/spree/admin/promotions/rules/_user_logged_in.html.erb +0 -0
  207. data/app/views/spree/admin/properties/_form.html.erb +16 -0
  208. data/app/views/spree/admin/properties/edit.html.erb +18 -0
  209. data/app/views/spree/admin/properties/filtered.html.erb +1 -0
  210. data/app/views/spree/admin/properties/index.html.erb +41 -0
  211. data/app/views/spree/admin/properties/new.html.erb +13 -0
  212. data/app/views/spree/admin/properties/new.js.erb +2 -0
  213. data/app/views/spree/admin/prototypes/_form.html.erb +25 -0
  214. data/app/views/spree/admin/prototypes/_prototypes.html.erb +25 -0
  215. data/app/views/spree/admin/prototypes/available.js.erb +2 -0
  216. data/app/views/spree/admin/prototypes/edit.html.erb +20 -0
  217. data/app/views/spree/admin/prototypes/index.html.erb +40 -0
  218. data/app/views/spree/admin/prototypes/new.html.erb +11 -0
  219. data/app/views/spree/admin/prototypes/new.js.erb +5 -0
  220. data/app/views/spree/admin/prototypes/select.js.erb +4 -0
  221. data/app/views/spree/admin/prototypes/show.html.erb +42 -0
  222. data/app/views/spree/admin/reports/index.html.erb +21 -0
  223. data/app/views/spree/admin/reports/sales_total.html.erb +37 -0
  224. data/app/views/spree/admin/return_authorizations/_form.html.erb +78 -0
  225. data/app/views/spree/admin/return_authorizations/edit.html.erb +32 -0
  226. data/app/views/spree/admin/return_authorizations/index.html.erb +52 -0
  227. data/app/views/spree/admin/return_authorizations/new.html.erb +22 -0
  228. data/app/views/spree/admin/search/users.rabl +30 -0
  229. data/app/views/spree/admin/shared/_address.html.erb +6 -0
  230. data/app/views/spree/admin/shared/_address_form.html.erb +72 -0
  231. data/app/views/spree/admin/shared/_alert.html.erb +5 -0
  232. data/app/views/spree/admin/shared/_calculator_fields.html.erb +22 -0
  233. data/app/views/spree/admin/shared/_configuration_menu.html.erb +30 -0
  234. data/app/views/spree/admin/shared/_destroy.js.erb +16 -0
  235. data/app/views/spree/admin/shared/_edit_resource_links.html.erb +5 -0
  236. data/app/views/spree/admin/shared/_head.html.erb +25 -0
  237. data/app/views/spree/admin/shared/_new_resource_links.html.erb +5 -0
  238. data/app/views/spree/admin/shared/_order_details.html.erb +56 -0
  239. data/app/views/spree/admin/shared/_order_tabs.html.erb +75 -0
  240. data/app/views/spree/admin/shared/_product_sub_menu.html.erb +8 -0
  241. data/app/views/spree/admin/shared/_product_tabs.html.erb +30 -0
  242. data/app/views/spree/admin/shared/_report_criteria.html.erb +17 -0
  243. data/app/views/spree/admin/shared/_routes.html.erb +8 -0
  244. data/app/views/spree/admin/shared/_show_resource_links.html.erb +5 -0
  245. data/app/views/spree/admin/shared/_stock_movement_form.html.erb +30 -0
  246. data/app/views/spree/admin/shared/_tabs.html.erb +14 -0
  247. data/app/views/spree/admin/shared/_translations.html.erb +32 -0
  248. data/app/views/spree/admin/shared/_update_order_state.js +7 -0
  249. data/app/views/spree/admin/shipping_categories/_form.html.erb +6 -0
  250. data/app/views/spree/admin/shipping_categories/edit.html.erb +20 -0
  251. data/app/views/spree/admin/shipping_categories/index.html.erb +35 -0
  252. data/app/views/spree/admin/shipping_categories/new.html.erb +20 -0
  253. data/app/views/spree/admin/shipping_methods/_form.html.erb +58 -0
  254. data/app/views/spree/admin/shipping_methods/edit.html.erb +29 -0
  255. data/app/views/spree/admin/shipping_methods/index.html.erb +48 -0
  256. data/app/views/spree/admin/shipping_methods/new.html.erb +29 -0
  257. data/app/views/spree/admin/states/_form.html.erb +14 -0
  258. data/app/views/spree/admin/states/_state_list.html.erb +31 -0
  259. data/app/views/spree/admin/states/edit.html.erb +20 -0
  260. data/app/views/spree/admin/states/index.html.erb +24 -0
  261. data/app/views/spree/admin/states/new.html.erb +15 -0
  262. data/app/views/spree/admin/states/new.js.erb +2 -0
  263. data/app/views/spree/admin/stock_locations/_form.html.erb +87 -0
  264. data/app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb +39 -0
  265. data/app/views/spree/admin/stock_locations/edit.html.erb +17 -0
  266. data/app/views/spree/admin/stock_locations/index.html.erb +49 -0
  267. data/app/views/spree/admin/stock_locations/new.html.erb +16 -0
  268. data/app/views/spree/admin/stock_movements/_form.html.erb +13 -0
  269. data/app/views/spree/admin/stock_movements/edit.html.erb +16 -0
  270. data/app/views/spree/admin/stock_movements/index.html.erb +43 -0
  271. data/app/views/spree/admin/stock_movements/new.html.erb +16 -0
  272. data/app/views/spree/admin/stock_transfers/_stock_movements.html.erb +27 -0
  273. data/app/views/spree/admin/stock_transfers/index.html.erb +94 -0
  274. data/app/views/spree/admin/stock_transfers/new.html.erb +108 -0
  275. data/app/views/spree/admin/stock_transfers/show.html.erb +48 -0
  276. data/app/views/spree/admin/tax_categories/_form.html.erb +24 -0
  277. data/app/views/spree/admin/tax_categories/edit.html.erb +18 -0
  278. data/app/views/spree/admin/tax_categories/index.html.erb +48 -0
  279. data/app/views/spree/admin/tax_categories/new.html.erb +19 -0
  280. data/app/views/spree/admin/tax_categories/show.html.erb +1 -0
  281. data/app/views/spree/admin/tax_rates/_form.html.erb +42 -0
  282. data/app/views/spree/admin/tax_rates/edit.html.erb +21 -0
  283. data/app/views/spree/admin/tax_rates/index.html.erb +59 -0
  284. data/app/views/spree/admin/tax_rates/new.html.erb +25 -0
  285. data/app/views/spree/admin/tax_settings/edit.html.erb +18 -0
  286. data/app/views/spree/admin/taxonomies/_form.html.erb +7 -0
  287. data/app/views/spree/admin/taxonomies/_js_head.html.erb +13 -0
  288. data/app/views/spree/admin/taxonomies/_list.html.erb +26 -0
  289. data/app/views/spree/admin/taxonomies/_taxon.html.erb +12 -0
  290. data/app/views/spree/admin/taxonomies/edit.erb +42 -0
  291. data/app/views/spree/admin/taxonomies/index.html.erb +15 -0
  292. data/app/views/spree/admin/taxonomies/new.html.erb +22 -0
  293. data/app/views/spree/admin/taxons/_form.html.erb +44 -0
  294. data/app/views/spree/admin/taxons/_taxon_table.html.erb +23 -0
  295. data/app/views/spree/admin/taxons/edit.html.erb +23 -0
  296. data/app/views/spree/admin/taxons/search.rabl +5 -0
  297. data/app/views/spree/admin/trackers/_form.html.erb +34 -0
  298. data/app/views/spree/admin/trackers/edit.html.erb +20 -0
  299. data/app/views/spree/admin/trackers/index.html.erb +48 -0
  300. data/app/views/spree/admin/trackers/new.html.erb +20 -0
  301. data/app/views/spree/admin/variants/_autocomplete.js.erb +67 -0
  302. data/app/views/spree/admin/variants/_form.html.erb +37 -0
  303. data/app/views/spree/admin/variants/edit.html.erb +15 -0
  304. data/app/views/spree/admin/variants/index.html.erb +74 -0
  305. data/app/views/spree/admin/variants/new.html.erb +9 -0
  306. data/app/views/spree/admin/variants/new.js.erb +3 -0
  307. data/app/views/spree/admin/zones/_country_member.html.erb +5 -0
  308. data/app/views/spree/admin/zones/_form.html.erb +34 -0
  309. data/app/views/spree/admin/zones/_member_type.html.erb +19 -0
  310. data/app/views/spree/admin/zones/_state_member.html.erb +5 -0
  311. data/app/views/spree/admin/zones/edit.html.erb +23 -0
  312. data/app/views/spree/admin/zones/index.html.erb +53 -0
  313. data/app/views/spree/admin/zones/new.html.erb +21 -0
  314. data/app/views/spree/layouts/admin.html.erb +135 -0
  315. data/app/views/spree/test_mailer/test_email.text.erb +4 -0
  316. data/config/initializers/form_builder.rb +15 -0
  317. data/config/routes.rb +159 -0
  318. data/lib/spree/backend.rb +21 -0
  319. data/lib/spree/backend/action_callbacks.rb +26 -0
  320. data/lib/spree/backend/engine.rb +41 -0
  321. data/lib/spree_backend.rb +1 -0
  322. data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
  323. data/vendor/assets/fonts/fontawesome-webfont.svg +255 -0
  324. data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
  325. data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
  326. data/vendor/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  327. data/vendor/assets/images/jquery-ui/ui-bg_flat_0_eeeeee_40x100.png +0 -0
  328. data/vendor/assets/images/jquery-ui/ui-bg_flat_55_ffffff_40x100.png +0 -0
  329. data/vendor/assets/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
  330. data/vendor/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
  331. data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_100_f6f6f6_1x100.png +0 -0
  332. data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_25_0073ea_1x100.png +0 -0
  333. data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
  334. data/vendor/assets/images/jquery-ui/ui-icons_0073ea_256x240.png +0 -0
  335. data/vendor/assets/images/jquery-ui/ui-icons_454545_256x240.png +0 -0
  336. data/vendor/assets/images/jquery-ui/ui-icons_666666_256x240.png +0 -0
  337. data/vendor/assets/images/jquery-ui/ui-icons_ff0084_256x240.png +0 -0
  338. data/vendor/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
  339. data/vendor/assets/images/jquery.alerts/images/help.gif +0 -0
  340. data/vendor/assets/images/jquery.alerts/images/important.gif +0 -0
  341. data/vendor/assets/images/jquery.alerts/images/info.gif +0 -0
  342. data/vendor/assets/images/jquery.alerts/images/title.gif +0 -0
  343. data/vendor/assets/javascripts/css_browser_selector_dev.js +156 -0
  344. data/vendor/assets/javascripts/equalize.js +41 -0
  345. data/vendor/assets/javascripts/handlebars.js +1920 -0
  346. data/vendor/assets/javascripts/jquery.adaptivemenu.js +60 -0
  347. data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.js +235 -0
  348. data/vendor/assets/javascripts/jquery.cookie.js +41 -0
  349. data/vendor/assets/javascripts/jquery.delayedobserver.js +35 -0
  350. data/vendor/assets/javascripts/jquery.horizontalNav.js +141 -0
  351. data/vendor/assets/javascripts/jquery.jstree/jquery.jstree.js +4540 -0
  352. data/vendor/assets/javascripts/jquery.jstree/themes/apple/bg.jpg +0 -0
  353. data/vendor/assets/javascripts/jquery.jstree/themes/apple/d.png +0 -0
  354. data/vendor/assets/javascripts/jquery.jstree/themes/apple/dot_for_ie.gif +0 -0
  355. data/vendor/assets/javascripts/jquery.jstree/themes/apple/style.css +61 -0
  356. data/vendor/assets/javascripts/jquery.jstree/themes/apple/throbber.gif +0 -0
  357. data/vendor/assets/javascripts/jquery.powertip.js +796 -0
  358. data/vendor/assets/javascripts/jquery.vAlign.js +11 -0
  359. data/vendor/assets/javascripts/modernizr.js +4 -0
  360. data/vendor/assets/javascripts/responsive-tables.js +42 -0
  361. data/vendor/assets/javascripts/spin.js +319 -0
  362. data/vendor/assets/javascripts/trunk8.js +233 -0
  363. data/vendor/assets/stylesheets/font-awesome-ie7.css +645 -0
  364. data/vendor/assets/stylesheets/font-awesome.css.erb +303 -0
  365. data/vendor/assets/stylesheets/jquery-ui.datepicker.css.erb +357 -0
  366. data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.css.erb +57 -0
  367. data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.spree.css +29 -0
  368. data/vendor/assets/stylesheets/jquery.powertip.css +85 -0
  369. data/vendor/assets/stylesheets/responsive-tables.css +21 -0
  370. metadata +509 -0
@@ -0,0 +1,22 @@
1
+ // Some fixes for fontwesome stylesheets
2
+ [class^="icon-"], [class*=" icon-"] {
3
+ &.button, &.icon_link {
4
+ width: auto;
5
+
6
+ &:before {
7
+ padding-right: 5px;
8
+ }
9
+ }
10
+ }
11
+
12
+ [class^="icon-"]:before, [class*=" icon-"]:before {
13
+ -webkit-font-smoothing: antialiased;
14
+ }
15
+ .icon-email:before { @extend .icon-envelope:before }
16
+ .icon-resume:before { @extend .icon-refresh:before }
17
+
18
+ .icon-cancel:before,
19
+ .icon-void:before { @extend .icon-remove:before }
20
+
21
+ .icon-capture:before { @extend .icon-ok:before }
22
+ .icon-credit:before { @extend .icon-ok:before }
@@ -0,0 +1,91 @@
1
+ // Basics
2
+ //---------------------------------------------------
3
+ * {
4
+ -webkit-box-sizing: border-box;
5
+ -moz-box-sizing: border-box;
6
+ box-sizing: border-box;
7
+ }
8
+
9
+ // Helpers
10
+ .block-table {
11
+ display: table;
12
+ width: 100%;
13
+
14
+ .table-cell {
15
+ display: table-cell;
16
+ vertical-align: middle;
17
+ padding: 0 10px;
18
+
19
+ &:first-child {
20
+ padding-left: 0;
21
+ }
22
+ &:last-child {
23
+ padding-right: 0;
24
+ }
25
+ }
26
+ }
27
+
28
+ .hidden {
29
+ display: none;
30
+ }
31
+
32
+ // For block grids
33
+ .frameless {
34
+ margin-left: -10px;
35
+ margin-right: -10px;
36
+ }
37
+
38
+ // Header
39
+ //---------------------------------------------------
40
+ #header {
41
+ background-color: $color-1;
42
+ padding: 5px 0;
43
+ }
44
+
45
+ #logo { height: 40px }
46
+
47
+ [data-hook="admin-title"] { font-size: 14px }
48
+
49
+ .page-title {
50
+ i {
51
+ color: $color-2;
52
+ }
53
+ }
54
+
55
+ // Content
56
+ //---------------------------------------------------
57
+ #content {
58
+ background-color: $color-1;
59
+ position: relative;
60
+ z-index: 0;
61
+ padding: 0;
62
+ margin-top: 15px;
63
+ }
64
+
65
+ #content-header {
66
+ padding: 15px 0;
67
+ background-color: very-light($color-3, 4);
68
+ border-bottom: 1px solid $color-border;
69
+
70
+ .page-title {
71
+ font-size: 20px;
72
+ -webkit-font-smoothing: antialiased;
73
+ }
74
+ .page-actions {
75
+ text-align: right;
76
+ form {
77
+ display: inline-block;
78
+ }
79
+ .button {
80
+ font-size: 85%;
81
+ }
82
+ }
83
+ }
84
+
85
+ // Footer
86
+ //---------------------------------------------------
87
+ #footer {
88
+ margin-top: 15px;
89
+ border-top: 1px solid $color-border;
90
+ padding: 10px 0;
91
+ }
@@ -0,0 +1,198 @@
1
+ table {
2
+ width: 100%;
3
+ margin-bottom: 15px;
4
+ border-collapse: separate;
5
+
6
+ th, td {
7
+ padding: 7px 5px;
8
+ border-right: 1px solid $color-border;
9
+ border-bottom: 1px solid $color-border;
10
+ vertical-align: middle;
11
+ text-overflow: ellipsis;
12
+
13
+ img {
14
+ border: 1px solid transparent;
15
+ }
16
+
17
+ &:first-child {
18
+ border-left: 1px solid $color-border;
19
+ }
20
+
21
+ a {
22
+ border-bottom: 1px dotted lighten($color-link, 10);
23
+
24
+ &:hover {
25
+ border-color: lighten($color-link-hover, 10);
26
+ }
27
+ }
28
+
29
+ &.actions {
30
+ background-color: transparent;
31
+ border: none !important;
32
+ text-align: center;
33
+
34
+ span.text {
35
+ font-size: $body-font-size;
36
+ }
37
+
38
+ [class*='icon-'].no-text {
39
+ font-size: 120%;
40
+ background-color: very-light($color-3);
41
+ border: 1px solid $color-border;
42
+ border-radius: 15px;
43
+ width: 29px;
44
+ height: 29px;
45
+ display: inline-block;
46
+ padding-top: 2px;
47
+
48
+ &:before {
49
+ text-align: center !important;
50
+ width: 27px;
51
+ display: inline-block;
52
+ }
53
+
54
+ &:hover {
55
+ border-color: transparent;
56
+ }
57
+ }
58
+
59
+ button[class*='icon-'] {
60
+ color: $color-link;
61
+ padding: 0 !important;
62
+ }
63
+
64
+ .icon-envelope-alt, .icon-eye-open {
65
+ color: $color-link;
66
+ padding-left: 0px;
67
+
68
+ &:hover {
69
+ background-color: $color-3;
70
+ color: $color-1;
71
+ }
72
+ }
73
+ .icon-trash:hover, .icon-void:hover {
74
+ background-color: $color-error;
75
+ color: $color-1;
76
+ }
77
+ .icon-cancel:hover {
78
+ background-color: $color-notice;
79
+ color: $color-1;
80
+ }
81
+ .icon-edit:hover, .icon-capture:hover, .icon-ok:hover, .icon-plus:hover {
82
+ background-color: $color-success;
83
+ color: $color-1;
84
+ }
85
+ .icon-copy:hover {
86
+ background-color: $color-notice;
87
+ color: $color-1;
88
+ }
89
+ }
90
+
91
+ input[type="number"],
92
+ input[type="text"] {
93
+ width: 100%;
94
+ }
95
+
96
+ &.no-border {
97
+ border-right: none;
98
+ }
99
+
100
+ .handle {
101
+ @extend [class^="icon-"]:before;
102
+ @extend .icon-reorder;
103
+ cursor: move;
104
+ }
105
+
106
+ }
107
+
108
+ &.no-borders {
109
+ td, th {
110
+ border: none !important;
111
+ }
112
+
113
+ }
114
+
115
+ thead {
116
+ th {
117
+ padding: 10px;
118
+ border-top: 1px solid $color-border;
119
+ border-bottom: none;
120
+ background-color: $color-tbl-thead;
121
+ text-transform: uppercase;
122
+ font-size: 85%;
123
+ font-weight: $font-weight-bold;
124
+ }
125
+ }
126
+
127
+ tbody {
128
+ tr {
129
+ &:first-child td {
130
+ border-top: 1px solid $color-border;
131
+ }
132
+ &.even td {
133
+ background-color: $color-tbl-even;
134
+
135
+ img {
136
+ border: 1px solid very-light($color-3, 6);
137
+ }
138
+ }
139
+
140
+ &:hover td {
141
+ background-color: very-light($color-3, 5);
142
+
143
+ img {
144
+ border: 1px solid $color-border;
145
+ }
146
+ }
147
+
148
+ &.deleted td {
149
+ background-color: very-light($color-error, 6);
150
+ border-color: very-light($color-error, 15);
151
+ }
152
+
153
+ &.ui-sortable-placeholder td {
154
+ border: 1px solid $color-2 !important;
155
+ visibility: visible !important;
156
+
157
+ &.actions {
158
+ background-color: transparent;
159
+ border-right: none !important;
160
+ border-top: none !important;
161
+ border-bottom: none !important;
162
+ border-left: 1px solid $color-2 !important;
163
+ }
164
+ }
165
+
166
+ &.ui-sortable-helper {
167
+ width: 100%;
168
+
169
+ td {
170
+ background-color: lighten($color-3, 33);
171
+ border-bottom: 1px solid $color-border;
172
+
173
+ &.actions {
174
+ display: none;
175
+ }
176
+ }
177
+ }
178
+ }
179
+
180
+ &.no-border-top tr:first-child td {
181
+ border-top: none;
182
+ }
183
+
184
+ &.grand-total {
185
+ td {
186
+ border-color: $color-2 !important;
187
+ text-transform: uppercase;
188
+ font-size: 110%;
189
+ font-weight: 600;
190
+ background-color: lighten($color-2, 50);
191
+ }
192
+ .total {
193
+ background-color: $color-2;
194
+ color: $color-1;
195
+ }
196
+ }
197
+ }
198
+ }
@@ -0,0 +1,132 @@
1
+ // Base
2
+ //--------------------------------------------------------------
3
+ body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; font-size: 13px; }
4
+
5
+ body {
6
+ font-family: $base-font-family;
7
+ font-size: $body-font-size;
8
+ font-weight: 400;
9
+ color: $color-body-text;
10
+ text-rendering: optimizeLegibility;
11
+ }
12
+
13
+ hr {
14
+ border-top: 1px solid $color-border;
15
+ border-bottom: 1px solid white;
16
+ border-left: none;
17
+ }
18
+
19
+ strong, b {
20
+ font-weight: 600;
21
+ }
22
+
23
+ // links
24
+ //--------------------------------------------------------------
25
+ a {
26
+ color: $color-link;
27
+ text-decoration: none;
28
+ line-height: inherit;
29
+
30
+ &, &:hover, &:active, &:visited, &:focus {
31
+ outline: none;
32
+ }
33
+
34
+ &:visited {
35
+ color: $color-link-visited;
36
+ }
37
+ &:focus {
38
+ color: $color-link-focus;
39
+ }
40
+ &:active {
41
+ color: $color-link-active;
42
+ }
43
+ &:hover {
44
+ color: $color-link-hover;
45
+ }
46
+ }
47
+
48
+ // Headings
49
+ //--------------------------------------------------------------
50
+
51
+ h1,h2,h3,h4,h5,h6 {
52
+ font-weight: 600;
53
+ color: $color-headers;
54
+ line-height: 1.1;
55
+ }
56
+
57
+ h1 { font-size: $h1-size; line-height: $h1-size + 6 }
58
+ h2 { font-size: $h2-size; line-height: $h1-size + 4 }
59
+ h3 { font-size: $h3-size; line-height: $h1-size + 2 }
60
+ h4 { font-size: $h4-size; line-height: $h1-size }
61
+ h5 { font-size: $h5-size; line-height: $h1-size }
62
+ h6 { font-size: $h6-size; line-height: $h1-size }
63
+
64
+
65
+ // Lists
66
+ //--------------------------------------------------------------
67
+ ul {
68
+ &.inline-menu {
69
+ li {
70
+ display: inline-block;
71
+ }
72
+ }
73
+ &.fields {
74
+ list-style: none;
75
+ padding: 0;
76
+ margin: 0;
77
+ }
78
+ }
79
+
80
+ dl {
81
+ width: 100%;
82
+ overflow: hidden;
83
+ margin: 5px 0;
84
+ color: lighten($color-body-text, 15);
85
+
86
+ dt, dd {
87
+ float: left;
88
+ line-height: 16px;
89
+ padding: 5px;
90
+ text-align: justify;
91
+ }
92
+
93
+ dt {
94
+ width: 40%;
95
+ font-weight: 600;
96
+ padding-left: 0;
97
+ text-transform: uppercase;
98
+ font-size: 85%;
99
+ }
100
+
101
+ dd {
102
+ width: 60%;
103
+ padding-right: 0;
104
+ }
105
+
106
+ dd:after {
107
+ content: '';
108
+ clear: both;
109
+ }
110
+
111
+ }
112
+
113
+ // Helpers
114
+ .align-center { text-align: center }
115
+ .align-right { text-align: right }
116
+ .align-left { text-align: left }
117
+ .align-justify { text-align: justify }
118
+
119
+ .uppercase { text-transform: uppercase }
120
+
121
+ .green { color: $color-2 }
122
+ .blue { color: $color-3 }
123
+ .red { color: $color-5 }
124
+ .yellow { color: $color-6 }
125
+
126
+ .no-objects-found {
127
+ text-align: center;
128
+ font-size: 120%;
129
+ text-transform: uppercase;
130
+ padding: 40px 0px;
131
+ color: lighten($color-body-text, 15);
132
+ }
@@ -0,0 +1,39 @@
1
+ @import 'globals/functions';
2
+ @import 'globals/variables_override';
3
+ @import 'globals/variables';
4
+ @import 'globals/mixins';
5
+
6
+ @import 'shared/typography';
7
+ @import 'shared/tables';
8
+ @import 'shared/icons';
9
+ @import 'shared/forms';
10
+ @import 'shared/layout';
11
+
12
+ @import 'components/states';
13
+ @import 'components/actions';
14
+ @import 'components/date-picker';
15
+ @import 'components/messages';
16
+ @import 'components/pagination';
17
+ @import 'components/progress';
18
+ @import 'components/table-filter';
19
+ @import 'components/navigation';
20
+ @import 'components/sidebar';
21
+ @import 'components/product_autocomplete';
22
+
23
+ @import 'plugins/font-awesome';
24
+ @import 'plugins/powertip';
25
+ @import 'plugins/select2';
26
+ @import 'plugins/token-input';
27
+ @import 'plugins/jstree';
28
+
29
+ @import 'sections/image_settings';
30
+ @import 'sections/orders';
31
+ @import 'sections/overview';
32
+ @import 'sections/products';
33
+ @import 'sections/promotions';
34
+ @import 'sections/edit_checkouts';
35
+ @import 'sections/bulk_transfer';
36
+
37
+ @import 'hacks/mozilla';
38
+ @import 'hacks/opera';
39
+ @import 'hacks/ie';