spree_backend 2.4.10 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (405) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/spree/backend/adjustments.js.coffee +1 -2
  3. data/app/assets/javascripts/spree/backend/admin.js.erb +136 -53
  4. data/app/assets/javascripts/spree/backend/checkouts/edit.js +1 -4
  5. data/app/assets/javascripts/spree/backend/index.html +15 -0
  6. data/app/assets/javascripts/spree/backend/line_items.js.coffee +1 -4
  7. data/app/assets/javascripts/spree/backend/line_items_on_order_edit.js.erb +3 -16
  8. data/app/assets/javascripts/spree/backend/option_type_autocomplete.js.erb +2 -4
  9. data/app/assets/javascripts/spree/backend/option_value_picker.js +44 -0
  10. data/app/assets/javascripts/spree/backend/orders/edit_form.js +2 -3
  11. data/app/assets/javascripts/spree/backend/payments/edit.js.coffee +8 -12
  12. data/app/assets/javascripts/spree/backend/product_picker.js +10 -8
  13. data/app/assets/javascripts/spree/backend/progress.coffee +0 -21
  14. data/app/assets/javascripts/spree/backend/promotions.js +50 -1
  15. data/app/assets/javascripts/spree/backend/select_payments.js.coffee +7 -0
  16. data/app/assets/javascripts/spree/backend/shipments.js.erb +10 -41
  17. data/app/assets/javascripts/spree/backend/spree-select2.js.erb +0 -15
  18. data/app/assets/javascripts/spree/backend/states.js +3 -3
  19. data/app/assets/javascripts/spree/backend/stock_movement.js.coffee +1 -2
  20. data/app/assets/javascripts/spree/backend/stock_transfer.js.coffee +3 -2
  21. data/app/assets/javascripts/spree/backend/taxon_autocomplete.js.erb +2 -4
  22. data/app/assets/javascripts/spree/backend/taxon_tree_menu.js.coffee +4 -4
  23. data/app/assets/javascripts/spree/backend/taxonomy.js.coffee +15 -34
  24. data/app/assets/javascripts/spree/backend/taxons.js.coffee +27 -8
  25. data/app/assets/javascripts/spree/backend/user_picker.js +2 -3
  26. data/app/assets/javascripts/spree/backend/variant_autocomplete.js.coffee.erb +1 -2
  27. data/app/assets/javascripts/spree/backend/variant_management.js.coffee +1 -2
  28. data/app/assets/javascripts/spree/backend.js +13 -15
  29. data/app/assets/stylesheets/spree/backend/components/_buttons.scss +37 -0
  30. data/app/assets/stylesheets/spree/backend/components/_filters.scss +25 -0
  31. data/app/assets/stylesheets/spree/backend/components/_icons.scss +257 -0
  32. data/app/assets/stylesheets/spree/backend/components/_labels.scss +49 -0
  33. data/app/assets/stylesheets/spree/backend/components/_main.scss +5 -0
  34. data/app/assets/stylesheets/spree/backend/components/_navigation.scss +10 -165
  35. data/app/assets/stylesheets/spree/backend/components/_page_header.scss +17 -0
  36. data/app/assets/stylesheets/spree/backend/components/_panels.scss +3 -0
  37. data/app/assets/stylesheets/spree/backend/components/_sidebar.scss +116 -20
  38. data/app/assets/stylesheets/spree/backend/components/_tables.scss +51 -0
  39. data/app/assets/stylesheets/spree/backend/components/_taxon_products_view.scss +70 -0
  40. data/app/assets/stylesheets/spree/backend/components/_variables.scss +12 -0
  41. data/app/assets/stylesheets/spree/backend/components/_wells.scss +3 -0
  42. data/app/assets/stylesheets/spree/backend/global/_variables.scss +37 -0
  43. data/app/assets/stylesheets/spree/backend/plugins/_jquery_ui.scss +109 -0
  44. data/app/{views/spree/admin/payments/source_forms/_check.html.erb → assets/stylesheets/spree/backend/plugins/_js_tree.scss} +0 -0
  45. data/app/assets/stylesheets/spree/backend/plugins/_select2.scss +84 -155
  46. data/app/assets/stylesheets/spree/backend/sections/_account.scss +16 -0
  47. data/app/assets/stylesheets/spree/backend/shared/_base.scss +15 -0
  48. data/app/assets/stylesheets/spree/backend/shared/_forms.scss +25 -287
  49. data/app/assets/stylesheets/spree/backend/shared/_typography.scss +5 -138
  50. data/app/assets/stylesheets/spree/backend/spree_admin.css.scss +26 -0
  51. data/app/assets/stylesheets/spree/backend.css +1 -7
  52. data/app/controllers/spree/admin/base_controller.rb +0 -2
  53. data/app/controllers/spree/admin/customer_returns_controller.rb +1 -1
  54. data/app/controllers/spree/admin/general_settings_controller.rb +5 -12
  55. data/app/controllers/spree/admin/images_controller.rb +33 -17
  56. data/app/controllers/spree/admin/log_entries_controller.rb +2 -2
  57. data/app/controllers/spree/admin/option_types_controller.rb +5 -3
  58. data/app/controllers/spree/admin/orders/customer_details_controller.rb +8 -8
  59. data/app/controllers/spree/admin/orders_controller.rb +4 -5
  60. data/app/controllers/spree/admin/payments_controller.rb +3 -3
  61. data/app/controllers/spree/admin/products_controller.rb +3 -6
  62. data/app/controllers/spree/admin/resource_controller.rb +1 -1
  63. data/app/controllers/spree/admin/root_controller.rb +1 -0
  64. data/app/controllers/spree/admin/search_controller.rb +12 -0
  65. data/app/controllers/spree/admin/state_changes_controller.rb +18 -0
  66. data/app/controllers/spree/admin/stock_locations_controller.rb +4 -13
  67. data/app/controllers/spree/admin/stock_transfers_controller.rb +6 -6
  68. data/app/controllers/spree/admin/tax_categories_controller.rb +0 -13
  69. data/app/controllers/spree/admin/taxonomies_controller.rb +1 -1
  70. data/app/controllers/spree/admin/taxons_controller.rb +53 -36
  71. data/app/controllers/spree/admin/users_controller.rb +44 -41
  72. data/app/controllers/spree/admin/variants_controller.rb +1 -1
  73. data/app/helpers/spree/admin/adjustments_helper.rb +0 -5
  74. data/app/helpers/spree/admin/base_helper.rb +41 -71
  75. data/app/helpers/spree/admin/navigation_helper.rb +96 -28
  76. data/app/helpers/spree/admin/orders_helper.rb +2 -2
  77. data/app/views/kaminari/_first_page.html.erb +11 -0
  78. data/app/views/kaminari/_gap.html.erb +8 -0
  79. data/app/views/kaminari/_last_page.html.erb +11 -0
  80. data/app/views/kaminari/_next_page.html.erb +15 -0
  81. data/app/views/kaminari/_page.html.erb +12 -0
  82. data/app/views/kaminari/_paginator.html.erb +21 -0
  83. data/app/views/kaminari/_prev_page.html.erb +15 -0
  84. data/app/views/spree/admin/adjustments/_adjustment.html.erb +10 -9
  85. data/app/views/spree/admin/adjustments/_adjustments_table.html.erb +19 -15
  86. data/app/views/spree/admin/adjustments/_form.html.erb +11 -15
  87. data/app/views/spree/admin/adjustments/edit.html.erb +9 -12
  88. data/app/views/spree/admin/adjustments/index.html.erb +19 -7
  89. data/app/views/spree/admin/adjustments/new.html.erb +7 -11
  90. data/app/views/spree/admin/countries/_form.html.erb +15 -19
  91. data/app/views/spree/admin/countries/edit.html.erb +4 -12
  92. data/app/views/spree/admin/countries/index.html.erb +6 -18
  93. data/app/views/spree/admin/countries/new.html.erb +3 -5
  94. data/app/views/spree/admin/customer_returns/_reimbursements_table.html.erb +4 -4
  95. data/app/views/spree/admin/customer_returns/_return_item_decision.html.erb +9 -10
  96. data/app/views/spree/admin/customer_returns/_return_item_selection.html.erb +5 -3
  97. data/app/views/spree/admin/customer_returns/edit.html.erb +17 -21
  98. data/app/views/spree/admin/customer_returns/index.html.erb +12 -16
  99. data/app/views/spree/admin/customer_returns/new.html.erb +29 -20
  100. data/app/views/spree/admin/general_settings/edit.html.erb +101 -90
  101. data/app/views/spree/admin/images/_form.html.erb +12 -12
  102. data/app/views/spree/admin/images/edit.html.erb +23 -21
  103. data/app/views/spree/admin/images/index.html.erb +25 -30
  104. data/app/views/spree/admin/images/new.html.erb +13 -11
  105. data/app/views/spree/admin/inventory_units/adjust.html.erb +29 -0
  106. data/app/views/spree/admin/log_entries/index.html.erb +9 -7
  107. data/app/views/spree/admin/option_types/_form.html.erb +10 -10
  108. data/app/views/spree/admin/option_types/_option_value_fields.html.erb +8 -10
  109. data/app/views/spree/admin/option_types/edit.html.erb +28 -23
  110. data/app/views/spree/admin/option_types/index.html.erb +16 -22
  111. data/app/views/spree/admin/option_types/new.html.erb +4 -3
  112. data/app/views/spree/admin/orders/_add_line_item.html.erb +9 -10
  113. data/app/views/spree/admin/orders/_add_product.html.erb +11 -9
  114. data/app/views/spree/admin/orders/_adjustments.html.erb +21 -7
  115. data/app/views/spree/admin/orders/_form.html.erb +23 -10
  116. data/app/views/spree/admin/orders/_line_item.html.erb +18 -6
  117. data/app/views/spree/admin/orders/_line_items.html.erb +45 -45
  118. data/app/views/spree/admin/orders/_line_items_edit_form.html.erb +10 -11
  119. data/app/views/spree/admin/orders/_risk_analysis.html.erb +13 -13
  120. data/app/views/spree/admin/orders/_shipment.html.erb +31 -39
  121. data/app/views/spree/admin/orders/_shipment_manifest.html.erb +23 -17
  122. data/app/views/spree/admin/orders/cart.html.erb +14 -15
  123. data/app/views/spree/admin/orders/customer_details/_form.html.erb +73 -52
  124. data/app/views/spree/admin/orders/customer_details/edit.html.erb +19 -15
  125. data/app/views/spree/admin/orders/edit.html.erb +12 -9
  126. data/app/views/spree/admin/orders/index.html.erb +145 -84
  127. data/app/views/spree/admin/payment_methods/_form.html.erb +26 -30
  128. data/app/views/spree/admin/payment_methods/edit.html.erb +5 -14
  129. data/app/views/spree/admin/payment_methods/index.html.erb +14 -29
  130. data/app/views/spree/admin/payment_methods/new.html.erb +4 -12
  131. data/app/views/spree/admin/payments/_capture_events.html.erb +2 -2
  132. data/app/views/spree/admin/payments/_form.html.erb +27 -30
  133. data/app/views/spree/admin/payments/_list.html.erb +20 -16
  134. data/app/views/spree/admin/payments/credit.html.erb +2 -2
  135. data/app/views/spree/admin/payments/index.html.erb +15 -13
  136. data/app/views/spree/admin/payments/new.html.erb +10 -11
  137. data/app/views/spree/admin/payments/show.html.erb +12 -9
  138. data/app/views/spree/admin/payments/source_forms/_gateway.html.erb +43 -47
  139. data/app/views/spree/admin/payments/source_views/_gateway.html.erb +19 -19
  140. data/app/views/spree/admin/product_properties/_product_property_fields.html.erb +5 -5
  141. data/app/views/spree/admin/product_properties/index.html.erb +5 -17
  142. data/app/views/spree/admin/products/_add_stock_form.html.erb +34 -25
  143. data/app/views/spree/admin/products/_autocomplete.js.erb +18 -7
  144. data/app/views/spree/admin/products/_form.html.erb +145 -150
  145. data/app/views/spree/admin/products/_properties_form.erb +2 -2
  146. data/app/views/spree/admin/products/edit.html.erb +3 -8
  147. data/app/views/spree/admin/products/index.html.erb +42 -63
  148. data/app/views/spree/admin/products/new.html.erb +29 -33
  149. data/app/views/spree/admin/products/stock.html.erb +67 -82
  150. data/app/views/spree/admin/promotion_actions/create.js.erb +1 -2
  151. data/app/views/spree/admin/promotion_actions/destroy.js.erb +1 -1
  152. data/app/views/spree/admin/promotion_categories/_form.html.erb +9 -9
  153. data/app/views/spree/admin/promotion_categories/edit.html.erb +2 -4
  154. data/app/views/spree/admin/promotion_categories/index.html.erb +27 -26
  155. data/app/views/spree/admin/promotion_categories/new.html.erb +1 -3
  156. data/app/views/spree/admin/promotion_rules/create.js.erb +1 -1
  157. data/app/views/spree/admin/promotion_rules/destroy.js.erb +1 -1
  158. data/app/views/spree/admin/promotions/_actions.html.erb +20 -17
  159. data/app/views/spree/admin/promotions/_form.html.erb +40 -39
  160. data/app/views/spree/admin/promotions/_promotion_action.html.erb +6 -6
  161. data/app/views/spree/admin/promotions/_promotion_rule.html.erb +7 -6
  162. data/app/views/spree/admin/promotions/_rules.html.erb +36 -35
  163. data/app/views/spree/admin/promotions/actions/_create_adjustment.html.erb +25 -23
  164. data/app/views/spree/admin/promotions/actions/_create_item_adjustments.html.erb +23 -21
  165. data/app/views/spree/admin/promotions/actions/_create_line_items.html.erb +16 -16
  166. data/app/views/spree/admin/promotions/calculators/_default_fields.html.erb +8 -6
  167. data/app/views/spree/admin/promotions/calculators/tiered_flat_rate/_fields.html.erb +29 -24
  168. data/app/views/spree/admin/promotions/calculators/tiered_percent/_fields.html.erb +29 -23
  169. data/app/views/spree/admin/promotions/edit.html.erb +16 -11
  170. data/app/views/spree/admin/promotions/index.html.erb +34 -58
  171. data/app/views/spree/admin/promotions/new.html.erb +4 -6
  172. data/app/views/spree/admin/promotions/rules/_item_total.html.erb +11 -7
  173. data/app/views/spree/admin/promotions/rules/_landing_page.html.erb +9 -5
  174. data/app/views/spree/admin/promotions/rules/_option_value.html.erb +42 -0
  175. data/app/views/spree/admin/promotions/rules/_product.html.erb +9 -8
  176. data/app/views/spree/admin/promotions/rules/_taxon.html.erb +9 -8
  177. data/app/views/spree/admin/promotions/rules/_user.html.erb +5 -3
  178. data/app/views/spree/admin/properties/_form.html.erb +9 -9
  179. data/app/views/spree/admin/properties/edit.html.erb +3 -9
  180. data/app/views/spree/admin/properties/index.html.erb +42 -52
  181. data/app/views/spree/admin/properties/new.html.erb +10 -9
  182. data/app/views/spree/admin/prototypes/_form.html.erb +25 -28
  183. data/app/views/spree/admin/prototypes/_prototypes.html.erb +4 -8
  184. data/app/views/spree/admin/prototypes/available.js.erb +1 -1
  185. data/app/views/spree/admin/prototypes/edit.html.erb +3 -11
  186. data/app/views/spree/admin/prototypes/index.html.erb +23 -36
  187. data/app/views/spree/admin/prototypes/new.html.erb +8 -7
  188. data/app/views/spree/admin/prototypes/show.html.erb +15 -18
  189. data/app/views/spree/admin/refund_reasons/edit.html.erb +2 -2
  190. data/app/views/spree/admin/refund_reasons/index.html.erb +2 -2
  191. data/app/views/spree/admin/refund_reasons/new.html.erb +1 -1
  192. data/app/views/spree/admin/refunds/edit.html.erb +14 -18
  193. data/app/views/spree/admin/refunds/new.html.erb +19 -27
  194. data/app/views/spree/admin/reimbursement_types/index.html.erb +6 -7
  195. data/app/views/spree/admin/reimbursements/edit.html.erb +25 -31
  196. data/app/views/spree/admin/reimbursements/index.html.erb +4 -10
  197. data/app/views/spree/admin/reimbursements/show.html.erb +32 -36
  198. data/app/views/spree/admin/reports/index.html.erb +4 -4
  199. data/app/views/spree/admin/reports/sales_total.html.erb +6 -11
  200. data/app/views/spree/admin/return_authorization_reasons/edit.html.erb +0 -0
  201. data/app/views/spree/admin/return_authorization_reasons/index.html.erb +2 -2
  202. data/app/views/spree/admin/return_authorization_reasons/new.html.erb +0 -0
  203. data/app/views/spree/admin/return_authorizations/_form.html.erb +20 -20
  204. data/app/views/spree/admin/return_authorizations/edit.html.erb +6 -6
  205. data/app/views/spree/admin/return_authorizations/index.html.erb +12 -12
  206. data/app/views/spree/admin/return_authorizations/new.html.erb +6 -10
  207. data/app/views/spree/admin/search/products.rabl +9 -0
  208. data/app/views/spree/admin/search/users.rabl +21 -21
  209. data/app/views/spree/admin/shared/_address_form.html.erb +22 -22
  210. data/app/views/spree/admin/shared/_alert.html.erb +8 -5
  211. data/app/views/spree/admin/shared/_calculator_fields.html.erb +13 -8
  212. data/app/views/spree/admin/shared/_content_header.html.erb +19 -16
  213. data/app/views/spree/admin/shared/_edit_resource_links.html.erb +3 -3
  214. data/app/views/spree/admin/shared/_error_messages.html.erb +12 -0
  215. data/app/views/spree/admin/shared/_head.html.erb +4 -8
  216. data/app/views/spree/admin/shared/_header.html.erb +27 -8
  217. data/app/views/spree/admin/shared/_index_table_options.html.erb +23 -0
  218. data/app/views/spree/admin/shared/_main_menu.html.erb +35 -0
  219. data/app/views/spree/admin/shared/_new_resource_links.html.erb +3 -3
  220. data/app/views/spree/admin/shared/_order_summary.html.erb +121 -48
  221. data/app/views/spree/admin/shared/_order_tabs.html.erb +55 -7
  222. data/app/views/spree/admin/shared/_product_tabs.html.erb +19 -25
  223. data/app/views/spree/admin/shared/_refunds.html.erb +9 -9
  224. data/app/views/spree/admin/shared/_report_criteria.html.erb +4 -4
  225. data/app/views/spree/admin/shared/_report_order_criteria.html.erb +12 -12
  226. data/app/views/spree/admin/shared/_sidebar.html.erb +1 -6
  227. data/app/views/spree/admin/shared/_table_filter.html.erb +21 -5
  228. data/app/views/spree/admin/shared/named_types/_edit.html.erb +6 -7
  229. data/app/views/spree/admin/shared/named_types/_form.html.erb +10 -14
  230. data/app/views/spree/admin/shared/named_types/_index.html.erb +6 -17
  231. data/app/views/spree/admin/shared/named_types/_new.html.erb +5 -5
  232. data/app/views/spree/admin/shared/sub_menu/_configuration.html.erb +21 -0
  233. data/app/views/spree/admin/shared/sub_menu/_product.html.erb +8 -0
  234. data/app/views/spree/admin/shared/sub_menu/_promotion.html.erb +4 -0
  235. data/app/views/spree/admin/shipping_categories/_form.html.erb +2 -2
  236. data/app/views/spree/admin/shipping_categories/edit.html.erb +4 -14
  237. data/app/views/spree/admin/shipping_categories/index.html.erb +24 -32
  238. data/app/views/spree/admin/shipping_categories/new.html.erb +2 -10
  239. data/app/views/spree/admin/shipping_methods/_form.html.erb +88 -67
  240. data/app/views/spree/admin/shipping_methods/edit.html.erb +6 -19
  241. data/app/views/spree/admin/shipping_methods/index.html.erb +13 -25
  242. data/app/views/spree/admin/shipping_methods/new.html.erb +2 -12
  243. data/app/views/spree/admin/state_changes/index.html.erb +42 -0
  244. data/app/views/spree/admin/states/_form.html.erb +6 -6
  245. data/app/views/spree/admin/states/_state_list.html.erb +6 -11
  246. data/app/views/spree/admin/states/edit.html.erb +3 -11
  247. data/app/views/spree/admin/states/index.html.erb +5 -9
  248. data/app/views/spree/admin/states/new.html.erb +1 -4
  249. data/app/views/spree/admin/states/new.js.erb +2 -2
  250. data/app/views/spree/admin/stock_locations/_form.html.erb +51 -45
  251. data/app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb +15 -15
  252. data/app/views/spree/admin/stock_locations/edit.html.erb +4 -6
  253. data/app/views/spree/admin/stock_locations/index.html.erb +12 -26
  254. data/app/views/spree/admin/stock_locations/new.html.erb +3 -5
  255. data/app/views/spree/admin/stock_movements/_form.html.erb +10 -12
  256. data/app/views/spree/admin/stock_movements/edit.html.erb +4 -4
  257. data/app/views/spree/admin/stock_movements/index.html.erb +9 -15
  258. data/app/views/spree/admin/stock_movements/new.html.erb +3 -3
  259. data/app/views/spree/admin/stock_transfers/_stock_movements.html.erb +17 -22
  260. data/app/views/spree/admin/stock_transfers/index.html.erb +36 -49
  261. data/app/views/spree/admin/stock_transfers/new.html.erb +73 -77
  262. data/app/views/spree/admin/stock_transfers/show.html.erb +21 -29
  263. data/app/views/spree/admin/tax_categories/_form.html.erb +19 -27
  264. data/app/views/spree/admin/tax_categories/edit.html.erb +4 -6
  265. data/app/views/spree/admin/tax_categories/index.html.erb +13 -26
  266. data/app/views/spree/admin/tax_categories/new.html.erb +3 -6
  267. data/app/views/spree/admin/tax_categories/show.html.erb +1 -1
  268. data/app/views/spree/admin/tax_rates/_form.html.erb +34 -25
  269. data/app/views/spree/admin/tax_rates/edit.html.erb +4 -15
  270. data/app/views/spree/admin/tax_rates/index.html.erb +18 -32
  271. data/app/views/spree/admin/tax_rates/new.html.erb +2 -14
  272. data/app/views/spree/admin/taxonomies/_form.html.erb +5 -5
  273. data/app/views/spree/admin/taxonomies/_js_head.html.erb +0 -0
  274. data/app/views/spree/admin/taxonomies/_list.html.erb +9 -12
  275. data/app/views/spree/admin/taxonomies/edit.erb +11 -22
  276. data/app/views/spree/admin/taxonomies/index.html.erb +9 -15
  277. data/app/views/spree/admin/taxonomies/new.html.erb +4 -16
  278. data/app/views/spree/admin/taxons/_form.html.erb +38 -38
  279. data/app/views/spree/admin/taxons/_taxon_table.html.erb +2 -2
  280. data/app/views/spree/admin/taxons/edit.html.erb +5 -13
  281. data/app/views/spree/admin/taxons/index.html.erb +6 -13
  282. data/app/views/spree/admin/trackers/_form.html.erb +17 -23
  283. data/app/views/spree/admin/trackers/edit.html.erb +4 -14
  284. data/app/views/spree/admin/trackers/index.html.erb +9 -15
  285. data/app/views/spree/admin/trackers/new.html.erb +2 -10
  286. data/app/views/spree/admin/users/_addresses_form.html.erb +33 -17
  287. data/app/views/spree/admin/users/_form.html.erb +17 -17
  288. data/app/views/spree/admin/users/_lifetime_stats.html.erb +26 -0
  289. data/app/views/spree/admin/users/_sidebar.html.erb +14 -34
  290. data/app/views/spree/admin/users/_user_page_actions.html.erb +2 -6
  291. data/app/views/spree/admin/users/addresses.html.erb +8 -7
  292. data/app/views/spree/admin/users/edit.html.erb +55 -38
  293. data/app/views/spree/admin/users/index.html.erb +44 -30
  294. data/app/views/spree/admin/users/items.html.erb +13 -24
  295. data/app/views/spree/admin/users/new.html.erb +1 -7
  296. data/app/views/spree/admin/users/orders.html.erb +11 -17
  297. data/app/views/spree/admin/variants/_autocomplete.js.erb +13 -15
  298. data/app/views/spree/admin/variants/_autocomplete_line_items_stock.js.erb +41 -44
  299. data/app/views/spree/admin/variants/_autocomplete_stock.js.erb +46 -51
  300. data/app/views/spree/admin/variants/_form.html.erb +34 -34
  301. data/app/views/spree/admin/variants/_split.js.erb +8 -4
  302. data/app/views/spree/admin/variants/edit.html.erb +2 -4
  303. data/app/views/spree/admin/variants/index.html.erb +14 -33
  304. data/app/views/spree/admin/variants/new.html.erb +8 -6
  305. data/app/views/spree/admin/variants/new.js.erb +1 -1
  306. data/app/views/spree/admin/zones/_country_members.html.erb +14 -8
  307. data/app/views/spree/admin/zones/_form.html.erb +42 -31
  308. data/app/views/spree/admin/zones/_state_members.html.erb +14 -8
  309. data/app/views/spree/admin/zones/edit.html.erb +3 -11
  310. data/app/views/spree/admin/zones/index.html.erb +9 -19
  311. data/app/views/spree/admin/zones/new.html.erb +2 -13
  312. data/app/views/spree/layouts/admin.html.erb +63 -36
  313. data/config/initializers/assets.rb +1 -1
  314. data/config/routes.rb +4 -1
  315. data/lib/spree/backend/engine.rb +3 -0
  316. data/lib/spree_backend.rb +2 -0
  317. data/vendor/assets/javascripts/jquery.cookie.js +115 -39
  318. data/vendor/assets/javascripts/modernizr.js +3 -3
  319. data/vendor/assets/javascripts/underscore-min.js +6 -0
  320. data/vendor/assets/javascripts/underscore-min.map +1 -0
  321. data/vendor/assets/javascripts/velocity.js +3831 -0
  322. data/vendor/assets/stylesheets/animate.css +3158 -0
  323. metadata +85 -96
  324. data/app/assets/javascripts/spree/backend/images/index.js.coffee +0 -16
  325. data/app/assets/javascripts/spree/backend/images/new.js.coffee +0 -7
  326. data/app/assets/javascripts/spree/backend/underscore-min.js +0 -1227
  327. data/app/assets/stylesheets/spree/backend/components/_actions.scss +0 -31
  328. data/app/assets/stylesheets/spree/backend/components/_date-picker.scss +0 -159
  329. data/app/assets/stylesheets/spree/backend/components/_messages.scss +0 -54
  330. data/app/assets/stylesheets/spree/backend/components/_pagination.scss +0 -17
  331. data/app/assets/stylesheets/spree/backend/components/_product_autocomplete.scss +0 -29
  332. data/app/assets/stylesheets/spree/backend/components/_progress.scss +0 -35
  333. data/app/assets/stylesheets/spree/backend/components/_states.scss +0 -34
  334. data/app/assets/stylesheets/spree/backend/components/_table-filter.scss +0 -14
  335. data/app/assets/stylesheets/spree/backend/globals/_functions.scss +0 -25
  336. data/app/assets/stylesheets/spree/backend/globals/_mixins.scss +0 -25
  337. data/app/assets/stylesheets/spree/backend/globals/_variables.scss +0 -171
  338. data/app/assets/stylesheets/spree/backend/globals/_variables_override.scss +0 -7
  339. data/app/assets/stylesheets/spree/backend/hacks/_ie.scss +0 -72
  340. data/app/assets/stylesheets/spree/backend/hacks/_mozilla.scss +0 -33
  341. data/app/assets/stylesheets/spree/backend/hacks/_opera.scss +0 -17
  342. data/app/assets/stylesheets/spree/backend/plugins/_jstree.scss +0 -135
  343. data/app/assets/stylesheets/spree/backend/plugins/_powertip.scss +0 -86
  344. data/app/assets/stylesheets/spree/backend/plugins/_token-input.scss +0 -110
  345. data/app/assets/stylesheets/spree/backend/sections/_adjustments_table.scss +0 -8
  346. data/app/assets/stylesheets/spree/backend/sections/_alerts.scss +0 -27
  347. data/app/assets/stylesheets/spree/backend/sections/_bulk_transfer.scss +0 -8
  348. data/app/assets/stylesheets/spree/backend/sections/_edit_checkouts.scss +0 -72
  349. data/app/assets/stylesheets/spree/backend/sections/_image_settings.scss +0 -3
  350. data/app/assets/stylesheets/spree/backend/sections/_log_entries.scss +0 -17
  351. data/app/assets/stylesheets/spree/backend/sections/_orders.scss +0 -64
  352. data/app/assets/stylesheets/spree/backend/sections/_overview.scss +0 -86
  353. data/app/assets/stylesheets/spree/backend/sections/_products.scss +0 -123
  354. data/app/assets/stylesheets/spree/backend/sections/_promotions.scss +0 -119
  355. data/app/assets/stylesheets/spree/backend/sections/_return_authorizations.scss +0 -24
  356. data/app/assets/stylesheets/spree/backend/sections/_tax_zones.scss +0 -15
  357. data/app/assets/stylesheets/spree/backend/sections/_taxons.scss +0 -21
  358. data/app/assets/stylesheets/spree/backend/sections/_users.scss +0 -5
  359. data/app/assets/stylesheets/spree/backend/shared/_icons.scss +0 -53
  360. data/app/assets/stylesheets/spree/backend/shared/_layout.scss +0 -99
  361. data/app/assets/stylesheets/spree/backend/shared/_tables.scss +0 -214
  362. data/app/assets/stylesheets/spree/backend/spree_admin.scss +0 -45
  363. data/app/views/spree/admin/line_items/create.js.erb +0 -1
  364. data/app/views/spree/admin/line_items/destroy.js.erb +0 -1
  365. data/app/views/spree/admin/option_types/new.js.erb +0 -2
  366. data/app/views/spree/admin/payments/_bill_address_form.html.erb +0 -9
  367. data/app/views/spree/admin/payments/source_views/_check.html.erb +0 -0
  368. data/app/views/spree/admin/products/new.js.erb +0 -7
  369. data/app/views/spree/admin/promotions/_tab.html.erb +0 -1
  370. data/app/views/spree/admin/promotions/rules/_first_order.html.erb +0 -0
  371. data/app/views/spree/admin/promotions/rules/_one_use_per_user.html.erb +0 -0
  372. data/app/views/spree/admin/promotions/rules/_user_logged_in.html.erb +0 -0
  373. data/app/views/spree/admin/properties/filtered.html.erb +0 -1
  374. data/app/views/spree/admin/properties/new.js.erb +0 -2
  375. data/app/views/spree/admin/prototypes/new.js.erb +0 -5
  376. data/app/views/spree/admin/shared/_address.html.erb +0 -6
  377. data/app/views/spree/admin/shared/_configuration_menu.html.erb +0 -28
  378. data/app/views/spree/admin/shared/_menu.html.erb +0 -9
  379. data/app/views/spree/admin/shared/_order_submenu.html.erb +0 -49
  380. data/app/views/spree/admin/shared/_product_sub_menu.html.erb +0 -10
  381. data/app/views/spree/admin/shared/_promotion_sub_menu.html.erb +0 -6
  382. data/app/views/spree/admin/shared/_show_resource_links.html.erb +0 -5
  383. data/app/views/spree/admin/shared/_sub_menu.html.erb +0 -9
  384. data/app/views/spree/admin/shared/_tabs.html.erb +0 -21
  385. data/app/views/spree/admin/taxonomies/_taxon.html.erb +0 -12
  386. data/app/views/spree/admin/taxons/search.rabl +0 -5
  387. data/app/views/spree/admin/variants/update.js.erb +0 -1
  388. data/vendor/assets/images/jquery.alerts/images/help.gif +0 -0
  389. data/vendor/assets/images/jquery.alerts/images/important.gif +0 -0
  390. data/vendor/assets/images/jquery.alerts/images/info.gif +0 -0
  391. data/vendor/assets/images/jquery.alerts/images/title.gif +0 -0
  392. data/vendor/assets/javascripts/css_browser_selector_dev.js +0 -129
  393. data/vendor/assets/javascripts/equalize.js +0 -41
  394. data/vendor/assets/javascripts/jquery.adaptivemenu.js +0 -60
  395. data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.js +0 -235
  396. data/vendor/assets/javascripts/jquery.delayedobserver.js +0 -35
  397. data/vendor/assets/javascripts/jquery.powertip.js +0 -796
  398. data/vendor/assets/javascripts/jquery.vAlign.js +0 -11
  399. data/vendor/assets/javascripts/responsive-tables.js +0 -42
  400. data/vendor/assets/javascripts/spin.js +0 -379
  401. data/vendor/assets/javascripts/trunk8.js +0 -369
  402. data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.css.erb +0 -57
  403. data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.spree.css +0 -29
  404. data/vendor/assets/stylesheets/jquery.powertip.css +0 -85
  405. data/vendor/assets/stylesheets/responsive-tables.css +0 -21
@@ -1,31 +0,0 @@
1
- table tbody tr {
2
- &.highlight {
3
-
4
- @each $action in $actions {
5
- &.action-#{$action} td {
6
- background-color: get-value($actions, $actions-bg-colors, $action);
7
- border-color: get-value($actions, $actions-brd-colors, $action);
8
- }
9
- }
10
-
11
- &.action-remove td, &.action-void td {
12
- text-decoration: line-through;
13
-
14
- &.actions {
15
- text-decoration: none;
16
- }
17
- }
18
- }
19
-
20
- &.before-highlight {
21
- @each $action in $actions {
22
- &.action-#{$action} td {
23
- border-bottom-color: get-value($actions, $actions-brd-colors, $action);
24
- }
25
- }
26
- }
27
-
28
- td.actions {
29
- background-color: transparent !important;
30
- }
31
- }
@@ -1,159 +0,0 @@
1
- .date-range-filter {
2
- .range-divider {
3
- padding: 0;
4
- }
5
- input.datepicker {
6
- width: 96px !important;
7
- }
8
- }
9
-
10
- #ui-datepicker-div {
11
- @include border-radius($border-radius);
12
-
13
- border-color: $color-3;
14
- padding: 0;
15
- margin-top: 10px;
16
-
17
- &:before {
18
- content: '';
19
- position: absolute;
20
- border-left: 10px solid transparent;
21
- border-right: 10px solid transparent;
22
- border-bottom: 10px solid $color-3;
23
- top: 0px;
24
- margin-top: -10px;
25
- left: 25px;
26
- z-index: 1;
27
- display: block;
28
- }
29
-
30
- .ui-datepicker-header {
31
- padding: 0;
32
- background-image: none;
33
- background-color: $color-3;
34
- border: none;
35
- border-bottom: none;
36
- border-radius: 0;
37
- height: 32px;
38
-
39
- .ui-datepicker-prev, .ui-datepicker-next {
40
- border-radius: 0;
41
- top: 0;
42
- height: 32px;
43
-
44
- &:hover {
45
- border: none;
46
- background-image: none;
47
- background-color: $color-3;
48
- cursor: pointer;
49
- }
50
-
51
- .ui-icon {
52
- @extend [class^="icon-"]:before;
53
- @extend .fa;
54
-
55
- background-image: none;
56
- text-indent: 0;
57
- color: $color-1;
58
- width: 10px;
59
- margin-left: -5px;
60
-
61
- &:hover {
62
- color: very-light($color-2, 25);
63
- }
64
- }
65
- }
66
- .ui-datepicker-prev {
67
- left: 0;
68
-
69
- .ui-icon {
70
- @extend .fa-arrow-left;
71
- }
72
- }
73
-
74
- .ui-datepicker-next {
75
- right: 0;
76
-
77
- .ui-icon {
78
- @extend .fa-arrow-right;
79
- }
80
-
81
- &:hover {
82
- .ui-icon {
83
- margin-left: -5px;
84
- }
85
- }
86
- }
87
-
88
- .ui-datepicker-title {
89
- color: $color-1;
90
- text-transform: uppercase;
91
- font-size: 85% !important;
92
- padding: 6px 10px;
93
- }
94
- }
95
-
96
- table.ui-datepicker-calendar {
97
- border: none;
98
-
99
- thead {
100
- th {
101
- border-bottom: 1px solid $color-border;
102
- border-right: 1px solid $color-border;
103
- color: $color-body-text;
104
- width: 33px;
105
-
106
- &:last-child {
107
- border-right: none;
108
- }
109
- }
110
- }
111
- tbody {
112
- tr:hover {
113
- td {
114
- background-color: transparent !important;
115
- }
116
- }
117
- &:last-child tr:last-child td {
118
- border-bottom: none;
119
- }
120
- td {
121
- a {
122
- border: 1px solid transparent;
123
- background-color: $color-1;
124
- background-image: none;
125
- font-size: 85%;
126
- color: $color-body-text;
127
-
128
- &.ui-state-active {
129
- background-color: $color-2;
130
- color: $color-1;
131
- }
132
-
133
- &:hover {
134
- background-color: $color-2;
135
- color: $color-1;
136
- border-color: darken($color-2, 5);
137
-
138
- }
139
- }
140
-
141
- &.ui-state-disabled {
142
- .ui-state-default {
143
- border: none;
144
- background-image: none;
145
- background-color: transparent;
146
- }
147
- }
148
-
149
- &.ui-datepicker-today {
150
- a {
151
- background-color: $color-6;
152
- color: $color-1;
153
- border: 1px solid darken($color-6, 5);
154
- }
155
- }
156
- }
157
- }
158
- }
159
- }
@@ -1,54 +0,0 @@
1
- .errorExplanation {
2
- padding: 5px;
3
- border: 1px solid very-light($color-error, 12);
4
- background-color: very-light($color-error, 6);
5
- border-radius: 3px;
6
- color: very-light($color-error, 30);
7
- margin-bottom: 15px;
8
-
9
- h2 {
10
- font-size: 140%;
11
- color: very-light($color-error, 30);
12
- margin-bottom: 5px;
13
- }
14
-
15
- p {
16
- padding: 10px 0;
17
- }
18
-
19
- ul {
20
- list-style-position: inside;
21
-
22
- li {
23
- font-weight: $font-weight-bold;
24
- }
25
- }
26
- }
27
-
28
- .flash, .alert {
29
- position: fixed;
30
- top: 0;
31
- left: 0;
32
- width: 100%;
33
- padding: 16px;
34
- text-align: center;
35
- z-index: 1000;
36
- font-size: 120%;
37
- color: $color-1;
38
- font-weight: 600;
39
-
40
- &.notice { background-color: rgba($color-notice, 0.8) }
41
- &.success { background-color: rgba($color-success, 0.8) }
42
- &.error { background-color: rgba($color-error, 0.8) }
43
- }
44
-
45
- .alert {
46
- position: relative;
47
- font-weight: normal !important;
48
-
49
- a {
50
- text-decoration: underline;
51
- }
52
-
53
- &.error a { color: very-light($color-error, 10) }
54
- }
@@ -1,17 +0,0 @@
1
- .pagination {
2
- padding: 10px 0;
3
- text-align: center;
4
-
5
- .page {
6
- padding: 5px 8px;
7
- text-align: center;
8
- display: inline-block;
9
- text-align: center;
10
-
11
- &.current {
12
- background-color: $color-2;
13
- border-radius: 3px;
14
- color: $color-1;
15
- }
16
- }
17
- }
@@ -1,29 +0,0 @@
1
- .select2-result-label {
2
- .variant-autocomplete-item {
3
- .variant-details {
4
- padding: 0 10px;
5
- float: left;
6
- }
7
-
8
- .variant-image {
9
- margin-top: 5px;
10
- background-color: white;
11
- float: left;
12
- margin-right: 10px;
13
- }
14
-
15
- ul.variant-details {
16
- li {
17
- display: inline-block;
18
-
19
- &:after {
20
- content: ' / ';
21
- }
22
-
23
- &:last-child:after {
24
- content: '';
25
- }
26
- }
27
- }
28
- }
29
- }
@@ -1,35 +0,0 @@
1
- #progress {
2
- display: none;
3
- position: fixed;
4
- top: 0;
5
- z-index: 1000;
6
- opacity: 0.8;
7
- width: 100%;
8
-
9
- .wrapper {
10
- @include border-radius(10px);
11
- top: -10px;
12
- position: absolute;
13
- left: 50%;
14
- width: 200px;
15
- margin-left: -100px;
16
- padding: 11px 0;
17
- background-color: $color-3;
18
- color: $color-1;
19
- text-align: center;
20
- }
21
-
22
- #spinner {
23
- position: absolute;
24
- top: 10px;
25
- left: 50%;
26
- margin-left: -5px;
27
- }
28
-
29
- .progress-message {
30
- font-size: 120%;
31
- font-weight: $font-weight-bold;
32
- margin-top: 20px;
33
- text-transform: uppercase;
34
- }
35
- }
@@ -1,34 +0,0 @@
1
- .state {
2
- text-transform: uppercase;
3
- font-size: 80%;
4
- font-weight: 600;
5
-
6
- &:before {
7
- content: '';
8
- position: relative;
9
- display: inline-block;
10
- margin-right: 3px;
11
- border-radius: $body-font-size/2;
12
- width: $body-font-size - 4px;
13
- height: $body-font-size - 4px;
14
- }
15
-
16
- @each $state in $states {
17
- &.#{$state}:before {
18
- background-color: get-value($states, $states-bg-colors, $state);
19
-
20
- // &, a {
21
- // color: get-value($states, $states-text-colors, $state);
22
- // }
23
- }
24
- }
25
- }
26
-
27
- table tbody tr {
28
- &[class*="state"] td:first-child {
29
- border-left-width: 3px;
30
- }
31
- &.state-complete td:first-child { border-left-color: $color-success }
32
- &.state-cart td:first-child { border-left-color: very-light($color-notice, 6) }
33
- &.state-canceled td:first-child { border-left-color: $color-error }
34
- }
@@ -1,14 +0,0 @@
1
- #table-filter {
2
-
3
- .field {
4
- input[type="text"], input[type="phone"],
5
- input[type="email"], input[type="number"],
6
- input[type="url"] {
7
- width: 100%;
8
- }
9
- }
10
-
11
- .actions {
12
- text-align: center;
13
- }
14
- }
@@ -1,25 +0,0 @@
1
- // Make color very close to white
2
- @function very-light($color, $adjust: 3){
3
- @if type-of($adjust) == 'number' and $adjust > 0 {
4
- @for $i from 0 through 100 {
5
- @if lighten($color, $i) == white and ($i - $adjust) > $adjust {
6
- @return lighten($color, $i - $adjust);
7
- }
8
- }
9
- }
10
- @else {
11
- @debug "Please correct $adjust value. It should be number and larger then 0. Currently it is '#{type-of($adjust)}' with value '#{$adjust}'"
12
- }
13
- };
14
-
15
- // Quick fix for dynamic variables missing in SASS
16
- @function get-value($prop, $val, $search) {
17
- $n1: index($prop, $search);
18
- $n2: index($val, $search);
19
-
20
- @if($n1) {
21
- @return nth($val, $n1);
22
- } @else {
23
- @return nth($prop, $n2);
24
- }
25
- }
@@ -1,25 +0,0 @@
1
- //************************************************************************//
2
- // Default: Webkit, moz, spec
3
- // Example: @include prefixer(border-radius, $radii, $o: true);
4
- //
5
- // Source : https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_prefixer.scss
6
- //************************************************************************//
7
- @mixin prefixer ($property, $value,
8
- $webkit: true,
9
- $moz: true,
10
- $ms: false,
11
- $o: false,
12
- $spec: true) {
13
- @if $webkit { -webkit-#{$property}: $value; }
14
- @if $moz { -moz-#{$property}: $value; }
15
- @if $ms { -ms-#{$property}: $value; }
16
- @if $o { -o-#{$property}: $value; }
17
- @if $spec { #{$property}: $value; }
18
- }
19
-
20
- //************************************************************************//
21
- // Source : https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_border-radius.scss
22
- //************************************************************************//
23
- @mixin border-radius ($radii) {
24
- @include prefixer(border-radius, $radii, webkit, moz, ms, o);
25
- }
@@ -1,171 +0,0 @@
1
- // -------------------------------------------------------------
2
- // Variables used in all other files
3
- //--------------------------------------------------------------
4
-
5
- // Fonts
6
- //--------------------------------------------------------------
7
- $base-font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif !default;
8
-
9
- // Colors
10
- //--------------------------------------------------------------
11
-
12
- // Basic color palette for admin
13
- $color-1: #FFFFFF !default; // White
14
- $color-2: #9FC820 !default; // Green
15
- $color-3: #5498DA !default; // Light Blue
16
- $color-4: #6788A2 !default; // Dark Blue
17
- $color-5: #C60F13 !default; // Red
18
- $color-6: #FF9300 !default; // Yellow
19
-
20
- // Body base colors
21
- $color-body-bg: $color-1 !default;
22
- $color-body-text: $color-4 !default;
23
- $color-headers: $color-4 !default;
24
- $color-link: $color-3 !default;
25
- $color-link-hover: $color-2 !default;
26
- $color-link-active: $color-2 !default;
27
- $color-link-focus: $color-2 !default;
28
- $color-link-visited: $color-3 !default;
29
- $color-border: very-light($color-3, 12) !default;
30
-
31
- // Basic flash colors
32
- $color-success: $color-2 !default;
33
- $color-notice: $color-6 !default;
34
- $color-error: $color-5 !default;
35
-
36
- // Table colors
37
- $color-tbl-odd: $color-1 !default;
38
- $color-tbl-even: very-light($color-3, 4) !default;
39
- $color-tbl-thead: very-light($color-3, 4) !default;
40
-
41
- // Button colors
42
- $color-btn-bg: $color-3 !default;
43
- $color-btn-text: $color-1 !default;
44
- $color-btn-hover-bg: $color-2 !default;
45
- $color-btn-hover-text: $color-1 !default;
46
-
47
- // Actions colors
48
- $color-action-edit-bg: very-light($color-success, 5 ) !default;
49
- $color-action-edit-brd: very-light($color-success, 20 ) !default;
50
- $color-action-clone-bg: very-light($color-notice, 5 ) !default;
51
- $color-action-clone-brd: very-light($color-notice, 15 ) !default;
52
- $color-action-remove-bg: very-light($color-error, 5 ) !default;
53
- $color-action-remove-brd: very-light($color-error, 10 ) !default;
54
- $color-action-void-bg: very-light($color-error, 10 ) !default;
55
- $color-action-void-brd: very-light($color-error, 20 ) !default;
56
- $color-action-cancel-bg: very-light($color-notice, 10 ) !default;
57
- $color-action-cancel-brd: very-light($color-notice, 20 ) !default;
58
- $color-action-capture-bg: very-light($color-success, 5 ) !default;
59
- $color-action-capture-brd: very-light($color-success, 20 ) !default;
60
- $color-action-save-bg: very-light($color-success, 5 ) !default;
61
- $color-action-save-brd: very-light($color-success, 20 ) !default;
62
- $color-action-mail-bg: very-light($color-success, 5 ) !default;
63
- $color-action-mail-brd: very-light($color-success, 20 ) !default;
64
-
65
- // Select2 select field colors
66
- $color-sel-bg: $color-3 !default;
67
- $color-sel-text: $color-1 !default;
68
- $color-sel-hover-bg: $color-2 !default;
69
- $color-sel-hover-text: $color-1 !default;
70
-
71
- // Text inputs colors
72
- $color-txt-brd: $color-border !default;
73
- $color-txt-text: $color-3 !default;
74
- $color-txt-hover-brd: $color-2 !default;
75
-
76
- // States label colors
77
- $color-ste-complete-bg: $color-success !default;
78
- $color-ste-complete-text: $color-1 !default;
79
- $color-ste-completed-bg: $color-success !default;
80
- $color-ste-completed-text: $color-1 !default;
81
- $color-ste-sold-bg: $color-success !default;
82
- $color-ste-sold-text: $color-1 !default;
83
- $color-ste-pending-bg: $color-notice !default;
84
- $color-ste-pending-text: $color-1 !default;
85
- $color-ste-awaiting_return-bg: $color-notice !default;
86
- $color-ste-awaiting_return-text: $color-1 !default;
87
- $color-ste-returned-bg: $color-notice !default;
88
- $color-ste-returned-text: $color-1 !default;
89
- $color-ste-credit_owed-bg: $color-notice !default;
90
- $color-ste-credit_owed-text: $color-1 !default;
91
- $color-ste-paid-bg: $color-success !default;
92
- $color-ste-paid-text: $color-1 !default;
93
- $color-ste-shipped-bg: $color-success !default;
94
- $color-ste-shipped-text: $color-1 !default;
95
- $color-ste-balance_due-bg: $color-notice !default;
96
- $color-ste-balance_due-text: $color-1 !default;
97
- $color-ste-backorder-bg: $color-notice !default;
98
- $color-ste-backorder-text: $color-1 !default;
99
- $color-ste-none-bg: $color-error !default;
100
- $color-ste-none-text: $color-1 !default;
101
- $color-ste-ready-bg: $color-success !default;
102
- $color-ste-ready-text: $color-1 !default;
103
- $color-ste-void-bg: $color-error !default;
104
- $color-ste-void-text: $color-1 !default;
105
- $color-ste-canceled-bg: $color-error !default;
106
- $color-ste-canceled-text: $color-1 !default;
107
- $color-ste-failed-bg: $color-error !default;
108
- $color-ste-failed-text: $color-1 !default;
109
- $color-ste-address-bg: $color-error !default;
110
- $color-ste-address-text: $color-1 !default;
111
- $color-ste-checkout-bg: $color-notice !default;
112
- $color-ste-checkout-text: $color-1 !default;
113
- $color-ste-cart-bg: $color-notice !default;
114
- $color-ste-cart-text: $color-1 !default;
115
- $color-ste-payment-bg: $color-error !default;
116
- $color-ste-payment-text: $color-1 !default;
117
- $color-ste-delivery-bg: $color-success !default;
118
- $color-ste-delivery-text: $color-1 !default;
119
- $color-ste-confirm-bg: $color-error !default;
120
- $color-ste-confirm-text: $color-1 !default;
121
- $color-ste-active-bg: $color-success !default;
122
- $color-ste-active-text: $color-1 !default;
123
- $color-ste-inactive-bg: $color-notice !default;
124
- $color-ste-inactive-text: $color-1 !default;
125
- $color-ste-considered_risky-bg: $color-error !default;
126
- $color-ste-considered_risky-text:$color-1 !default;
127
- $color-ste-considered_safe-bg: $color-success !default;
128
- $color-ste-considered_safe-text: $color-1 !default;
129
- $color-ste-success-bg: $color-success !default;
130
- $color-ste-success-text: $color-1 !default;
131
- $color-ste-notice-bg: $color-notice !default;
132
- $color-ste-notice-text: $color-1 !default;
133
- $color-ste-error-bg: $color-error !default;
134
- $color-ste-error-text: $color-1 !default;
135
-
136
- // Available states
137
- $states: completed, complete, sold, pending, awaiting_return, returned, credit_owed, paid, shipped, balance_due, backorder, checkout, cart, address,
138
- delivery, payment, confirm, canceled, failed, ready, void, active, inactive, considered_risky, considered_safe, success, notice, error !default;
139
-
140
- $states-bg-colors: $color-ste-completed-bg, $color-ste-complete-bg, $color-ste-sold-bg, $color-ste-pending-bg, $color-ste-awaiting_return-bg,
141
- $color-ste-returned-bg, $color-ste-credit_owed-bg, $color-ste-paid-bg, $color-ste-shipped-bg, $color-ste-balance_due-bg, $color-ste-backorder-bg,
142
- $color-ste-checkout-bg, $color-ste-cart-bg, $color-ste-address-bg, $color-ste-delivery-bg, $color-ste-payment-bg, $color-ste-confirm-bg,
143
- $color-ste-canceled-bg, $color-ste-failed-bg, $color-ste-ready-bg, $color-ste-void-bg, $color-ste-active-bg, $color-ste-inactive-bg, $color-ste-considered_risky-bg,
144
- $color-ste-considered_safe-bg, $color-ste-success-bg, $color-ste-notice-bg, $color-ste-error-bg !default;
145
-
146
- $states-text-colors: $color-ste-completed-text, $color-ste-complete-text, $color-ste-sold-text, $color-ste-pending-text, $color-ste-awaiting_return-text,
147
- $color-ste-returned-text, $color-ste-credit_owed-text, $color-ste-paid-text, $color-ste-shipped-text, $color-ste-balance_due-text, $color-ste-backorder-text,
148
- $color-ste-checkout-text, $color-ste-cart-text, $color-ste-address-text, $color-ste-delivery-text, $color-ste-payment-text, $color-ste-confirm-text,
149
- $color-ste-canceled-text, $color-ste-failed-text, $color-ste-ready-text, $color-ste-void-text, $color-ste-active-text, $color-ste-inactive-text, $color-ste-considered_risky-text,
150
- $color-ste-considered_safe-text, $color-ste-success-text, $color-ste-notice-text, $color-ste-error-text !default;
151
-
152
- // Available actions
153
- $actions: edit, clone, remove, void, capture, save, cancel, mail !default;
154
- $actions-bg-colors: $color-action-edit-bg, $color-action-clone-bg, $color-action-remove-bg, $color-action-void-bg, $color-action-capture-bg, $color-action-save-bg, $color-action-cancel-bg, $color-action-mail-bg !default;
155
- $actions-brd-colors: $color-action-edit-brd, $color-action-clone-brd, $color-action-remove-brd, $color-action-void-brd, $color-action-capture-brd, $color-action-save-brd, $color-action-cancel-brd, $color-action-mail-brd !default;
156
-
157
- // Sizes
158
- //--------------------------------------------------------------
159
- $body-font-size: 13px !default;
160
-
161
- $h6-size: $body-font-size + 2 !default;
162
- $h5-size: $h6-size + 2 !default;
163
- $h4-size: $h5-size + 2 !default;
164
- $h3-size: $h4-size + 2 !default;
165
- $h2-size: $h3-size + 2 !default;
166
- $h1-size: $h2-size + 2 !default;
167
-
168
- $border-radius: 3px !default;
169
-
170
- $font-weight-bold: 600 !default;
171
- $font-weight-normal: 400 !default;
@@ -1,7 +0,0 @@
1
- /*---------------------------------------------------------
2
- Empty file to override variables in user applications.
3
-
4
- To set your own colors, sizes or fonts just override this
5
- file in your application and set variables according to
6
- globals/_variables.scss file.
7
- --------------------------------------------------------- */
@@ -1,72 +0,0 @@
1
- // IE general hacks
2
- html.ie {
3
-
4
- // Properly align icons in circle
5
- table td.actions .no-text.fa-edit {
6
- padding-top: 3px !important;
7
- }
8
- table td.actions .no-text.fa-envelope-alt {
9
- padding-top: 4px !important;
10
- }
11
-
12
- // Fix select2 background gradient. (It uses filter gradients for IE)
13
- .select2-choice, .select2-choice div,
14
- .select2-container-multi .select2-search-choice,
15
- .select2-container:hover .select2-choice,
16
- .select2-container.select2-container-active .select2-choice {
17
- filter: none;
18
- }
19
- .select2-search {
20
- &:before {
21
- z-index: 10000;
22
- content: '\f002' !important;
23
- }
24
- input {
25
- position: relative;
26
- z-index: 0;
27
- }
28
- }
29
-
30
- // Fix margin-top for destroy paperclip styles background
31
- .destroy_new_attachment_styles {
32
- margin-top: 17px !important;
33
- }
34
- }
35
-
36
- // IE8 Hacks
37
- html.ie8 {
38
-
39
- // Fix italic font
40
- body {
41
- font-style: normal;
42
- }
43
-
44
- // Fix white border around filter-actions
45
- .filter-actions {
46
- margin-bottom: -45px;
47
-
48
- button, .button, input[type="submit"], input[type="button"], span.or {
49
- border: 15px solid $color-1;
50
- }
51
- span.or {
52
- border-width: 5px;
53
- margin-left: -10px;
54
- margin-right: -10px;
55
- }
56
- }
57
-
58
- // Fix legend align center
59
- legend {
60
- display: table;
61
- }
62
-
63
- // Sidebar align with fieldsets
64
- #sidebar {
65
- margin-top: 27px;
66
-
67
- .sidebar-title span {
68
- margin-left: 7px;
69
- }
70
- }
71
-
72
- }