spree_frontend 2.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/LICENSE +26 -0
- data/README.md +21 -0
- data/app/assets/images/credit_cards/amex_cid.gif +0 -0
- data/app/assets/images/credit_cards/credit_card.gif +0 -0
- data/app/assets/images/credit_cards/discover_cid.gif +0 -0
- data/app/assets/images/credit_cards/icons/american_express.png +0 -0
- data/app/assets/images/credit_cards/icons/cirrus.png +0 -0
- data/app/assets/images/credit_cards/icons/delta.png +0 -0
- data/app/assets/images/credit_cards/icons/diners_club.png +0 -0
- data/app/assets/images/credit_cards/icons/directdebit.png +0 -0
- data/app/assets/images/credit_cards/icons/discover.png +0 -0
- data/app/assets/images/credit_cards/icons/egold.png +0 -0
- data/app/assets/images/credit_cards/icons/maestro.png +0 -0
- data/app/assets/images/credit_cards/icons/master.png +0 -0
- data/app/assets/images/credit_cards/icons/paypal.png +0 -0
- data/app/assets/images/credit_cards/icons/solo.png +0 -0
- data/app/assets/images/credit_cards/icons/switch.png +0 -0
- data/app/assets/images/credit_cards/icons/visa.png +0 -0
- data/app/assets/images/credit_cards/icons/visaelectron.png +0 -0
- data/app/assets/images/credit_cards/icons/westernunion.png +0 -0
- data/app/assets/images/credit_cards/icons/wirecard.png +0 -0
- data/app/assets/images/credit_cards/icons/worldpay.png +0 -0
- data/app/assets/images/credit_cards/master_cid.jpg +0 -0
- data/app/assets/images/credit_cards/visa_cid.gif +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/icons/add-to-cart.png +0 -0
- data/app/assets/images/icons/checkout.png +0 -0
- data/app/assets/images/icons/delete.png +0 -0
- data/app/assets/images/icons/update.png +0 -0
- data/app/assets/images/noimage/large.png +0 -0
- data/app/assets/images/noimage/mini.png +0 -0
- data/app/assets/images/noimage/product.png +0 -0
- data/app/assets/images/noimage/small.png +0 -0
- data/app/assets/images/spinner.gif +0 -0
- data/app/assets/images/store/cart.png +0 -0
- data/app/assets/images/store/select_arrow.gif +0 -0
- data/app/assets/javascripts/store/cart.js.coffee +9 -0
- data/app/assets/javascripts/store/checkout.js.coffee +105 -0
- data/app/assets/javascripts/store/product.js.coffee +42 -0
- data/app/assets/javascripts/store/spree_frontend.js +5 -0
- data/app/assets/stylesheets/admin/plugins/font-awesome.scss +303 -0
- data/app/assets/stylesheets/store/_variables.scss +61 -0
- data/app/assets/stylesheets/store/screen.css.scss +1272 -0
- data/app/assets/stylesheets/store/spree_frontend.css +6 -0
- data/app/controllers/spree/checkout_controller.rb +166 -0
- data/app/controllers/spree/content_controller.rb +29 -0
- data/app/controllers/spree/home_controller.rb +13 -0
- data/app/controllers/spree/locale_controller.rb +16 -0
- data/app/controllers/spree/orders_controller.rb +100 -0
- data/app/controllers/spree/products_controller.rb +50 -0
- data/app/controllers/spree/store_controller.rb +70 -0
- data/app/controllers/spree/taxons_controller.rb +29 -0
- data/app/models/spree/frontend_configuration.rb +5 -0
- data/app/views/spree/address/_form.html.erb +75 -0
- data/app/views/spree/checkout/_address.html.erb +25 -0
- data/app/views/spree/checkout/_confirm.html.erb +12 -0
- data/app/views/spree/checkout/_delivery.html.erb +100 -0
- data/app/views/spree/checkout/_payment.html.erb +37 -0
- data/app/views/spree/checkout/_summary.html.erb +33 -0
- data/app/views/spree/checkout/edit.html.erb +28 -0
- data/app/views/spree/checkout/payment/_check.html.erb +0 -0
- data/app/views/spree/checkout/payment/_gateway.html.erb +26 -0
- data/app/views/spree/checkout/registration.html.erb +20 -0
- data/app/views/spree/content/cvv.html.erb +13 -0
- data/app/views/spree/home/index.html.erb +10 -0
- data/app/views/spree/layouts/spree_application.html.erb +38 -0
- data/app/views/spree/orders/_adjustments.html.erb +14 -0
- data/app/views/spree/orders/_form.html.erb +18 -0
- data/app/views/spree/orders/_line_item.html.erb +31 -0
- data/app/views/spree/orders/edit.html.erb +48 -0
- data/app/views/spree/orders/new.html.erb +9 -0
- data/app/views/spree/orders/show.html.erb +22 -0
- data/app/views/spree/products/_cart_form.html.erb +48 -0
- data/app/views/spree/products/_image.html.erb +5 -0
- data/app/views/spree/products/_promotions.html.erb +19 -0
- data/app/views/spree/products/_properties.html.erb +15 -0
- data/app/views/spree/products/_taxons.html.erb +14 -0
- data/app/views/spree/products/_thumbnails.html.erb +19 -0
- data/app/views/spree/products/index.html.erb +27 -0
- data/app/views/spree/products/show.html.erb +49 -0
- data/app/views/spree/shared/_filters.html.erb +28 -0
- data/app/views/spree/shared/_footer.html.erb +6 -0
- data/app/views/spree/shared/_google_analytics.html.erb +39 -0
- data/app/views/spree/shared/_head.html.erb +14 -0
- data/app/views/spree/shared/_header.html.erb +5 -0
- data/app/views/spree/shared/_main_nav_bar.html.erb +6 -0
- data/app/views/spree/shared/_nav_bar.html.erb +7 -0
- data/app/views/spree/shared/_order_details.html.erb +110 -0
- data/app/views/spree/shared/_products.html.erb +28 -0
- data/app/views/spree/shared/_search.html.erb +9 -0
- data/app/views/spree/shared/_shipment_tracking.html.erb +9 -0
- data/app/views/spree/shared/_sidebar.html.erb +3 -0
- data/app/views/spree/shared/_taxonomies.html.erb +6 -0
- data/app/views/spree/shared/unauthorized.html.erb +0 -0
- data/app/views/spree/taxons/_taxon.html.erb +4 -0
- data/app/views/spree/taxons/show.html.erb +19 -0
- data/config/initializers/check_for_orphaned_preferences.rb +9 -0
- data/config/initializers/deprecation_checker.rb +7 -0
- data/config/initializers/rails_5868.rb +8 -0
- data/config/initializers/spree.rb +6 -0
- data/config/routes.rb +39 -0
- data/lib/spree/frontend.rb +22 -0
- data/lib/spree/frontend/engine.rb +19 -0
- data/lib/spree/frontend/middleware/seo_assist.rb +51 -0
- data/lib/spree/frontend/preference_rescue.rb +25 -0
- data/lib/spree/scopes/dynamic.rb +33 -0
- data/lib/spree_frontend.rb +1 -0
- data/lib/tasks/rake_util.rb +19 -0
- data/lib/tasks/taxon.rake +14 -0
- data/vendor/assets/images/datepicker/cal.gif +0 -0
- data/vendor/assets/images/flags/ad.png +0 -0
- data/vendor/assets/images/flags/ae.png +0 -0
- data/vendor/assets/images/flags/af.png +0 -0
- data/vendor/assets/images/flags/ag.png +0 -0
- data/vendor/assets/images/flags/ai.png +0 -0
- data/vendor/assets/images/flags/al.png +0 -0
- data/vendor/assets/images/flags/am.png +0 -0
- data/vendor/assets/images/flags/an.png +0 -0
- data/vendor/assets/images/flags/ao.png +0 -0
- data/vendor/assets/images/flags/ar.png +0 -0
- data/vendor/assets/images/flags/as.png +0 -0
- data/vendor/assets/images/flags/at.png +0 -0
- data/vendor/assets/images/flags/au.png +0 -0
- data/vendor/assets/images/flags/aw.png +0 -0
- data/vendor/assets/images/flags/ax.png +0 -0
- data/vendor/assets/images/flags/az.png +0 -0
- data/vendor/assets/images/flags/ba.png +0 -0
- data/vendor/assets/images/flags/bb.png +0 -0
- data/vendor/assets/images/flags/bd.png +0 -0
- data/vendor/assets/images/flags/be.png +0 -0
- data/vendor/assets/images/flags/bf.png +0 -0
- data/vendor/assets/images/flags/bg.png +0 -0
- data/vendor/assets/images/flags/bh.png +0 -0
- data/vendor/assets/images/flags/bi.png +0 -0
- data/vendor/assets/images/flags/bj.png +0 -0
- data/vendor/assets/images/flags/bm.png +0 -0
- data/vendor/assets/images/flags/bn.png +0 -0
- data/vendor/assets/images/flags/bo.png +0 -0
- data/vendor/assets/images/flags/br.png +0 -0
- data/vendor/assets/images/flags/bs.png +0 -0
- data/vendor/assets/images/flags/bt.png +0 -0
- data/vendor/assets/images/flags/bv.png +0 -0
- data/vendor/assets/images/flags/bw.png +0 -0
- data/vendor/assets/images/flags/by.png +0 -0
- data/vendor/assets/images/flags/bz.png +0 -0
- data/vendor/assets/images/flags/ca.png +0 -0
- data/vendor/assets/images/flags/catalonia.png +0 -0
- data/vendor/assets/images/flags/cc.png +0 -0
- data/vendor/assets/images/flags/cd.png +0 -0
- data/vendor/assets/images/flags/cf.png +0 -0
- data/vendor/assets/images/flags/cg.png +0 -0
- data/vendor/assets/images/flags/ch.png +0 -0
- data/vendor/assets/images/flags/ci.png +0 -0
- data/vendor/assets/images/flags/ck.png +0 -0
- data/vendor/assets/images/flags/cl.png +0 -0
- data/vendor/assets/images/flags/cm.png +0 -0
- data/vendor/assets/images/flags/cn.png +0 -0
- data/vendor/assets/images/flags/co.png +0 -0
- data/vendor/assets/images/flags/cr.png +0 -0
- data/vendor/assets/images/flags/cs.png +0 -0
- data/vendor/assets/images/flags/cu.png +0 -0
- data/vendor/assets/images/flags/cv.png +0 -0
- data/vendor/assets/images/flags/cx.png +0 -0
- data/vendor/assets/images/flags/cy.png +0 -0
- data/vendor/assets/images/flags/cz.png +0 -0
- data/vendor/assets/images/flags/de.png +0 -0
- data/vendor/assets/images/flags/dj.png +0 -0
- data/vendor/assets/images/flags/dk.png +0 -0
- data/vendor/assets/images/flags/dm.png +0 -0
- data/vendor/assets/images/flags/do.png +0 -0
- data/vendor/assets/images/flags/dz.png +0 -0
- data/vendor/assets/images/flags/ec.png +0 -0
- data/vendor/assets/images/flags/ee.png +0 -0
- data/vendor/assets/images/flags/eg.png +0 -0
- data/vendor/assets/images/flags/eh.png +0 -0
- data/vendor/assets/images/flags/england.png +0 -0
- data/vendor/assets/images/flags/er.png +0 -0
- data/vendor/assets/images/flags/es.png +0 -0
- data/vendor/assets/images/flags/et.png +0 -0
- data/vendor/assets/images/flags/europeanunion.png +0 -0
- data/vendor/assets/images/flags/fam.png +0 -0
- data/vendor/assets/images/flags/fi.png +0 -0
- data/vendor/assets/images/flags/fj.png +0 -0
- data/vendor/assets/images/flags/fk.png +0 -0
- data/vendor/assets/images/flags/fm.png +0 -0
- data/vendor/assets/images/flags/fo.png +0 -0
- data/vendor/assets/images/flags/fr.png +0 -0
- data/vendor/assets/images/flags/ga.png +0 -0
- data/vendor/assets/images/flags/gb.png +0 -0
- data/vendor/assets/images/flags/gd.png +0 -0
- data/vendor/assets/images/flags/ge.png +0 -0
- data/vendor/assets/images/flags/gf.png +0 -0
- data/vendor/assets/images/flags/gh.png +0 -0
- data/vendor/assets/images/flags/gi.png +0 -0
- data/vendor/assets/images/flags/gl.png +0 -0
- data/vendor/assets/images/flags/gm.png +0 -0
- data/vendor/assets/images/flags/gn.png +0 -0
- data/vendor/assets/images/flags/gp.png +0 -0
- data/vendor/assets/images/flags/gq.png +0 -0
- data/vendor/assets/images/flags/gr.png +0 -0
- data/vendor/assets/images/flags/gs.png +0 -0
- data/vendor/assets/images/flags/gt.png +0 -0
- data/vendor/assets/images/flags/gu.png +0 -0
- data/vendor/assets/images/flags/gw.png +0 -0
- data/vendor/assets/images/flags/gy.png +0 -0
- data/vendor/assets/images/flags/hk.png +0 -0
- data/vendor/assets/images/flags/hm.png +0 -0
- data/vendor/assets/images/flags/hn.png +0 -0
- data/vendor/assets/images/flags/hr.png +0 -0
- data/vendor/assets/images/flags/ht.png +0 -0
- data/vendor/assets/images/flags/hu.png +0 -0
- data/vendor/assets/images/flags/id.png +0 -0
- data/vendor/assets/images/flags/ie.png +0 -0
- data/vendor/assets/images/flags/il.png +0 -0
- data/vendor/assets/images/flags/in.png +0 -0
- data/vendor/assets/images/flags/io.png +0 -0
- data/vendor/assets/images/flags/iq.png +0 -0
- data/vendor/assets/images/flags/ir.png +0 -0
- data/vendor/assets/images/flags/is.png +0 -0
- data/vendor/assets/images/flags/it.png +0 -0
- data/vendor/assets/images/flags/ja.png +0 -0
- data/vendor/assets/images/flags/jm.png +0 -0
- data/vendor/assets/images/flags/jo.png +0 -0
- data/vendor/assets/images/flags/ke.png +0 -0
- data/vendor/assets/images/flags/kg.png +0 -0
- data/vendor/assets/images/flags/kh.png +0 -0
- data/vendor/assets/images/flags/ki.png +0 -0
- data/vendor/assets/images/flags/km.png +0 -0
- data/vendor/assets/images/flags/kn.png +0 -0
- data/vendor/assets/images/flags/kp.png +0 -0
- data/vendor/assets/images/flags/kr.png +0 -0
- data/vendor/assets/images/flags/kw.png +0 -0
- data/vendor/assets/images/flags/ky.png +0 -0
- data/vendor/assets/images/flags/kz.png +0 -0
- data/vendor/assets/images/flags/la.png +0 -0
- data/vendor/assets/images/flags/lb.png +0 -0
- data/vendor/assets/images/flags/lc.png +0 -0
- data/vendor/assets/images/flags/li.png +0 -0
- data/vendor/assets/images/flags/lk.png +0 -0
- data/vendor/assets/images/flags/lr.png +0 -0
- data/vendor/assets/images/flags/ls.png +0 -0
- data/vendor/assets/images/flags/lt.png +0 -0
- data/vendor/assets/images/flags/lu.png +0 -0
- data/vendor/assets/images/flags/lv.png +0 -0
- data/vendor/assets/images/flags/ly.png +0 -0
- data/vendor/assets/images/flags/ma.png +0 -0
- data/vendor/assets/images/flags/mc.png +0 -0
- data/vendor/assets/images/flags/md.png +0 -0
- data/vendor/assets/images/flags/me.png +0 -0
- data/vendor/assets/images/flags/mg.png +0 -0
- data/vendor/assets/images/flags/mh.png +0 -0
- data/vendor/assets/images/flags/mk.png +0 -0
- data/vendor/assets/images/flags/ml.png +0 -0
- data/vendor/assets/images/flags/mm.png +0 -0
- data/vendor/assets/images/flags/mn.png +0 -0
- data/vendor/assets/images/flags/mo.png +0 -0
- data/vendor/assets/images/flags/mp.png +0 -0
- data/vendor/assets/images/flags/mq.png +0 -0
- data/vendor/assets/images/flags/mr.png +0 -0
- data/vendor/assets/images/flags/ms.png +0 -0
- data/vendor/assets/images/flags/mt.png +0 -0
- data/vendor/assets/images/flags/mu.png +0 -0
- data/vendor/assets/images/flags/mv.png +0 -0
- data/vendor/assets/images/flags/mw.png +0 -0
- data/vendor/assets/images/flags/mx.png +0 -0
- data/vendor/assets/images/flags/my.png +0 -0
- data/vendor/assets/images/flags/mz.png +0 -0
- data/vendor/assets/images/flags/na.png +0 -0
- data/vendor/assets/images/flags/nc.png +0 -0
- data/vendor/assets/images/flags/ne.png +0 -0
- data/vendor/assets/images/flags/nf.png +0 -0
- data/vendor/assets/images/flags/ng.png +0 -0
- data/vendor/assets/images/flags/ni.png +0 -0
- data/vendor/assets/images/flags/nl.png +0 -0
- data/vendor/assets/images/flags/no.png +0 -0
- data/vendor/assets/images/flags/np.png +0 -0
- data/vendor/assets/images/flags/nr.png +0 -0
- data/vendor/assets/images/flags/nu.png +0 -0
- data/vendor/assets/images/flags/nz.png +0 -0
- data/vendor/assets/images/flags/om.png +0 -0
- data/vendor/assets/images/flags/pa.png +0 -0
- data/vendor/assets/images/flags/pe.png +0 -0
- data/vendor/assets/images/flags/pf.png +0 -0
- data/vendor/assets/images/flags/pg.png +0 -0
- data/vendor/assets/images/flags/ph.png +0 -0
- data/vendor/assets/images/flags/pk.png +0 -0
- data/vendor/assets/images/flags/pl.png +0 -0
- data/vendor/assets/images/flags/pm.png +0 -0
- data/vendor/assets/images/flags/pn.png +0 -0
- data/vendor/assets/images/flags/pr.png +0 -0
- data/vendor/assets/images/flags/ps.png +0 -0
- data/vendor/assets/images/flags/pt.png +0 -0
- data/vendor/assets/images/flags/pw.png +0 -0
- data/vendor/assets/images/flags/py.png +0 -0
- data/vendor/assets/images/flags/qa.png +0 -0
- data/vendor/assets/images/flags/re.png +0 -0
- data/vendor/assets/images/flags/ro.png +0 -0
- data/vendor/assets/images/flags/rs.png +0 -0
- data/vendor/assets/images/flags/ru.png +0 -0
- data/vendor/assets/images/flags/rw.png +0 -0
- data/vendor/assets/images/flags/sa.png +0 -0
- data/vendor/assets/images/flags/sb.png +0 -0
- data/vendor/assets/images/flags/sc.png +0 -0
- data/vendor/assets/images/flags/scotland.png +0 -0
- data/vendor/assets/images/flags/sd.png +0 -0
- data/vendor/assets/images/flags/se.png +0 -0
- data/vendor/assets/images/flags/sg.png +0 -0
- data/vendor/assets/images/flags/sh.png +0 -0
- data/vendor/assets/images/flags/si.png +0 -0
- data/vendor/assets/images/flags/sj.png +0 -0
- data/vendor/assets/images/flags/sk.png +0 -0
- data/vendor/assets/images/flags/sl.png +0 -0
- data/vendor/assets/images/flags/sm.png +0 -0
- data/vendor/assets/images/flags/sn.png +0 -0
- data/vendor/assets/images/flags/so.png +0 -0
- data/vendor/assets/images/flags/sr.png +0 -0
- data/vendor/assets/images/flags/st.png +0 -0
- data/vendor/assets/images/flags/sv.png +0 -0
- data/vendor/assets/images/flags/sy.png +0 -0
- data/vendor/assets/images/flags/sz.png +0 -0
- data/vendor/assets/images/flags/tc.png +0 -0
- data/vendor/assets/images/flags/td.png +0 -0
- data/vendor/assets/images/flags/tf.png +0 -0
- data/vendor/assets/images/flags/tg.png +0 -0
- data/vendor/assets/images/flags/th.png +0 -0
- data/vendor/assets/images/flags/tj.png +0 -0
- data/vendor/assets/images/flags/tk.png +0 -0
- data/vendor/assets/images/flags/tl.png +0 -0
- data/vendor/assets/images/flags/tm.png +0 -0
- data/vendor/assets/images/flags/tn.png +0 -0
- data/vendor/assets/images/flags/to.png +0 -0
- data/vendor/assets/images/flags/tr.png +0 -0
- data/vendor/assets/images/flags/tt.png +0 -0
- data/vendor/assets/images/flags/tv.png +0 -0
- data/vendor/assets/images/flags/tw.png +0 -0
- data/vendor/assets/images/flags/tz.png +0 -0
- data/vendor/assets/images/flags/ua.png +0 -0
- data/vendor/assets/images/flags/ug.png +0 -0
- data/vendor/assets/images/flags/um.png +0 -0
- data/vendor/assets/images/flags/us.png +0 -0
- data/vendor/assets/images/flags/uy.png +0 -0
- data/vendor/assets/images/flags/uz.png +0 -0
- data/vendor/assets/images/flags/va.png +0 -0
- data/vendor/assets/images/flags/vc.png +0 -0
- data/vendor/assets/images/flags/ve.png +0 -0
- data/vendor/assets/images/flags/vg.png +0 -0
- data/vendor/assets/images/flags/vi.png +0 -0
- data/vendor/assets/images/flags/vn.png +0 -0
- data/vendor/assets/images/flags/vu.png +0 -0
- data/vendor/assets/images/flags/wales.png +0 -0
- data/vendor/assets/images/flags/wf.png +0 -0
- data/vendor/assets/images/flags/ws.png +0 -0
- data/vendor/assets/images/flags/ye.png +0 -0
- data/vendor/assets/images/flags/yt.png +0 -0
- data/vendor/assets/images/flags/za.png +0 -0
- data/vendor/assets/images/flags/zm.png +0 -0
- data/vendor/assets/images/flags/zw.png +0 -0
- data/vendor/assets/images/jquery.formalize/button.png +0 -0
- data/vendor/assets/images/jquery.formalize/select_arrow.gif +0 -0
- data/vendor/assets/javascripts/jquery.formalize.min.js +1 -0
- data/vendor/assets/javascripts/jquery.validate/additional-methods.min.js +28 -0
- data/vendor/assets/javascripts/jquery.validate/jquery.validate.min.js +51 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ar.js +24 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_bg.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ca.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_cn.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_cs.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_da.js +20 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_de.js +21 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_el.js +24 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_es.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_fa.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_fi.js +21 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_fr.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ge.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_he.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_hu.js +21 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_it.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ja.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_kk.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_lt.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_lv.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_nl.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_no.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_pl.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ptbr.js +30 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ptpt.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ro.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ru.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_se.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_si.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_sk.js +21 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_sr.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_th.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_tr.js +24 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_tw.js +24 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_ua.js +24 -0
- data/vendor/assets/javascripts/jquery.validate/localization/messages_vi.js +23 -0
- data/vendor/assets/javascripts/jquery.validate/localization/methods_de.js +12 -0
- data/vendor/assets/javascripts/jquery.validate/localization/methods_nl.js +9 -0
- data/vendor/assets/javascripts/jquery.validate/localization/methods_pt.js +9 -0
- data/vendor/assets/stylesheets/jquery.formalize.css.erb +364 -0
- metadata +557 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NTg2YTljYzkxZDFiOWJlMTBlYTc1NzEwZjJlYzU3ODE0Nzk2MzNhNg==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MzhmOWQyZTc5MmFkOWZkOGIzYzQyYjRlYzE4NDgxNjMxMDdjNGE4NA==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MzBmZDNiOTc5MTA2YTI1ZThkZGJiMzBkZTg3ZWY4NDA5ZmQ0ZGRiOThjNWRl
|
10
|
+
ZGQ2M2JkZWU4YTU0ZjIwNzBkOGJmOTYxZjAxMDBkNmQzMWNlNWY5YTE4ODcz
|
11
|
+
N2U5ZGNlOWExNTNkMTllZWU5ODA1Y2FiNzYzZjgzNjAzZjRlNTE=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
YTBkM2NlMDY2MzMxY2U0ZjhlN2FjM2YzMzZiMDZmNGRhYzIzZmNjZjAwNGQx
|
14
|
+
ODE2MjhjZGU2ZjAyNDE5MjEyYzdiOGRiNmY0NGYyNTJmZTdjMjkyOTUxNDgy
|
15
|
+
N2NmNmEzNDg2ODg1YWUwNjE5YTE1Y2YwZjc3NGM4MTVlOGU5N2M=
|
data/LICENSE
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
Copyright (c) 2007-2013, Spree Commerce, Inc. and other contributors
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without modification,
|
5
|
+
are permitted provided that the following conditions are met:
|
6
|
+
|
7
|
+
* Redistributions of source code must retain the above copyright notice,
|
8
|
+
this list of conditions and the following disclaimer.
|
9
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
10
|
+
this list of conditions and the following disclaimer in the documentation
|
11
|
+
and/or other materials provided with the distribution.
|
12
|
+
* Neither the name Spree nor the names of its contributors may be used to
|
13
|
+
endorse or promote products derived from this software without specific
|
14
|
+
prior written permission.
|
15
|
+
|
16
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
17
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
18
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
19
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
20
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
21
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
22
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
23
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
24
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
25
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
26
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/README.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Core
|
2
|
+
====
|
3
|
+
|
4
|
+
Core e-commerce functionality for the Spree project
|
5
|
+
|
6
|
+
|
7
|
+
Testing
|
8
|
+
-------
|
9
|
+
|
10
|
+
Create the test site
|
11
|
+
|
12
|
+
bundle exec rake test_app
|
13
|
+
|
14
|
+
Run the tests
|
15
|
+
|
16
|
+
bundle exec rake spec
|
17
|
+
|
18
|
+
Run the coverage. After the rake task open coverage/index.html
|
19
|
+
|
20
|
+
bundle exec rake rcov
|
21
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,9 @@
|
|
1
|
+
Spree.ready ($) ->
|
2
|
+
if ($ 'form#update-cart').is('*')
|
3
|
+
($ 'form#update-cart a.delete').show().one 'click', ->
|
4
|
+
($ this).parents('.line-item').first().find('input.line_item_quantity').val 0
|
5
|
+
($ this).parents('form').first().submit()
|
6
|
+
false
|
7
|
+
|
8
|
+
($ 'form#update-cart').submit ->
|
9
|
+
($ 'form#update-cart #update-button').attr('disabled', true)
|
@@ -0,0 +1,105 @@
|
|
1
|
+
Spree.disableSaveOnClick = ->
|
2
|
+
($ 'form.edit_order').submit ->
|
3
|
+
($ this).find(':submit, :image').attr('disabled', true).removeClass('primary').addClass 'disabled'
|
4
|
+
|
5
|
+
Spree.Checkout = {}
|
6
|
+
|
7
|
+
Spree.ready ($) ->
|
8
|
+
if ($ '#checkout_form_address').is('*')
|
9
|
+
($ '#checkout_form_address').validate()
|
10
|
+
|
11
|
+
getCountryId = (region) ->
|
12
|
+
$('p#' + region + 'country select').val()
|
13
|
+
|
14
|
+
updateState = (region) ->
|
15
|
+
countryId = getCountryId(region)
|
16
|
+
if countryId?
|
17
|
+
unless Spree.Checkout[countryId]?
|
18
|
+
$.get Spree.routes.states_search + "/?country_id=#{countryId}", (data) ->
|
19
|
+
Spree.Checkout[countryId] =
|
20
|
+
states: data.states
|
21
|
+
states_required: data.states_required
|
22
|
+
fillStates(Spree.Checkout[countryId], region)
|
23
|
+
else
|
24
|
+
fillStates(Spree.Checkout[countryId], region)
|
25
|
+
|
26
|
+
fillStates = (data, region) ->
|
27
|
+
statesRequired = data.states_required
|
28
|
+
states = data.states
|
29
|
+
|
30
|
+
statePara = ($ 'p#' + region + 'state')
|
31
|
+
stateSelect = statePara.find('select')
|
32
|
+
stateInput = statePara.find('input')
|
33
|
+
stateSpanRequired = statePara.find('state-required')
|
34
|
+
if states.length > 0
|
35
|
+
selected = parseInt stateSelect.val()
|
36
|
+
stateSelect.html ''
|
37
|
+
statesWithBlank = [{ name: '', id: ''}].concat(states)
|
38
|
+
$.each statesWithBlank, (idx, state) ->
|
39
|
+
opt = ($ document.createElement('option')).attr('value', state.id).html(state.name)
|
40
|
+
opt.prop 'selected', true if selected is state.id
|
41
|
+
stateSelect.append opt
|
42
|
+
|
43
|
+
stateSelect.prop('disabled', false).show()
|
44
|
+
stateInput.hide().prop 'disabled', true
|
45
|
+
statePara.show()
|
46
|
+
stateSpanRequired.show()
|
47
|
+
else
|
48
|
+
stateSelect.hide().prop 'disabled', true
|
49
|
+
stateInput.show()
|
50
|
+
if statesRequired
|
51
|
+
stateSpanRequired.show()
|
52
|
+
else
|
53
|
+
stateInput.val ''
|
54
|
+
stateSpanRequired.hide()
|
55
|
+
statePara.toggle(!!statesRequired)
|
56
|
+
stateInput.prop('disabled', !statesRequired)
|
57
|
+
|
58
|
+
($ 'p#bcountry select').change ->
|
59
|
+
updateState 'b'
|
60
|
+
if $('input#order_use_billing').is(':checked')
|
61
|
+
countryId = $('#bcountry select').val()
|
62
|
+
$('#scountry select').val(countryId).change()
|
63
|
+
|
64
|
+
($ 'p#bstate input').change ->
|
65
|
+
if $('input#order_use_billing').is(':checked')
|
66
|
+
$('#sstate input').val($('#sstate input').val())
|
67
|
+
|
68
|
+
($ 'p#bstate select').change ->
|
69
|
+
console.log("triggering right field")
|
70
|
+
if $('input#order_use_billing').is(':checked')
|
71
|
+
$('p#sstate select').val($('#bstate select').val())
|
72
|
+
|
73
|
+
|
74
|
+
($ 'p#scountry select').change ->
|
75
|
+
updateState 's'
|
76
|
+
|
77
|
+
updateState 'b'
|
78
|
+
updateState 's'
|
79
|
+
|
80
|
+
($ 'input#order_use_billing').click(->
|
81
|
+
if ($ this).is(':checked')
|
82
|
+
($ '#shipping .inner').hide()
|
83
|
+
($ '#shipping .inner input, #shipping .inner select').prop 'disabled', true
|
84
|
+
else
|
85
|
+
($ '#shipping .inner').show()
|
86
|
+
($ '#shipping .inner input, #shipping .inner select').prop 'disabled', false
|
87
|
+
updateState('s')
|
88
|
+
).triggerHandler 'click'
|
89
|
+
|
90
|
+
if ($ '#checkout_form_payment').is('*')
|
91
|
+
($ 'input[type="radio"][name="order[payments_attributes][][payment_method_id]"]').click(->
|
92
|
+
($ '#payment-methods li').hide()
|
93
|
+
($ '#payment_method_' + @value).show() if @checked
|
94
|
+
)
|
95
|
+
|
96
|
+
($ document).on('click', '#cvv_link', (event) ->
|
97
|
+
windowName = 'cvv_info'
|
98
|
+
windowOptions = 'left=20,top=20,width=500,height=500,toolbar=0,resizable=0,scrollbars=1'
|
99
|
+
window.open(($ this).attr('href'), windowName, windowOptions)
|
100
|
+
event.preventDefault()
|
101
|
+
)
|
102
|
+
|
103
|
+
# Activate already checked payment method if form is re-rendered
|
104
|
+
# i.e. if user enters invalid data
|
105
|
+
($ 'input[type="radio"]:checked').click()
|
@@ -0,0 +1,42 @@
|
|
1
|
+
Spree.addImageHandlers = ->
|
2
|
+
thumbnails = ($ '#product-images ul.thumbnails')
|
3
|
+
($ '#main-image').data 'selectedThumb', ($ '#main-image img').attr('src')
|
4
|
+
thumbnails.find('li').eq(0).addClass 'selected'
|
5
|
+
thumbnails.find('a').on 'click', (event) ->
|
6
|
+
($ '#main-image').data 'selectedThumb', ($ event.currentTarget).attr('href')
|
7
|
+
($ '#main-image').data 'selectedThumbId', ($ event.currentTarget).parent().attr('id')
|
8
|
+
($ this).mouseout ->
|
9
|
+
thumbnails.find('li').removeClass 'selected'
|
10
|
+
($ event.currentTarget).parent('li').addClass 'selected'
|
11
|
+
false
|
12
|
+
|
13
|
+
thumbnails.find('li').on 'mouseenter', (event) ->
|
14
|
+
($ '#main-image img').attr 'src', ($ event.currentTarget).find('a').attr('href')
|
15
|
+
|
16
|
+
thumbnails.find('li').on 'mouseleave', (event) ->
|
17
|
+
($ '#main-image img').attr 'src', ($ '#main-image').data('selectedThumb')
|
18
|
+
|
19
|
+
Spree.showVariantImages = (variantId) ->
|
20
|
+
($ 'li.vtmb').hide()
|
21
|
+
($ 'li.vtmb-' + variantId).show()
|
22
|
+
currentThumb = ($ '#' + ($ '#main-image').data('selectedThumbId'))
|
23
|
+
if not currentThumb.hasClass('vtmb-' + variantId)
|
24
|
+
thumb = ($ ($ 'ul.thumbnails li:visible.vtmb').eq(0))
|
25
|
+
thumb = ($ ($ 'ul.thumbnails li:visible').eq(0)) unless thumb.length > 0
|
26
|
+
newImg = thumb.find('a').attr('href')
|
27
|
+
($ 'ul.thumbnails li').removeClass 'selected'
|
28
|
+
thumb.addClass 'selected'
|
29
|
+
($ '#main-image img').attr 'src', newImg
|
30
|
+
($ '#main-image').data 'selectedThumb', newImg
|
31
|
+
($ '#main-image').data 'selectedThumbId', thumb.attr('id')
|
32
|
+
|
33
|
+
Spree.updateVariantPrice = (variant) ->
|
34
|
+
variantPrice = variant.data('price')
|
35
|
+
($ '.price.selling').text(variantPrice) if variantPrice
|
36
|
+
|
37
|
+
$ ->
|
38
|
+
Spree.addImageHandlers()
|
39
|
+
Spree.showVariantImages ($ '#product-variants input[type="radio"]').eq(0).attr('value') if ($ '#product-variants input[type="radio"]').length > 0
|
40
|
+
($ '#product-variants input[type="radio"]').click (event) ->
|
41
|
+
Spree.showVariantImages @value
|
42
|
+
Spree.updateVariantPrice ($ this)
|
@@ -0,0 +1,303 @@
|
|
1
|
+
/* Font Awesome
|
2
|
+
the iconic font designed for use with Twitter Bootstrap
|
3
|
+
-------------------------------------------------------
|
4
|
+
The full suite of pictographic icons, examples, and documentation
|
5
|
+
can be found at: http://fortawesome.github.com/Font-Awesome/
|
6
|
+
|
7
|
+
License
|
8
|
+
-------------------------------------------------------
|
9
|
+
The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
|
10
|
+
http://creativecommons.org/licenses/by/3.0/ A mention of
|
11
|
+
'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
|
12
|
+
source code is considered acceptable attribution (most common on the web).
|
13
|
+
If human readable source code is not available to the end user, a mention in
|
14
|
+
an 'About' or 'Credits' screen is considered acceptable (most common in desktop
|
15
|
+
or mobile software).
|
16
|
+
|
17
|
+
Contact
|
18
|
+
-------------------------------------------------------
|
19
|
+
Email: dave@davegandy.com
|
20
|
+
Twitter: http://twitter.com/fortaweso_me
|
21
|
+
Work: http://lemonwi.se co-founder
|
22
|
+
|
23
|
+
*/
|
24
|
+
@font-face {
|
25
|
+
font-family: "FontAwesome";
|
26
|
+
src: font-url('fontawesome-webfont.eot');
|
27
|
+
src: font-url('fontawesome-webfont.eot?#iefix') format('eot'),font-url('fontawesome-webfont.woff') format('woff'), font-url('fontawesome-webfont.ttf') format('truetype'), font-url('fontawesome-webfont.svg#FontAwesome') format('svg');
|
28
|
+
font-weight: normal;
|
29
|
+
font-style: normal;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* Font Awesome styles
|
33
|
+
------------------------------------------------------- */
|
34
|
+
[class^="icon-"]:before, [class*=" icon-"]:before {
|
35
|
+
font-family: FontAwesome;
|
36
|
+
font-weight: normal;
|
37
|
+
font-style: normal;
|
38
|
+
display: inline-block;
|
39
|
+
text-decoration: inherit;
|
40
|
+
}
|
41
|
+
a [class^="icon-"], a [class*=" icon-"] {
|
42
|
+
display: inline-block;
|
43
|
+
text-decoration: inherit;
|
44
|
+
}
|
45
|
+
/* makes the font 33% larger relative to the icon container */
|
46
|
+
.icon-large:before {
|
47
|
+
vertical-align: top;
|
48
|
+
font-size: 1.3333333333333333em;
|
49
|
+
}
|
50
|
+
.btn [class^="icon-"], .btn [class*=" icon-"] {
|
51
|
+
/* keeps button heights with and without icons the same */
|
52
|
+
|
53
|
+
line-height: .9em;
|
54
|
+
}
|
55
|
+
li [class^="icon-"], li [class*=" icon-"] {
|
56
|
+
display: inline-block;
|
57
|
+
width: 1.25em;
|
58
|
+
text-align: center;
|
59
|
+
}
|
60
|
+
li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
|
61
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
62
|
+
|
63
|
+
width: 1.875em;
|
64
|
+
}
|
65
|
+
li[class^="icon-"], li[class*=" icon-"] {
|
66
|
+
margin-left: 0;
|
67
|
+
list-style-type: none;
|
68
|
+
}
|
69
|
+
li[class^="icon-"]:before, li[class*=" icon-"]:before {
|
70
|
+
text-indent: -2em;
|
71
|
+
text-align: center;
|
72
|
+
}
|
73
|
+
li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
|
74
|
+
text-indent: -1.3333333333333333em;
|
75
|
+
}
|
76
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
77
|
+
readers do not read off random characters that represent icons */
|
78
|
+
.icon-glass:before { content: "\f000"; }
|
79
|
+
.icon-music:before { content: "\f001"; }
|
80
|
+
.icon-search:before { content: "\f002"; }
|
81
|
+
.icon-envelope:before { content: "\f003"; }
|
82
|
+
.icon-heart:before { content: "\f004"; }
|
83
|
+
.icon-star:before { content: "\f005"; }
|
84
|
+
.icon-star-empty:before { content: "\f006"; }
|
85
|
+
.icon-user:before { content: "\f007"; }
|
86
|
+
.icon-film:before { content: "\f008"; }
|
87
|
+
.icon-th-large:before { content: "\f009"; }
|
88
|
+
.icon-th:before { content: "\f00a"; }
|
89
|
+
.icon-th-list:before { content: "\f00b"; }
|
90
|
+
.icon-ok:before { content: "\f00c"; }
|
91
|
+
.icon-remove:before { content: "\f00d"; }
|
92
|
+
.icon-zoom-in:before { content: "\f00e"; }
|
93
|
+
|
94
|
+
.icon-zoom-out:before { content: "\f010"; }
|
95
|
+
.icon-off:before { content: "\f011"; }
|
96
|
+
.icon-signal:before { content: "\f012"; }
|
97
|
+
.icon-cog:before { content: "\f013"; }
|
98
|
+
.icon-trash:before { content: "\f014"; }
|
99
|
+
.icon-home:before { content: "\f015"; }
|
100
|
+
.icon-file:before { content: "\f016"; }
|
101
|
+
.icon-time:before { content: "\f017"; }
|
102
|
+
.icon-road:before { content: "\f018"; }
|
103
|
+
.icon-download-alt:before { content: "\f019"; }
|
104
|
+
.icon-download:before { content: "\f01a"; }
|
105
|
+
.icon-upload:before { content: "\f01b"; }
|
106
|
+
.icon-inbox:before { content: "\f01c"; }
|
107
|
+
.icon-play-circle:before { content: "\f01d"; }
|
108
|
+
.icon-repeat:before { content: "\f01e"; }
|
109
|
+
|
110
|
+
/* \f020 doesn't work in Safari. all shifted one down */
|
111
|
+
.icon-refresh:before { content: "\f021"; }
|
112
|
+
.icon-list-alt:before { content: "\f022"; }
|
113
|
+
.icon-lock:before { content: "\f023"; }
|
114
|
+
.icon-flag:before { content: "\f024"; }
|
115
|
+
.icon-headphones:before { content: "\f025"; }
|
116
|
+
.icon-volume-off:before { content: "\f026"; }
|
117
|
+
.icon-volume-down:before { content: "\f027"; }
|
118
|
+
.icon-volume-up:before { content: "\f028"; }
|
119
|
+
.icon-qrcode:before { content: "\f029"; }
|
120
|
+
.icon-barcode:before { content: "\f02a"; }
|
121
|
+
.icon-tag:before { content: "\f02b"; }
|
122
|
+
.icon-tags:before { content: "\f02c"; }
|
123
|
+
.icon-book:before { content: "\f02d"; }
|
124
|
+
.icon-bookmark:before { content: "\f02e"; }
|
125
|
+
.icon-print:before { content: "\f02f"; }
|
126
|
+
|
127
|
+
.icon-camera:before { content: "\f030"; }
|
128
|
+
.icon-font:before { content: "\f031"; }
|
129
|
+
.icon-bold:before { content: "\f032"; }
|
130
|
+
.icon-italic:before { content: "\f033"; }
|
131
|
+
.icon-text-height:before { content: "\f034"; }
|
132
|
+
.icon-text-width:before { content: "\f035"; }
|
133
|
+
.icon-align-left:before { content: "\f036"; }
|
134
|
+
.icon-align-center:before { content: "\f037"; }
|
135
|
+
.icon-align-right:before { content: "\f038"; }
|
136
|
+
.icon-align-justify:before { content: "\f039"; }
|
137
|
+
.icon-list:before { content: "\f03a"; }
|
138
|
+
.icon-indent-left:before { content: "\f03b"; }
|
139
|
+
.icon-indent-right:before { content: "\f03c"; }
|
140
|
+
.icon-facetime-video:before { content: "\f03d"; }
|
141
|
+
.icon-picture:before { content: "\f03e"; }
|
142
|
+
|
143
|
+
.icon-pencil:before { content: "\f040"; }
|
144
|
+
.icon-map-marker:before { content: "\f041"; }
|
145
|
+
.icon-adjust:before { content: "\f042"; }
|
146
|
+
.icon-tint:before { content: "\f043"; }
|
147
|
+
.icon-edit:before { content: "\f044"; }
|
148
|
+
.icon-share:before { content: "\f045"; }
|
149
|
+
.icon-check:before { content: "\f046"; }
|
150
|
+
.icon-move:before { content: "\f047"; }
|
151
|
+
.icon-step-backward:before { content: "\f048"; }
|
152
|
+
.icon-fast-backward:before { content: "\f049"; }
|
153
|
+
.icon-backward:before { content: "\f04a"; }
|
154
|
+
.icon-play:before { content: "\f04b"; }
|
155
|
+
.icon-pause:before { content: "\f04c"; }
|
156
|
+
.icon-stop:before { content: "\f04d"; }
|
157
|
+
.icon-forward:before { content: "\f04e"; }
|
158
|
+
|
159
|
+
.icon-fast-forward:before { content: "\f050"; }
|
160
|
+
.icon-step-forward:before { content: "\f051"; }
|
161
|
+
.icon-eject:before { content: "\f052"; }
|
162
|
+
.icon-chevron-left:before { content: "\f053"; }
|
163
|
+
.icon-chevron-right:before { content: "\f054"; }
|
164
|
+
.icon-plus-sign:before { content: "\f055"; }
|
165
|
+
.icon-minus-sign:before { content: "\f056"; }
|
166
|
+
.icon-remove-sign:before { content: "\f057"; }
|
167
|
+
.icon-ok-sign:before { content: "\f058"; }
|
168
|
+
.icon-question-sign:before { content: "\f059"; }
|
169
|
+
.icon-info-sign:before { content: "\f05a"; }
|
170
|
+
.icon-screenshot:before { content: "\f05b"; }
|
171
|
+
.icon-remove-circle:before { content: "\f05c"; }
|
172
|
+
.icon-ok-circle:before { content: "\f05d"; }
|
173
|
+
.icon-ban-circle:before { content: "\f05e"; }
|
174
|
+
|
175
|
+
.icon-arrow-left:before { content: "\f060"; }
|
176
|
+
.icon-arrow-right:before { content: "\f061"; }
|
177
|
+
.icon-arrow-up:before { content: "\f062"; }
|
178
|
+
.icon-arrow-down:before { content: "\f063"; }
|
179
|
+
.icon-share-alt:before { content: "\f064"; }
|
180
|
+
.icon-resize-full:before { content: "\f065"; }
|
181
|
+
.icon-resize-small:before { content: "\f066"; }
|
182
|
+
.icon-plus:before { content: "\f067"; }
|
183
|
+
.icon-minus:before { content: "\f068"; }
|
184
|
+
.icon-asterisk:before { content: "\f069"; }
|
185
|
+
.icon-exclamation-sign:before { content: "\f06a"; }
|
186
|
+
.icon-gift:before { content: "\f06b"; }
|
187
|
+
.icon-leaf:before { content: "\f06c"; }
|
188
|
+
.icon-fire:before { content: "\f06d"; }
|
189
|
+
.icon-eye-open:before { content: "\f06e"; }
|
190
|
+
|
191
|
+
.icon-eye-close:before { content: "\f070"; }
|
192
|
+
.icon-warning-sign:before { content: "\f071"; }
|
193
|
+
.icon-plane:before { content: "\f072"; }
|
194
|
+
.icon-calendar:before { content: "\f073"; }
|
195
|
+
.icon-random:before { content: "\f074"; }
|
196
|
+
.icon-comment:before { content: "\f075"; }
|
197
|
+
.icon-magnet:before { content: "\f076"; }
|
198
|
+
.icon-chevron-up:before { content: "\f077"; }
|
199
|
+
.icon-chevron-down:before { content: "\f078"; }
|
200
|
+
.icon-retweet:before { content: "\f079"; }
|
201
|
+
.icon-shopping-cart:before { content: "\f07a"; }
|
202
|
+
.icon-folder-close:before { content: "\f07b"; }
|
203
|
+
.icon-folder-open:before { content: "\f07c"; }
|
204
|
+
.icon-resize-vertical:before { content: "\f07d"; }
|
205
|
+
.icon-resize-horizontal:before { content: "\f07e"; }
|
206
|
+
|
207
|
+
.icon-bar-chart:before { content: "\f080"; }
|
208
|
+
.icon-twitter-sign:before { content: "\f081"; }
|
209
|
+
.icon-facebook-sign:before { content: "\f082"; }
|
210
|
+
.icon-camera-retro:before { content: "\f083"; }
|
211
|
+
.icon-key:before { content: "\f084"; }
|
212
|
+
.icon-cogs:before { content: "\f085"; }
|
213
|
+
.icon-comments:before { content: "\f086"; }
|
214
|
+
.icon-thumbs-up:before { content: "\f087"; }
|
215
|
+
.icon-thumbs-down:before { content: "\f088"; }
|
216
|
+
.icon-star-half:before { content: "\f089"; }
|
217
|
+
.icon-heart-empty:before { content: "\f08a"; }
|
218
|
+
.icon-signout:before { content: "\f08b"; }
|
219
|
+
.icon-linkedin-sign:before { content: "\f08c"; }
|
220
|
+
.icon-pushpin:before { content: "\f08d"; }
|
221
|
+
.icon-external-link:before { content: "\f08e"; }
|
222
|
+
|
223
|
+
.icon-signin:before { content: "\f090"; }
|
224
|
+
.icon-trophy:before { content: "\f091"; }
|
225
|
+
.icon-github-sign:before { content: "\f092"; }
|
226
|
+
.icon-upload-alt:before { content: "\f093"; }
|
227
|
+
.icon-lemon:before { content: "\f094"; }
|
228
|
+
.icon-phone:before { content: "\f095"; }
|
229
|
+
.icon-check-empty:before { content: "\f096"; }
|
230
|
+
.icon-bookmark-empty:before { content: "\f097"; }
|
231
|
+
.icon-phone-sign:before { content: "\f098"; }
|
232
|
+
.icon-twitter:before { content: "\f099"; }
|
233
|
+
.icon-facebook:before { content: "\f09a"; }
|
234
|
+
.icon-github:before { content: "\f09b"; }
|
235
|
+
.icon-unlock:before { content: "\f09c"; }
|
236
|
+
.icon-credit-card:before { content: "\f09d"; }
|
237
|
+
.icon-rss:before { content: "\f09e"; }
|
238
|
+
|
239
|
+
.icon-hdd:before { content: "\f0a0"; }
|
240
|
+
.icon-bullhorn:before { content: "\f0a1"; }
|
241
|
+
.icon-bell:before { content: "\f0a2"; }
|
242
|
+
.icon-certificate:before { content: "\f0a3"; }
|
243
|
+
.icon-hand-right:before { content: "\f0a4"; }
|
244
|
+
.icon-hand-left:before { content: "\f0a5"; }
|
245
|
+
.icon-hand-up:before { content: "\f0a6"; }
|
246
|
+
.icon-hand-down:before { content: "\f0a7"; }
|
247
|
+
.icon-circle-arrow-left:before { content: "\f0a8"; }
|
248
|
+
.icon-circle-arrow-right:before { content: "\f0a9"; }
|
249
|
+
.icon-circle-arrow-up:before { content: "\f0aa"; }
|
250
|
+
.icon-circle-arrow-down:before { content: "\f0ab"; }
|
251
|
+
.icon-globe:before { content: "\f0ac"; }
|
252
|
+
.icon-wrench:before { content: "\f0ad"; }
|
253
|
+
.icon-tasks:before { content: "\f0ae"; }
|
254
|
+
|
255
|
+
.icon-filter:before { content: "\f0b0"; }
|
256
|
+
.icon-briefcase:before { content: "\f0b1"; }
|
257
|
+
.icon-fullscreen:before { content: "\f0b2"; }
|
258
|
+
|
259
|
+
.icon-group:before { content: "\f0c0"; }
|
260
|
+
.icon-link:before { content: "\f0c1"; }
|
261
|
+
.icon-cloud:before { content: "\f0c2"; }
|
262
|
+
.icon-beaker:before { content: "\f0c3"; }
|
263
|
+
.icon-cut:before { content: "\f0c4"; }
|
264
|
+
.icon-copy:before { content: "\f0c5"; }
|
265
|
+
.icon-paper-clip:before { content: "\f0c6"; }
|
266
|
+
.icon-save:before { content: "\f0c7"; }
|
267
|
+
.icon-sign-blank:before { content: "\f0c8"; }
|
268
|
+
.icon-reorder:before { content: "\f0c9"; }
|
269
|
+
.icon-list-ul:before { content: "\f0ca"; }
|
270
|
+
.icon-list-ol:before { content: "\f0cb"; }
|
271
|
+
.icon-strikethrough:before { content: "\f0cc"; }
|
272
|
+
.icon-underline:before { content: "\f0cd"; }
|
273
|
+
.icon-table:before { content: "\f0ce"; }
|
274
|
+
|
275
|
+
.icon-magic:before { content: "\f0d0"; }
|
276
|
+
.icon-truck:before { content: "\f0d1"; }
|
277
|
+
.icon-pinterest:before { content: "\f0d2"; }
|
278
|
+
.icon-pinterest-sign:before { content: "\f0d3"; }
|
279
|
+
.icon-google-plus-sign:before { content: "\f0d4"; }
|
280
|
+
.icon-google-plus:before { content: "\f0d5"; }
|
281
|
+
.icon-money:before { content: "\f0d6"; }
|
282
|
+
.icon-caret-down:before { content: "\f0d7"; }
|
283
|
+
.icon-caret-up:before { content: "\f0d8"; }
|
284
|
+
.icon-caret-left:before { content: "\f0d9"; }
|
285
|
+
.icon-caret-right:before { content: "\f0da"; }
|
286
|
+
.icon-columns:before { content: "\f0db"; }
|
287
|
+
.icon-sort:before { content: "\f0dc"; }
|
288
|
+
.icon-sort-down:before { content: "\f0dd"; }
|
289
|
+
.icon-sort-up:before { content: "\f0de"; }
|
290
|
+
|
291
|
+
.icon-envelope-alt:before { content: "\f0e0"; }
|
292
|
+
.icon-linkedin:before { content: "\f0e1"; }
|
293
|
+
.icon-undo:before { content: "\f0e2"; }
|
294
|
+
.icon-legal:before { content: "\f0e3"; }
|
295
|
+
.icon-dashboard:before { content: "\f0e4"; }
|
296
|
+
.icon-comment-alt:before { content: "\f0e5"; }
|
297
|
+
.icon-comments-alt:before { content: "\f0e6"; }
|
298
|
+
.icon-bolt:before { content: "\f0e7"; }
|
299
|
+
.icon-sitemap:before { content: "\f0e8"; }
|
300
|
+
.icon-umbrella:before { content: "\f0e9"; }
|
301
|
+
.icon-paste:before { content: "\f0ea"; }
|
302
|
+
|
303
|
+
.icon-user-md:before { content: "\f200"; }
|