spree_core 2.3.13 → 2.4.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (232) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/spree.js.coffee.erb +1 -5
  3. data/app/helpers/spree/base_helper.rb +22 -11
  4. data/app/helpers/spree/products_helper.rb +8 -7
  5. data/app/mailers/spree/base_mailer.rb +1 -0
  6. data/app/mailers/spree/reimbursement_mailer.rb +10 -0
  7. data/app/mailers/spree/test_mailer.rb +2 -3
  8. data/app/models/concerns/spree/adjustment_source.rb +24 -0
  9. data/app/models/concerns/spree/calculated_adjustments.rb +33 -0
  10. data/app/models/concerns/spree/named_type.rb +12 -0
  11. data/app/models/concerns/spree/user_address.rb +30 -0
  12. data/app/models/concerns/spree/user_payment_source.rb +19 -0
  13. data/app/models/spree/address.rb +13 -6
  14. data/app/models/spree/adjustment.rb +5 -5
  15. data/app/models/spree/app_configuration.rb +8 -4
  16. data/app/models/spree/asset.rb +1 -1
  17. data/app/models/spree/base.rb +0 -3
  18. data/app/models/spree/calculator/flat_rate.rb +1 -5
  19. data/app/models/spree/calculator/returns/default_refund_amount.rb +36 -0
  20. data/app/models/spree/classification.rb +1 -1
  21. data/app/models/spree/credit_card.rb +18 -22
  22. data/app/models/spree/customer_return.rb +70 -0
  23. data/app/models/spree/exchange.rb +42 -0
  24. data/app/models/spree/gateway/bogus.rb +3 -3
  25. data/app/models/spree/image.rb +1 -1
  26. data/app/models/spree/inventory_unit.rb +32 -8
  27. data/app/models/spree/item_adjustments.rb +7 -11
  28. data/app/models/spree/legacy_user.rb +2 -2
  29. data/app/models/spree/line_item.rb +25 -12
  30. data/app/models/spree/option_type.rb +1 -1
  31. data/app/models/spree/option_value.rb +1 -8
  32. data/app/models/spree/order.rb +163 -145
  33. data/app/models/spree/order/checkout.rb +35 -23
  34. data/app/models/spree/order/payments.rb +66 -0
  35. data/app/models/spree/order_contents.rb +34 -24
  36. data/app/models/spree/order_populator.rb +6 -4
  37. data/app/models/spree/order_updater.rb +10 -1
  38. data/app/models/spree/payment.rb +19 -16
  39. data/app/models/spree/payment/processing.rb +40 -72
  40. data/app/models/spree/payment_method.rb +1 -1
  41. data/app/models/spree/payment_method/check.rb +0 -2
  42. data/app/models/spree/preference.rb +1 -1
  43. data/app/models/spree/preferences/preferable.rb +20 -0
  44. data/app/models/spree/price.rb +13 -3
  45. data/app/models/spree/product.rb +24 -29
  46. data/app/models/spree/product_property.rb +0 -2
  47. data/app/models/spree/promotion.rb +66 -24
  48. data/app/models/spree/promotion/actions/create_adjustment.rb +2 -2
  49. data/app/models/spree/promotion/actions/create_item_adjustments.rb +15 -11
  50. data/app/models/spree/promotion/actions/create_line_items.rb +2 -12
  51. data/app/models/spree/promotion/rules/first_order.rb +6 -2
  52. data/app/models/spree/promotion/rules/item_total.rb +42 -4
  53. data/app/models/spree/promotion/rules/one_use_per_user.rb +24 -0
  54. data/app/models/spree/promotion/rules/product.rb +13 -11
  55. data/app/models/spree/promotion/rules/taxon.rb +61 -0
  56. data/app/models/spree/promotion/rules/user.rb +1 -1
  57. data/app/models/spree/promotion/rules/user_logged_in.rb +4 -1
  58. data/app/models/spree/promotion_category.rb +6 -0
  59. data/app/models/spree/promotion_handler/cart.rb +14 -18
  60. data/app/models/spree/promotion_handler/coupon.rb +25 -16
  61. data/app/models/spree/promotion_rule.rb +13 -0
  62. data/app/models/spree/property.rb +1 -3
  63. data/app/models/spree/refund.rb +91 -0
  64. data/app/models/spree/refund_reason.rb +13 -0
  65. data/app/models/spree/reimbursement.rb +148 -0
  66. data/app/models/spree/reimbursement/credit.rb +25 -0
  67. data/app/models/spree/reimbursement/reimbursement_type_engine.rb +56 -0
  68. data/app/models/spree/reimbursement/reimbursement_type_validator.rb +12 -0
  69. data/app/models/spree/reimbursement_performer.rb +43 -0
  70. data/app/models/spree/reimbursement_tax_calculator.rb +38 -0
  71. data/app/models/spree/reimbursement_type.rb +16 -0
  72. data/app/models/spree/reimbursement_type/credit.rb +13 -0
  73. data/app/models/spree/reimbursement_type/exchange.rb +9 -0
  74. data/app/models/spree/reimbursement_type/original_payment.rb +13 -0
  75. data/app/models/spree/reimbursement_type/reimbursement_helpers.rb +50 -0
  76. data/app/models/spree/return_authorization.rb +52 -68
  77. data/app/models/spree/return_authorization_reason.rb +7 -0
  78. data/app/models/spree/return_item.rb +230 -0
  79. data/app/models/spree/return_item/default_eligibility_validator.rb +27 -0
  80. data/app/models/spree/return_item/eligibility_validator/base_validator.rb +24 -0
  81. data/app/models/spree/return_item/eligibility_validator/rma_required.rb +17 -0
  82. data/app/models/spree/return_item/eligibility_validator/time_since_purchase.rb +16 -0
  83. data/app/models/spree/return_item/exchange_variant_eligibility/same_option_value.rb +34 -0
  84. data/app/models/spree/return_item/exchange_variant_eligibility/same_product.rb +10 -0
  85. data/app/models/spree/returns_calculator.rb +8 -0
  86. data/app/models/spree/shipment.rb +209 -154
  87. data/app/models/spree/shipment_handler.rb +43 -0
  88. data/app/models/spree/shipping_calculator.rb +1 -1
  89. data/app/models/spree/shipping_category.rb +2 -2
  90. data/app/models/spree/shipping_method.rb +1 -1
  91. data/app/models/spree/shipping_method_category.rb +1 -1
  92. data/app/models/spree/shipping_rate.rb +4 -0
  93. data/app/models/spree/stock/adjuster.rb +10 -11
  94. data/app/models/spree/stock/availability_validator.rb +6 -10
  95. data/app/models/spree/stock/content_item.rb +48 -0
  96. data/app/models/spree/stock/coordinator.rb +14 -7
  97. data/app/models/spree/stock/estimator.rb +1 -1
  98. data/app/models/spree/stock/inventory_unit_builder.rb +21 -0
  99. data/app/models/spree/stock/package.rb +38 -51
  100. data/app/models/spree/stock/packer.rb +13 -11
  101. data/app/models/spree/stock/prioritizer.rb +7 -7
  102. data/app/models/spree/stock/splitter/base.rb +2 -2
  103. data/app/models/spree/stock_item.rb +6 -9
  104. data/app/models/spree/stock_location.rb +17 -25
  105. data/app/models/spree/stock_movement.rb +1 -8
  106. data/app/models/spree/stock_transfer.rb +0 -2
  107. data/app/models/spree/store.rb +1 -1
  108. data/app/models/spree/tax_category.rb +2 -2
  109. data/app/models/spree/tax_rate.rb +16 -22
  110. data/app/models/spree/taxon.rb +1 -1
  111. data/app/models/spree/variant.rb +45 -23
  112. data/app/models/spree/zone.rb +17 -17
  113. data/app/models/spree/zone_member.rb +1 -1
  114. data/app/views/layouts/spree/base_mailer.html.erb +784 -0
  115. data/app/views/spree/order_mailer/cancel_email.html.erb +45 -0
  116. data/app/views/spree/order_mailer/cancel_email.text.erb +2 -2
  117. data/app/views/spree/order_mailer/confirm_email.html.erb +84 -0
  118. data/app/views/spree/order_mailer/confirm_email.text.erb +2 -2
  119. data/app/views/spree/reimbursement_mailer/reimbursement_email.text.erb +22 -0
  120. data/app/views/spree/shared/_base_mailer_footer.html.erb +20 -0
  121. data/app/views/spree/shared/_base_mailer_header.html.erb +31 -0
  122. data/app/views/spree/shipment_mailer/shipped_email.html.erb +34 -0
  123. data/app/views/spree/test_mailer/test_email.html.erb +40 -0
  124. data/app/views/spree/test_mailer/test_email.text.erb +2 -2
  125. data/config/initializers/friendly_id.rb +88 -0
  126. data/config/initializers/premailer_assets.rb +1 -0
  127. data/config/initializers/user_class_extensions.rb +9 -22
  128. data/config/locales/en.yml +180 -12
  129. data/db/default/spree/states.rb +73 -55
  130. data/db/migrate/20130213191427_create_default_stock.rb +1 -0
  131. data/db/migrate/20130807024301_upgrade_adjustments.rb +4 -5
  132. data/db/migrate/20140309033438_create_store_from_preferences.rb +0 -7
  133. data/db/migrate/20140318191500_create_spree_taxons_promotion_rules.rb +8 -0
  134. data/db/migrate/20140530024945_move_order_token_from_tokenized_permission.rb +1 -1
  135. data/db/migrate/20140601011216_set_shipment_total_for_users_upgrading.rb +5 -3
  136. data/db/migrate/20140625214618_create_spree_refunds.rb +12 -0
  137. data/db/migrate/20140702140656_create_spree_return_authorization_inventory_unit.rb +12 -0
  138. data/db/migrate/20140707125621_rename_return_authorization_inventory_unit_to_return_items.rb +5 -0
  139. data/db/migrate/20140709160534_backfill_line_item_pre_tax_amount.rb +10 -0
  140. data/db/migrate/20140710041921_recreate_spree_return_authorizations.rb +55 -0
  141. data/db/migrate/20140710181204_add_amount_fields_to_return_items.rb +7 -0
  142. data/db/migrate/20140710190048_drop_return_authorization_amount.rb +5 -0
  143. data/db/migrate/20140713140455_create_spree_return_authorization_reasons.rb +28 -0
  144. data/db/migrate/20140713140527_create_spree_refund_reasons.rb +14 -0
  145. data/db/migrate/20140713142214_rename_return_authorization_reason.rb +5 -0
  146. data/db/migrate/20140715182625_create_spree_promotion_categories.rb +11 -0
  147. data/db/migrate/20140716204111_drop_received_at_on_return_items.rb +9 -0
  148. data/db/migrate/20140716212330_add_reception_and_acceptance_status_to_return_items.rb +6 -0
  149. data/db/migrate/20140717155155_create_default_refund_reason.rb +9 -0
  150. data/db/migrate/20140717185932_add_default_to_spree_stock_locations.rb +5 -0
  151. data/db/migrate/20140718133010_create_spree_customer_returns.rb +9 -0
  152. data/db/migrate/20140718133349_add_customer_return_id_to_return_item.rb +6 -0
  153. data/db/migrate/20140718195325_create_friendly_id_slugs.rb +15 -0
  154. data/db/migrate/20140723004419_rename_spree_refund_return_authorization_id.rb +5 -0
  155. data/db/migrate/20140723152808_increase_return_item_pre_tax_amount_precision.rb +13 -0
  156. data/db/migrate/20140723214541_copy_product_slugs_to_slug_history.rb +15 -0
  157. data/db/migrate/20140725131539_create_spree_reimbursements.rb +21 -0
  158. data/db/migrate/20140728225422_add_promotionable_to_spree_products.rb +5 -0
  159. data/db/migrate/20140729133613_add_exchange_inventory_unit_foreign_keys.rb +7 -0
  160. data/db/migrate/20140730155938_add_acceptance_status_errors_to_return_item.rb +5 -0
  161. data/db/migrate/20140731150017_create_spree_reimbursement_types.rb +20 -0
  162. data/db/migrate/20140805171035_add_default_to_spree_credit_cards.rb +5 -0
  163. data/db/migrate/20140805171219_make_existing_credit_cards_default.rb +10 -0
  164. data/db/migrate/20140806144901_add_type_to_reimbursement_type.rb +9 -0
  165. data/db/migrate/20140808184039_create_spree_reimbursement_credits.rb +10 -0
  166. data/db/migrate/20140827170513_add_meta_title_to_spree_products.rb +7 -0
  167. data/db/migrate/20140924164824_add_code_to_spree_tax_categories.rb +5 -0
  168. data/db/migrate/20141002191113_add_code_to_spree_shipping_methods.rb +5 -0
  169. data/db/migrate/20141007230328_add_cancel_audit_fields_to_spree_orders.rb +6 -0
  170. data/db/migrate/20141009204607_add_store_id_to_orders.rb +8 -0
  171. data/lib/generators/spree/install/install_generator.rb +7 -3
  172. data/lib/spree/core.rb +11 -10
  173. data/lib/spree/core/controller_helpers/common.rb +3 -10
  174. data/lib/spree/core/controller_helpers/order.rb +15 -12
  175. data/lib/spree/core/controller_helpers/strong_parameters.rb +9 -9
  176. data/lib/spree/core/engine.rb +8 -1
  177. data/lib/spree/core/importer/order.rb +5 -17
  178. data/lib/spree/core/search/base.rb +1 -1
  179. data/lib/spree/core/validators/email.rb +1 -1
  180. data/lib/spree/core/version.rb +1 -1
  181. data/lib/spree/instrumentation.rb +41 -0
  182. data/lib/spree/migrations.rb +3 -7
  183. data/lib/spree/money.rb +2 -2
  184. data/lib/spree/permitted_attributes.rb +10 -9
  185. data/lib/spree/testing_support/ability_helpers.rb +25 -25
  186. data/lib/spree/testing_support/authorization_helpers.rb +3 -5
  187. data/lib/spree/testing_support/capybara_ext.rb +2 -2
  188. data/lib/spree/testing_support/factories/calculator_factory.rb +0 -8
  189. data/lib/spree/testing_support/factories/credit_card_factory.rb +1 -1
  190. data/lib/spree/testing_support/factories/customer_return_factory.rb +31 -0
  191. data/lib/spree/testing_support/factories/inventory_unit_factory.rb +1 -0
  192. data/lib/spree/testing_support/factories/line_item_factory.rb +2 -1
  193. data/lib/spree/testing_support/factories/order_factory.rb +11 -6
  194. data/lib/spree/testing_support/factories/promotion_category_factory.rb +6 -0
  195. data/lib/spree/testing_support/factories/promotion_factory.rb +9 -7
  196. data/lib/spree/testing_support/factories/refund_factory.rb +14 -0
  197. data/lib/spree/testing_support/factories/reimbursement_factory.rb +16 -0
  198. data/lib/spree/testing_support/factories/reimbursement_type_factory.rb +7 -0
  199. data/lib/spree/testing_support/factories/return_authorization_factory.rb +9 -3
  200. data/lib/spree/testing_support/factories/return_item_factory.rb +10 -0
  201. data/lib/spree/testing_support/factories/shipment_factory.rb +1 -0
  202. data/lib/spree/testing_support/factories/shipping_method_factory.rb +3 -2
  203. data/lib/spree/testing_support/factories/stock_factory.rb +12 -11
  204. data/lib/spree/testing_support/flash.rb +2 -2
  205. data/lib/tasks/email.rake +7 -0
  206. data/lib/tasks/exchanges.rake +70 -0
  207. data/vendor/assets/javascripts/jquery.validate/localization/messages_et.js +23 -0
  208. data/vendor/assets/javascripts/jquery.validate/localization/messages_eu.js +25 -0
  209. data/vendor/assets/javascripts/jquery.validate/localization/messages_hr.js +25 -0
  210. data/vendor/assets/javascripts/jquery.validate/localization/messages_ka.js +25 -0
  211. data/vendor/assets/javascripts/jquery.validate/localization/messages_ko.js +25 -0
  212. data/vendor/assets/javascripts/jquery.validate/localization/messages_my.js +25 -0
  213. data/vendor/assets/javascripts/jquery.validate/localization/messages_pt_BR.js +26 -0
  214. data/vendor/assets/javascripts/jquery.validate/localization/messages_pt_PT.js +26 -0
  215. data/vendor/assets/javascripts/jquery.validate/localization/messages_sl.js +25 -0
  216. data/vendor/assets/javascripts/jquery.validate/localization/messages_sv.js +23 -0
  217. data/vendor/assets/javascripts/jquery.validate/localization/messages_uk.js +25 -0
  218. data/vendor/assets/javascripts/jquery.validate/localization/messages_zh.js +25 -0
  219. data/vendor/assets/javascripts/jquery.validate/localization/messages_zh_TW.js +26 -0
  220. metadata +163 -47
  221. data/app/models/concerns/spree/ransackable_attributes.rb +0 -19
  222. data/db/migrate/20141021194502_add_state_lock_version_to_order.rb +0 -5
  223. data/db/migrate/20141101231208_fix_adjustment_order_presence.rb +0 -13
  224. data/db/migrate/20141105213646_update_classifications_positions.rb +0 -9
  225. data/db/migrate/20141120135441_add_guest_token_index_to_spree_orders.rb +0 -5
  226. data/db/migrate/20150515211137_fix_adjustment_order_id.rb +0 -70
  227. data/lib/spree/core/adjustment_source.rb +0 -26
  228. data/lib/spree/core/calculated_adjustments.rb +0 -35
  229. data/lib/spree/core/controller_helpers.rb +0 -20
  230. data/lib/spree/core/user_address.rb +0 -32
  231. data/lib/spree/core/user_payment_source.rb +0 -20
  232. data/lib/spree/localized_number.rb +0 -20
@@ -1,6 +1,6 @@
1
1
  module Spree
2
2
  class ZoneMember < Spree::Base
3
- belongs_to :zone, class_name: 'Spree::Zone', counter_cache: true, inverse_of: :zone_members
3
+ belongs_to :zone, class_name: 'Spree::Zone', counter_cache: true
4
4
  belongs_to :zoneable, polymorphic: true
5
5
 
6
6
  def name
@@ -0,0 +1,784 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
+ <meta name="viewport" content="width=device-width"/>
6
+ <style>
7
+ /**********************************************
8
+ * Ink v1.0.5 - Copyright 2013 ZURB Inc *
9
+ **********************************************/
10
+
11
+ /* Client-specific Styles & Reset */
12
+
13
+ #outlook a {
14
+ padding:0;
15
+ }
16
+
17
+ body{
18
+ width:100% !important;
19
+ min-width: 100%;
20
+ -webkit-text-size-adjust:100%;
21
+ -ms-text-size-adjust:100%;
22
+ margin:0;
23
+ padding:0;
24
+ }
25
+
26
+ .ExternalClass {
27
+ width:100%;
28
+ }
29
+
30
+ .ExternalClass,
31
+ .ExternalClass p,
32
+ .ExternalClass span,
33
+ .ExternalClass font,
34
+ .ExternalClass td,
35
+ .ExternalClass div {
36
+ line-height: 100%;
37
+ }
38
+
39
+ #backgroundTable {
40
+ margin:0;
41
+ padding:0;
42
+ width:100% !important;
43
+ line-height: 100% !important;
44
+ }
45
+
46
+ img {
47
+ outline:none;
48
+ text-decoration:none;
49
+ -ms-interpolation-mode: bicubic;
50
+ width: auto;
51
+ max-width: 100%;
52
+ float: left;
53
+ clear: both;
54
+ display: block;
55
+ }
56
+
57
+ center {
58
+ width: 100%;
59
+ min-width: 580px;
60
+ }
61
+
62
+ a img {
63
+ border: none;
64
+ }
65
+
66
+ p {
67
+ margin: 0 0 0 10px;
68
+ }
69
+
70
+ table {
71
+ border-spacing: 0;
72
+ border-collapse: collapse;
73
+ }
74
+
75
+ td {
76
+ word-break: break-word;
77
+ -webkit-hyphens: auto;
78
+ -moz-hyphens: auto;
79
+ hyphens: auto;
80
+ border-collapse: collapse !important;
81
+ }
82
+
83
+ table, tr, td {
84
+ padding: 0;
85
+ vertical-align: top;
86
+ text-align: left;
87
+ }
88
+
89
+ hr {
90
+ color: #d9d9d9;
91
+ background-color: #d9d9d9;
92
+ height: 1px;
93
+ border: none;
94
+ }
95
+
96
+ /* Responsive Grid */
97
+
98
+ table.body {
99
+ height: 100%;
100
+ width: 100%;
101
+ }
102
+
103
+ table.container {
104
+ width: 580px;
105
+ margin: 0 auto;
106
+ text-align: inherit;
107
+ }
108
+
109
+ table.row {
110
+ padding: 0px;
111
+ width: 100%;
112
+ position: relative;
113
+ }
114
+
115
+ table.container table.row {
116
+ display: block;
117
+ }
118
+
119
+ td.wrapper {
120
+ padding: 10px 20px 0px 0px;
121
+ position: relative;
122
+ }
123
+
124
+ table.columns,
125
+ table.column {
126
+ margin: 0 auto;
127
+ }
128
+
129
+ table.columns td,
130
+ table.column td {
131
+ padding: 0px 0px 10px;
132
+ }
133
+
134
+ table.columns td.sub-columns,
135
+ table.column td.sub-columns,
136
+ table.columns td.sub-column,
137
+ table.column td.sub-column {
138
+ padding-right: 10px;
139
+ }
140
+
141
+ td.sub-column, td.sub-columns {
142
+ min-width: 0px;
143
+ }
144
+
145
+ table.row td.last,
146
+ table.container td.last {
147
+ padding-right: 0px;
148
+ }
149
+
150
+ table.one { width: 30px; }
151
+ table.two { width: 80px; }
152
+ table.three { width: 130px; }
153
+ table.four { width: 180px; }
154
+ table.five { width: 230px; }
155
+ table.six { width: 280px; }
156
+ table.seven { width: 330px; }
157
+ table.eight { width: 380px; }
158
+ table.nine { width: 430px; }
159
+ table.ten { width: 480px; }
160
+ table.eleven { width: 530px; }
161
+ table.twelve { width: 580px; }
162
+
163
+ table.one center { min-width: 30px; }
164
+ table.two center { min-width: 80px; }
165
+ table.three center { min-width: 130px; }
166
+ table.four center { min-width: 180px; }
167
+ table.five center { min-width: 230px; }
168
+ table.six center { min-width: 280px; }
169
+ table.seven center { min-width: 330px; }
170
+ table.eight center { min-width: 380px; }
171
+ table.nine center { min-width: 430px; }
172
+ table.ten center { min-width: 480px; }
173
+ table.eleven center { min-width: 530px; }
174
+ table.twelve center { min-width: 580px; }
175
+
176
+ table.one .panel center { min-width: 10px; }
177
+ table.two .panel center { min-width: 60px; }
178
+ table.three .panel center { min-width: 110px; }
179
+ table.four .panel center { min-width: 160px; }
180
+ table.five .panel center { min-width: 210px; }
181
+ table.six .panel center { min-width: 260px; }
182
+ table.seven .panel center { min-width: 310px; }
183
+ table.eight .panel center { min-width: 360px; }
184
+ table.nine .panel center { min-width: 410px; }
185
+ table.ten .panel center { min-width: 460px; }
186
+ table.eleven .panel center { min-width: 510px; }
187
+ table.twelve .panel center { min-width: 560px; }
188
+
189
+ .body .columns td.one,
190
+ .body .column td.one { width: 8.333333%; }
191
+ .body .columns td.two,
192
+ .body .column td.two { width: 16.666666%; }
193
+ .body .columns td.three,
194
+ .body .column td.three { width: 25%; }
195
+ .body .columns td.four,
196
+ .body .column td.four { width: 33.333333%; }
197
+ .body .columns td.five,
198
+ .body .column td.five { width: 41.666666%; }
199
+ .body .columns td.six,
200
+ .body .column td.six { width: 50%; }
201
+ .body .columns td.seven,
202
+ .body .column td.seven { width: 58.333333%; }
203
+ .body .columns td.eight,
204
+ .body .column td.eight { width: 66.666666%; }
205
+ .body .columns td.nine,
206
+ .body .column td.nine { width: 75%; }
207
+ .body .columns td.ten,
208
+ .body .column td.ten { width: 83.333333%; }
209
+ .body .columns td.eleven,
210
+ .body .column td.eleven { width: 91.666666%; }
211
+ .body .columns td.twelve,
212
+ .body .column td.twelve { width: 100%; }
213
+
214
+ td.offset-by-one { padding-left: 50px; }
215
+ td.offset-by-two { padding-left: 100px; }
216
+ td.offset-by-three { padding-left: 150px; }
217
+ td.offset-by-four { padding-left: 200px; }
218
+ td.offset-by-five { padding-left: 250px; }
219
+ td.offset-by-six { padding-left: 300px; }
220
+ td.offset-by-seven { padding-left: 350px; }
221
+ td.offset-by-eight { padding-left: 400px; }
222
+ td.offset-by-nine { padding-left: 450px; }
223
+ td.offset-by-ten { padding-left: 500px; }
224
+ td.offset-by-eleven { padding-left: 550px; }
225
+
226
+ td.expander {
227
+ visibility: hidden;
228
+ width: 0px;
229
+ padding: 0 !important;
230
+ }
231
+
232
+ table.columns .text-pad,
233
+ table.column .text-pad {
234
+ padding-left: 10px;
235
+ padding-right: 10px;
236
+ }
237
+
238
+ table.columns .left-text-pad,
239
+ table.columns .text-pad-left,
240
+ table.column .left-text-pad,
241
+ table.column .text-pad-left {
242
+ padding-left: 10px;
243
+ }
244
+
245
+ table.columns .right-text-pad,
246
+ table.columns .text-pad-right,
247
+ table.column .right-text-pad,
248
+ table.column .text-pad-right {
249
+ padding-right: 10px;
250
+ }
251
+
252
+ /* Block Grid */
253
+
254
+ .block-grid {
255
+ width: 100%;
256
+ max-width: 580px;
257
+ }
258
+
259
+ .block-grid td {
260
+ display: inline-block;
261
+ padding:10px;
262
+ }
263
+
264
+ .two-up td {
265
+ width:270px;
266
+ }
267
+
268
+ .three-up td {
269
+ width:173px;
270
+ }
271
+
272
+ .four-up td {
273
+ width:125px;
274
+ }
275
+
276
+ .five-up td {
277
+ width:96px;
278
+ }
279
+
280
+ .six-up td {
281
+ width:76px;
282
+ }
283
+
284
+ .seven-up td {
285
+ width:62px;
286
+ }
287
+
288
+ .eight-up td {
289
+ width:52px;
290
+ }
291
+
292
+ /* Alignment & Visibility Classes */
293
+
294
+ table.center, td.center {
295
+ text-align: center;
296
+ }
297
+
298
+ h1.center,
299
+ h2.center,
300
+ h3.center,
301
+ h4.center,
302
+ h5.center,
303
+ h6.center {
304
+ text-align: center;
305
+ }
306
+
307
+ span.center {
308
+ display: block;
309
+ width: 100%;
310
+ text-align: center;
311
+ }
312
+
313
+ img.center {
314
+ margin: 0 auto;
315
+ float: none;
316
+ }
317
+
318
+ .show-for-small,
319
+ .hide-for-desktop {
320
+ display: none;
321
+ }
322
+
323
+ /* Typography */
324
+
325
+ body, table.body, h1, h2, h3, h4, h5, h6, p, td {
326
+ color: #222222;
327
+ font-family: "Helvetica", "Arial", sans-serif;
328
+ font-weight: normal;
329
+ padding:0;
330
+ margin: 0;
331
+ text-align: left;
332
+ line-height: 1.3;
333
+ }
334
+
335
+ h1, h2, h3, h4, h5, h6 {
336
+ word-break: normal;
337
+ }
338
+
339
+ h1 {font-size: 40px;}
340
+ h2 {font-size: 36px;}
341
+ h3 {font-size: 32px;}
342
+ h4 {font-size: 28px;}
343
+ h5 {font-size: 24px;}
344
+ h6 {font-size: 20px;}
345
+ body, table.body, p, td {font-size: 14px;line-height:19px;}
346
+
347
+ p.lead, p.lede, p.leed {
348
+ font-size: 18px;
349
+ line-height:21px;
350
+ }
351
+
352
+ p {
353
+ margin-bottom: 10px;
354
+ }
355
+
356
+ small {
357
+ font-size: 10px;
358
+ }
359
+
360
+ a {
361
+ color: #2ba6cb;
362
+ text-decoration: none;
363
+ }
364
+
365
+ a:hover {
366
+ color: #2795b6 !important;
367
+ }
368
+
369
+ a:active {
370
+ color: #2795b6 !important;
371
+ }
372
+
373
+ a:visited {
374
+ color: #2ba6cb !important;
375
+ }
376
+
377
+ h1 a,
378
+ h2 a,
379
+ h3 a,
380
+ h4 a,
381
+ h5 a,
382
+ h6 a {
383
+ color: #2ba6cb;
384
+ }
385
+
386
+ h1 a:active,
387
+ h2 a:active,
388
+ h3 a:active,
389
+ h4 a:active,
390
+ h5 a:active,
391
+ h6 a:active {
392
+ color: #2ba6cb !important;
393
+ }
394
+
395
+ h1 a:visited,
396
+ h2 a:visited,
397
+ h3 a:visited,
398
+ h4 a:visited,
399
+ h5 a:visited,
400
+ h6 a:visited {
401
+ color: #2ba6cb !important;
402
+ }
403
+
404
+ /* Panels */
405
+
406
+ .panel {
407
+ background: #f2f2f2;
408
+ border: 1px solid #d9d9d9;
409
+ padding: 10px !important;
410
+ }
411
+
412
+ .sub-grid table {
413
+ width: 100%;
414
+ }
415
+
416
+ .sub-grid td.sub-columns {
417
+ padding-bottom: 0;
418
+ }
419
+
420
+ /* Buttons */
421
+
422
+ table.button,
423
+ table.tiny-button,
424
+ table.small-button,
425
+ table.medium-button,
426
+ table.large-button {
427
+ width: 100%;
428
+ overflow: hidden;
429
+ }
430
+
431
+ table.button td,
432
+ table.tiny-button td,
433
+ table.small-button td,
434
+ table.medium-button td,
435
+ table.large-button td {
436
+ display: block;
437
+ width: auto !important;
438
+ text-align: center;
439
+ background: #2ba6cb;
440
+ border: 1px solid #2284a1;
441
+ color: #ffffff;
442
+ padding: 8px 0;
443
+ }
444
+
445
+ table.tiny-button td {
446
+ padding: 5px 0 4px;
447
+ }
448
+
449
+ table.small-button td {
450
+ padding: 8px 0 7px;
451
+ }
452
+
453
+ table.medium-button td {
454
+ padding: 12px 0 10px;
455
+ }
456
+
457
+ table.large-button td {
458
+ padding: 21px 0 18px;
459
+ }
460
+
461
+ table.button td a,
462
+ table.tiny-button td a,
463
+ table.small-button td a,
464
+ table.medium-button td a,
465
+ table.large-button td a {
466
+ font-weight: bold;
467
+ text-decoration: none;
468
+ font-family: Helvetica, Arial, sans-serif;
469
+ color: #ffffff;
470
+ font-size: 16px;
471
+ }
472
+
473
+ table.tiny-button td a {
474
+ font-size: 12px;
475
+ font-weight: normal;
476
+ }
477
+
478
+ table.small-button td a {
479
+ font-size: 16px;
480
+ }
481
+
482
+ table.medium-button td a {
483
+ font-size: 20px;
484
+ }
485
+
486
+ table.large-button td a {
487
+ font-size: 24px;
488
+ }
489
+
490
+ table.button:hover td,
491
+ table.button:visited td,
492
+ table.button:active td {
493
+ background: #2795b6 !important;
494
+ }
495
+
496
+ table.button:hover td a,
497
+ table.button:visited td a,
498
+ table.button:active td a {
499
+ color: #fff !important;
500
+ }
501
+
502
+ table.button:hover td,
503
+ table.tiny-button:hover td,
504
+ table.small-button:hover td,
505
+ table.medium-button:hover td,
506
+ table.large-button:hover td {
507
+ background: #2795b6 !important;
508
+ }
509
+
510
+ table.button:hover td a,
511
+ table.button:active td a,
512
+ table.button td a:visited,
513
+ table.tiny-button:hover td a,
514
+ table.tiny-button:active td a,
515
+ table.tiny-button td a:visited,
516
+ table.small-button:hover td a,
517
+ table.small-button:active td a,
518
+ table.small-button td a:visited,
519
+ table.medium-button:hover td a,
520
+ table.medium-button:active td a,
521
+ table.medium-button td a:visited,
522
+ table.large-button:hover td a,
523
+ table.large-button:active td a,
524
+ table.large-button td a:visited {
525
+ color: #ffffff !important;
526
+ }
527
+
528
+ table.secondary td {
529
+ background: #e9e9e9;
530
+ border-color: #d0d0d0;
531
+ color: #555;
532
+ }
533
+
534
+ table.secondary td a {
535
+ color: #555;
536
+ }
537
+
538
+ table.secondary:hover td {
539
+ background: #d0d0d0 !important;
540
+ color: #555;
541
+ }
542
+
543
+ table.secondary:hover td a,
544
+ table.secondary td a:visited,
545
+ table.secondary:active td a {
546
+ color: #555 !important;
547
+ }
548
+
549
+ table.success td {
550
+ background: #5da423;
551
+ border-color: #457a1a;
552
+ }
553
+
554
+ table.success:hover td {
555
+ background: #457a1a !important;
556
+ }
557
+
558
+ table.alert td {
559
+ background: #c60f13;
560
+ border-color: #970b0e;
561
+ }
562
+
563
+ table.alert:hover td {
564
+ background: #970b0e !important;
565
+ }
566
+
567
+ table.radius td {
568
+ -webkit-border-radius: 3px;
569
+ -moz-border-radius: 3px;
570
+ border-radius: 3px;
571
+ }
572
+
573
+ table.round td {
574
+ -webkit-border-radius: 500px;
575
+ -moz-border-radius: 500px;
576
+ border-radius: 500px;
577
+ }
578
+
579
+ /* Outlook First */
580
+
581
+ body.outlook p {
582
+ display: inline !important;
583
+ }
584
+
585
+ /* Media Queries */
586
+
587
+ @media only screen and (max-width: 600px) {
588
+
589
+ table[class="body"] img {
590
+ width: auto !important;
591
+ height: auto !important;
592
+ }
593
+
594
+ table[class="body"] center {
595
+ min-width: 0 !important;
596
+ }
597
+
598
+ table[class="body"] .container {
599
+ width: 95% !important;
600
+ }
601
+
602
+ table[class="body"] .row {
603
+ width: 100% !important;
604
+ display: block !important;
605
+ }
606
+
607
+ table[class="body"] .wrapper {
608
+ display: block !important;
609
+ padding-right: 0 !important;
610
+ }
611
+
612
+ table[class="body"] .columns,
613
+ table[class="body"] .column {
614
+ table-layout: fixed !important;
615
+ float: none !important;
616
+ width: 100% !important;
617
+ padding-right: 0px !important;
618
+ padding-left: 0px !important;
619
+ display: block !important;
620
+ }
621
+
622
+ table[class="body"] .wrapper.first .columns,
623
+ table[class="body"] .wrapper.first .column {
624
+ display: table !important;
625
+ }
626
+
627
+ table[class="body"] table.columns td,
628
+ table[class="body"] table.column td {
629
+ width: 100% !important;
630
+ }
631
+
632
+ table[class="body"] .columns td.one,
633
+ table[class="body"] .column td.one { width: 8.333333% !important; }
634
+ table[class="body"] .columns td.two,
635
+ table[class="body"] .column td.two { width: 16.666666% !important; }
636
+ table[class="body"] .columns td.three,
637
+ table[class="body"] .column td.three { width: 25% !important; }
638
+ table[class="body"] .columns td.four,
639
+ table[class="body"] .column td.four { width: 33.333333% !important; }
640
+ table[class="body"] .columns td.five,
641
+ table[class="body"] .column td.five { width: 41.666666% !important; }
642
+ table[class="body"] .columns td.six,
643
+ table[class="body"] .column td.six { width: 50% !important; }
644
+ table[class="body"] .columns td.seven,
645
+ table[class="body"] .column td.seven { width: 58.333333% !important; }
646
+ table[class="body"] .columns td.eight,
647
+ table[class="body"] .column td.eight { width: 66.666666% !important; }
648
+ table[class="body"] .columns td.nine,
649
+ table[class="body"] .column td.nine { width: 75% !important; }
650
+ table[class="body"] .columns td.ten,
651
+ table[class="body"] .column td.ten { width: 83.333333% !important; }
652
+ table[class="body"] .columns td.eleven,
653
+ table[class="body"] .column td.eleven { width: 91.666666% !important; }
654
+ table[class="body"] .columns td.twelve,
655
+ table[class="body"] .column td.twelve { width: 100% !important; }
656
+
657
+ table[class="body"] td.offset-by-one,
658
+ table[class="body"] td.offset-by-two,
659
+ table[class="body"] td.offset-by-three,
660
+ table[class="body"] td.offset-by-four,
661
+ table[class="body"] td.offset-by-five,
662
+ table[class="body"] td.offset-by-six,
663
+ table[class="body"] td.offset-by-seven,
664
+ table[class="body"] td.offset-by-eight,
665
+ table[class="body"] td.offset-by-nine,
666
+ table[class="body"] td.offset-by-ten,
667
+ table[class="body"] td.offset-by-eleven {
668
+ padding-left: 0 !important;
669
+ }
670
+
671
+ table[class="body"] table.columns td.expander {
672
+ width: 1px !important;
673
+ }
674
+
675
+ table[class="body"] .right-text-pad,
676
+ table[class="body"] .text-pad-right {
677
+ padding-left: 10px !important;
678
+ }
679
+
680
+ table[class="body"] .left-text-pad,
681
+ table[class="body"] .text-pad-left {
682
+ padding-right: 10px !important;
683
+ }
684
+
685
+ table[class="body"] .hide-for-small,
686
+ table[class="body"] .show-for-desktop {
687
+ display: none !important;
688
+ }
689
+
690
+ table[class="body"] .show-for-small,
691
+ table[class="body"] .hide-for-desktop {
692
+ display: inherit !important;
693
+ }
694
+ }
695
+
696
+ </style>
697
+ <style>
698
+
699
+ .template-label {
700
+ font-weight: bold;
701
+ font-size: 11px;
702
+ }
703
+
704
+ .callout .wrapper {
705
+ padding-bottom: 20px;
706
+ }
707
+
708
+ .callout .panel {
709
+ background: #ECF8FF;
710
+ border-color: #b9e5ff;
711
+ }
712
+
713
+ .header {
714
+ background: #fff;
715
+ }
716
+
717
+ .footer .wrapper {
718
+ background: #ebebeb;
719
+ }
720
+
721
+ .footer h5 {
722
+ padding-bottom: 10px;
723
+ }
724
+
725
+ table.columns .text-pad {
726
+ padding-left: 10px;
727
+ padding-right: 10px;
728
+ }
729
+
730
+ table.columns .left-text-pad {
731
+ padding-left: 10px;
732
+ }
733
+
734
+ table.columns .right-text-pad {
735
+ padding-right: 10px;
736
+ }
737
+
738
+ @media only screen and (max-width: 600px) {
739
+
740
+ table[class="body"] .right-text-pad {
741
+ padding-left: 10px !important;
742
+ }
743
+
744
+ table[class="body"] .left-text-pad {
745
+ padding-right: 10px !important;
746
+ }
747
+ }
748
+
749
+ </style>
750
+ </head>
751
+ <body>
752
+ <table class="body">
753
+ <tr>
754
+ <td class="center" align="center" valign="top">
755
+ <center>
756
+ <%= render partial: 'spree/shared/base_mailer_header' %>
757
+ <table class="container">
758
+ <tr>
759
+ <td>
760
+ <table class="row">
761
+ <tr>
762
+ <td class="wrapper last">
763
+ <table class="twelve columns">
764
+ <tr>
765
+ <td>
766
+ <%= yield %>
767
+ </td>
768
+ <td class="expander"></td>
769
+ </tr>
770
+ </table>
771
+ </td>
772
+ </tr>
773
+ </table>
774
+ <%= render partial: 'spree/shared/base_mailer_footer' %>
775
+ <!-- container end below -->
776
+ </td>
777
+ </tr>
778
+ </table>
779
+ </center>
780
+ </td>
781
+ </tr>
782
+ </table>
783
+ </body>
784
+ </html>