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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/spree/backend/adjustments.js.coffee +1 -2
- data/app/assets/javascripts/spree/backend/admin.js.erb +136 -53
- data/app/assets/javascripts/spree/backend/checkouts/edit.js +1 -4
- data/app/assets/javascripts/spree/backend/index.html +15 -0
- data/app/assets/javascripts/spree/backend/line_items.js.coffee +1 -4
- data/app/assets/javascripts/spree/backend/line_items_on_order_edit.js.erb +3 -16
- data/app/assets/javascripts/spree/backend/option_type_autocomplete.js.erb +2 -4
- data/app/assets/javascripts/spree/backend/option_value_picker.js +44 -0
- data/app/assets/javascripts/spree/backend/orders/edit_form.js +2 -3
- data/app/assets/javascripts/spree/backend/payments/edit.js.coffee +8 -12
- data/app/assets/javascripts/spree/backend/product_picker.js +10 -8
- data/app/assets/javascripts/spree/backend/progress.coffee +0 -21
- data/app/assets/javascripts/spree/backend/promotions.js +50 -1
- data/app/assets/javascripts/spree/backend/select_payments.js.coffee +7 -0
- data/app/assets/javascripts/spree/backend/shipments.js.erb +10 -41
- data/app/assets/javascripts/spree/backend/spree-select2.js.erb +0 -15
- data/app/assets/javascripts/spree/backend/states.js +3 -3
- data/app/assets/javascripts/spree/backend/stock_movement.js.coffee +1 -2
- data/app/assets/javascripts/spree/backend/stock_transfer.js.coffee +3 -2
- data/app/assets/javascripts/spree/backend/taxon_autocomplete.js.erb +2 -4
- data/app/assets/javascripts/spree/backend/taxon_tree_menu.js.coffee +4 -4
- data/app/assets/javascripts/spree/backend/taxonomy.js.coffee +15 -34
- data/app/assets/javascripts/spree/backend/taxons.js.coffee +27 -8
- data/app/assets/javascripts/spree/backend/user_picker.js +2 -3
- data/app/assets/javascripts/spree/backend/variant_autocomplete.js.coffee.erb +1 -2
- data/app/assets/javascripts/spree/backend/variant_management.js.coffee +1 -2
- data/app/assets/javascripts/spree/backend.js +13 -15
- data/app/assets/stylesheets/spree/backend/components/_buttons.scss +37 -0
- data/app/assets/stylesheets/spree/backend/components/_filters.scss +25 -0
- data/app/assets/stylesheets/spree/backend/components/_icons.scss +257 -0
- data/app/assets/stylesheets/spree/backend/components/_labels.scss +49 -0
- data/app/assets/stylesheets/spree/backend/components/_main.scss +5 -0
- data/app/assets/stylesheets/spree/backend/components/_navigation.scss +10 -165
- data/app/assets/stylesheets/spree/backend/components/_page_header.scss +17 -0
- data/app/assets/stylesheets/spree/backend/components/_panels.scss +3 -0
- data/app/assets/stylesheets/spree/backend/components/_sidebar.scss +116 -20
- data/app/assets/stylesheets/spree/backend/components/_tables.scss +51 -0
- data/app/assets/stylesheets/spree/backend/components/_taxon_products_view.scss +70 -0
- data/app/assets/stylesheets/spree/backend/components/_variables.scss +12 -0
- data/app/assets/stylesheets/spree/backend/components/_wells.scss +3 -0
- data/app/assets/stylesheets/spree/backend/global/_variables.scss +37 -0
- data/app/assets/stylesheets/spree/backend/plugins/_jquery_ui.scss +109 -0
- data/app/{views/spree/admin/payments/source_forms/_check.html.erb → assets/stylesheets/spree/backend/plugins/_js_tree.scss} +0 -0
- data/app/assets/stylesheets/spree/backend/plugins/_select2.scss +84 -155
- data/app/assets/stylesheets/spree/backend/sections/_account.scss +16 -0
- data/app/assets/stylesheets/spree/backend/shared/_base.scss +15 -0
- data/app/assets/stylesheets/spree/backend/shared/_forms.scss +25 -287
- data/app/assets/stylesheets/spree/backend/shared/_typography.scss +5 -138
- data/app/assets/stylesheets/spree/backend/spree_admin.css.scss +26 -0
- data/app/assets/stylesheets/spree/backend.css +1 -7
- data/app/controllers/spree/admin/base_controller.rb +0 -2
- data/app/controllers/spree/admin/customer_returns_controller.rb +1 -1
- data/app/controllers/spree/admin/general_settings_controller.rb +5 -12
- data/app/controllers/spree/admin/images_controller.rb +33 -17
- data/app/controllers/spree/admin/log_entries_controller.rb +2 -2
- data/app/controllers/spree/admin/option_types_controller.rb +5 -3
- data/app/controllers/spree/admin/orders/customer_details_controller.rb +8 -8
- data/app/controllers/spree/admin/orders_controller.rb +4 -5
- data/app/controllers/spree/admin/payments_controller.rb +3 -3
- data/app/controllers/spree/admin/products_controller.rb +3 -6
- data/app/controllers/spree/admin/resource_controller.rb +1 -1
- data/app/controllers/spree/admin/root_controller.rb +1 -0
- data/app/controllers/spree/admin/search_controller.rb +12 -0
- data/app/controllers/spree/admin/state_changes_controller.rb +18 -0
- data/app/controllers/spree/admin/stock_locations_controller.rb +4 -13
- data/app/controllers/spree/admin/stock_transfers_controller.rb +6 -6
- data/app/controllers/spree/admin/tax_categories_controller.rb +0 -13
- data/app/controllers/spree/admin/taxonomies_controller.rb +1 -1
- data/app/controllers/spree/admin/taxons_controller.rb +53 -36
- data/app/controllers/spree/admin/users_controller.rb +44 -41
- data/app/controllers/spree/admin/variants_controller.rb +1 -1
- data/app/helpers/spree/admin/adjustments_helper.rb +0 -5
- data/app/helpers/spree/admin/base_helper.rb +41 -71
- data/app/helpers/spree/admin/navigation_helper.rb +96 -28
- data/app/helpers/spree/admin/orders_helper.rb +2 -2
- data/app/views/kaminari/_first_page.html.erb +11 -0
- data/app/views/kaminari/_gap.html.erb +8 -0
- data/app/views/kaminari/_last_page.html.erb +11 -0
- data/app/views/kaminari/_next_page.html.erb +15 -0
- data/app/views/kaminari/_page.html.erb +12 -0
- data/app/views/kaminari/_paginator.html.erb +21 -0
- data/app/views/kaminari/_prev_page.html.erb +15 -0
- data/app/views/spree/admin/adjustments/_adjustment.html.erb +10 -9
- data/app/views/spree/admin/adjustments/_adjustments_table.html.erb +19 -15
- data/app/views/spree/admin/adjustments/_form.html.erb +11 -15
- data/app/views/spree/admin/adjustments/edit.html.erb +9 -12
- data/app/views/spree/admin/adjustments/index.html.erb +19 -7
- data/app/views/spree/admin/adjustments/new.html.erb +7 -11
- data/app/views/spree/admin/countries/_form.html.erb +15 -19
- data/app/views/spree/admin/countries/edit.html.erb +4 -12
- data/app/views/spree/admin/countries/index.html.erb +6 -18
- data/app/views/spree/admin/countries/new.html.erb +3 -5
- data/app/views/spree/admin/customer_returns/_reimbursements_table.html.erb +4 -4
- data/app/views/spree/admin/customer_returns/_return_item_decision.html.erb +9 -10
- data/app/views/spree/admin/customer_returns/_return_item_selection.html.erb +5 -3
- data/app/views/spree/admin/customer_returns/edit.html.erb +17 -21
- data/app/views/spree/admin/customer_returns/index.html.erb +12 -16
- data/app/views/spree/admin/customer_returns/new.html.erb +29 -20
- data/app/views/spree/admin/general_settings/edit.html.erb +101 -90
- data/app/views/spree/admin/images/_form.html.erb +12 -12
- data/app/views/spree/admin/images/edit.html.erb +23 -21
- data/app/views/spree/admin/images/index.html.erb +25 -30
- data/app/views/spree/admin/images/new.html.erb +13 -11
- data/app/views/spree/admin/inventory_units/adjust.html.erb +29 -0
- data/app/views/spree/admin/log_entries/index.html.erb +9 -7
- data/app/views/spree/admin/option_types/_form.html.erb +10 -10
- data/app/views/spree/admin/option_types/_option_value_fields.html.erb +8 -10
- data/app/views/spree/admin/option_types/edit.html.erb +28 -23
- data/app/views/spree/admin/option_types/index.html.erb +16 -22
- data/app/views/spree/admin/option_types/new.html.erb +4 -3
- data/app/views/spree/admin/orders/_add_line_item.html.erb +9 -10
- data/app/views/spree/admin/orders/_add_product.html.erb +11 -9
- data/app/views/spree/admin/orders/_adjustments.html.erb +21 -7
- data/app/views/spree/admin/orders/_form.html.erb +23 -10
- data/app/views/spree/admin/orders/_line_item.html.erb +18 -6
- data/app/views/spree/admin/orders/_line_items.html.erb +45 -45
- data/app/views/spree/admin/orders/_line_items_edit_form.html.erb +10 -11
- data/app/views/spree/admin/orders/_risk_analysis.html.erb +13 -13
- data/app/views/spree/admin/orders/_shipment.html.erb +31 -39
- data/app/views/spree/admin/orders/_shipment_manifest.html.erb +23 -17
- data/app/views/spree/admin/orders/cart.html.erb +14 -15
- data/app/views/spree/admin/orders/customer_details/_form.html.erb +73 -52
- data/app/views/spree/admin/orders/customer_details/edit.html.erb +19 -15
- data/app/views/spree/admin/orders/edit.html.erb +12 -9
- data/app/views/spree/admin/orders/index.html.erb +145 -84
- data/app/views/spree/admin/payment_methods/_form.html.erb +26 -30
- data/app/views/spree/admin/payment_methods/edit.html.erb +5 -14
- data/app/views/spree/admin/payment_methods/index.html.erb +14 -29
- data/app/views/spree/admin/payment_methods/new.html.erb +4 -12
- data/app/views/spree/admin/payments/_capture_events.html.erb +2 -2
- data/app/views/spree/admin/payments/_form.html.erb +27 -30
- data/app/views/spree/admin/payments/_list.html.erb +20 -16
- data/app/views/spree/admin/payments/credit.html.erb +2 -2
- data/app/views/spree/admin/payments/index.html.erb +15 -13
- data/app/views/spree/admin/payments/new.html.erb +10 -11
- data/app/views/spree/admin/payments/show.html.erb +12 -9
- data/app/views/spree/admin/payments/source_forms/_gateway.html.erb +43 -47
- data/app/views/spree/admin/payments/source_views/_gateway.html.erb +19 -19
- data/app/views/spree/admin/product_properties/_product_property_fields.html.erb +5 -5
- data/app/views/spree/admin/product_properties/index.html.erb +5 -17
- data/app/views/spree/admin/products/_add_stock_form.html.erb +34 -25
- data/app/views/spree/admin/products/_autocomplete.js.erb +18 -7
- data/app/views/spree/admin/products/_form.html.erb +145 -150
- data/app/views/spree/admin/products/_properties_form.erb +2 -2
- data/app/views/spree/admin/products/edit.html.erb +3 -8
- data/app/views/spree/admin/products/index.html.erb +42 -63
- data/app/views/spree/admin/products/new.html.erb +29 -33
- data/app/views/spree/admin/products/stock.html.erb +67 -82
- data/app/views/spree/admin/promotion_actions/create.js.erb +1 -2
- data/app/views/spree/admin/promotion_actions/destroy.js.erb +1 -1
- data/app/views/spree/admin/promotion_categories/_form.html.erb +9 -9
- data/app/views/spree/admin/promotion_categories/edit.html.erb +2 -4
- data/app/views/spree/admin/promotion_categories/index.html.erb +27 -26
- data/app/views/spree/admin/promotion_categories/new.html.erb +1 -3
- data/app/views/spree/admin/promotion_rules/create.js.erb +1 -1
- data/app/views/spree/admin/promotion_rules/destroy.js.erb +1 -1
- data/app/views/spree/admin/promotions/_actions.html.erb +20 -17
- data/app/views/spree/admin/promotions/_form.html.erb +40 -39
- data/app/views/spree/admin/promotions/_promotion_action.html.erb +6 -6
- data/app/views/spree/admin/promotions/_promotion_rule.html.erb +7 -6
- data/app/views/spree/admin/promotions/_rules.html.erb +36 -35
- data/app/views/spree/admin/promotions/actions/_create_adjustment.html.erb +25 -23
- data/app/views/spree/admin/promotions/actions/_create_item_adjustments.html.erb +23 -21
- data/app/views/spree/admin/promotions/actions/_create_line_items.html.erb +16 -16
- data/app/views/spree/admin/promotions/calculators/_default_fields.html.erb +8 -6
- data/app/views/spree/admin/promotions/calculators/tiered_flat_rate/_fields.html.erb +29 -24
- data/app/views/spree/admin/promotions/calculators/tiered_percent/_fields.html.erb +29 -23
- data/app/views/spree/admin/promotions/edit.html.erb +16 -11
- data/app/views/spree/admin/promotions/index.html.erb +34 -58
- data/app/views/spree/admin/promotions/new.html.erb +4 -6
- data/app/views/spree/admin/promotions/rules/_item_total.html.erb +11 -7
- data/app/views/spree/admin/promotions/rules/_landing_page.html.erb +9 -5
- data/app/views/spree/admin/promotions/rules/_option_value.html.erb +42 -0
- data/app/views/spree/admin/promotions/rules/_product.html.erb +9 -8
- data/app/views/spree/admin/promotions/rules/_taxon.html.erb +9 -8
- data/app/views/spree/admin/promotions/rules/_user.html.erb +5 -3
- data/app/views/spree/admin/properties/_form.html.erb +9 -9
- data/app/views/spree/admin/properties/edit.html.erb +3 -9
- data/app/views/spree/admin/properties/index.html.erb +42 -52
- data/app/views/spree/admin/properties/new.html.erb +10 -9
- data/app/views/spree/admin/prototypes/_form.html.erb +25 -28
- data/app/views/spree/admin/prototypes/_prototypes.html.erb +4 -8
- data/app/views/spree/admin/prototypes/available.js.erb +1 -1
- data/app/views/spree/admin/prototypes/edit.html.erb +3 -11
- data/app/views/spree/admin/prototypes/index.html.erb +23 -36
- data/app/views/spree/admin/prototypes/new.html.erb +8 -7
- data/app/views/spree/admin/prototypes/show.html.erb +15 -18
- data/app/views/spree/admin/refund_reasons/edit.html.erb +2 -2
- data/app/views/spree/admin/refund_reasons/index.html.erb +2 -2
- data/app/views/spree/admin/refund_reasons/new.html.erb +1 -1
- data/app/views/spree/admin/refunds/edit.html.erb +14 -18
- data/app/views/spree/admin/refunds/new.html.erb +19 -27
- data/app/views/spree/admin/reimbursement_types/index.html.erb +6 -7
- data/app/views/spree/admin/reimbursements/edit.html.erb +25 -31
- data/app/views/spree/admin/reimbursements/index.html.erb +4 -10
- data/app/views/spree/admin/reimbursements/show.html.erb +32 -36
- data/app/views/spree/admin/reports/index.html.erb +4 -4
- data/app/views/spree/admin/reports/sales_total.html.erb +6 -11
- data/app/views/spree/admin/return_authorization_reasons/edit.html.erb +0 -0
- data/app/views/spree/admin/return_authorization_reasons/index.html.erb +2 -2
- data/app/views/spree/admin/return_authorization_reasons/new.html.erb +0 -0
- data/app/views/spree/admin/return_authorizations/_form.html.erb +20 -20
- data/app/views/spree/admin/return_authorizations/edit.html.erb +6 -6
- data/app/views/spree/admin/return_authorizations/index.html.erb +12 -12
- data/app/views/spree/admin/return_authorizations/new.html.erb +6 -10
- data/app/views/spree/admin/search/products.rabl +9 -0
- data/app/views/spree/admin/search/users.rabl +21 -21
- data/app/views/spree/admin/shared/_address_form.html.erb +22 -22
- data/app/views/spree/admin/shared/_alert.html.erb +8 -5
- data/app/views/spree/admin/shared/_calculator_fields.html.erb +13 -8
- data/app/views/spree/admin/shared/_content_header.html.erb +19 -16
- data/app/views/spree/admin/shared/_edit_resource_links.html.erb +3 -3
- data/app/views/spree/admin/shared/_error_messages.html.erb +12 -0
- data/app/views/spree/admin/shared/_head.html.erb +4 -8
- data/app/views/spree/admin/shared/_header.html.erb +27 -8
- data/app/views/spree/admin/shared/_index_table_options.html.erb +23 -0
- data/app/views/spree/admin/shared/_main_menu.html.erb +35 -0
- data/app/views/spree/admin/shared/_new_resource_links.html.erb +3 -3
- data/app/views/spree/admin/shared/_order_summary.html.erb +121 -48
- data/app/views/spree/admin/shared/_order_tabs.html.erb +55 -7
- data/app/views/spree/admin/shared/_product_tabs.html.erb +19 -25
- data/app/views/spree/admin/shared/_refunds.html.erb +9 -9
- data/app/views/spree/admin/shared/_report_criteria.html.erb +4 -4
- data/app/views/spree/admin/shared/_report_order_criteria.html.erb +12 -12
- data/app/views/spree/admin/shared/_sidebar.html.erb +1 -6
- data/app/views/spree/admin/shared/_table_filter.html.erb +21 -5
- data/app/views/spree/admin/shared/named_types/_edit.html.erb +6 -7
- data/app/views/spree/admin/shared/named_types/_form.html.erb +10 -14
- data/app/views/spree/admin/shared/named_types/_index.html.erb +6 -17
- data/app/views/spree/admin/shared/named_types/_new.html.erb +5 -5
- data/app/views/spree/admin/shared/sub_menu/_configuration.html.erb +21 -0
- data/app/views/spree/admin/shared/sub_menu/_product.html.erb +8 -0
- data/app/views/spree/admin/shared/sub_menu/_promotion.html.erb +4 -0
- data/app/views/spree/admin/shipping_categories/_form.html.erb +2 -2
- data/app/views/spree/admin/shipping_categories/edit.html.erb +4 -14
- data/app/views/spree/admin/shipping_categories/index.html.erb +24 -32
- data/app/views/spree/admin/shipping_categories/new.html.erb +2 -10
- data/app/views/spree/admin/shipping_methods/_form.html.erb +88 -67
- data/app/views/spree/admin/shipping_methods/edit.html.erb +6 -19
- data/app/views/spree/admin/shipping_methods/index.html.erb +13 -25
- data/app/views/spree/admin/shipping_methods/new.html.erb +2 -12
- data/app/views/spree/admin/state_changes/index.html.erb +42 -0
- data/app/views/spree/admin/states/_form.html.erb +6 -6
- data/app/views/spree/admin/states/_state_list.html.erb +6 -11
- data/app/views/spree/admin/states/edit.html.erb +3 -11
- data/app/views/spree/admin/states/index.html.erb +5 -9
- data/app/views/spree/admin/states/new.html.erb +1 -4
- data/app/views/spree/admin/states/new.js.erb +2 -2
- data/app/views/spree/admin/stock_locations/_form.html.erb +51 -45
- data/app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb +15 -15
- data/app/views/spree/admin/stock_locations/edit.html.erb +4 -6
- data/app/views/spree/admin/stock_locations/index.html.erb +12 -26
- data/app/views/spree/admin/stock_locations/new.html.erb +3 -5
- data/app/views/spree/admin/stock_movements/_form.html.erb +10 -12
- data/app/views/spree/admin/stock_movements/edit.html.erb +4 -4
- data/app/views/spree/admin/stock_movements/index.html.erb +9 -15
- data/app/views/spree/admin/stock_movements/new.html.erb +3 -3
- data/app/views/spree/admin/stock_transfers/_stock_movements.html.erb +17 -22
- data/app/views/spree/admin/stock_transfers/index.html.erb +36 -49
- data/app/views/spree/admin/stock_transfers/new.html.erb +73 -77
- data/app/views/spree/admin/stock_transfers/show.html.erb +21 -29
- data/app/views/spree/admin/tax_categories/_form.html.erb +19 -27
- data/app/views/spree/admin/tax_categories/edit.html.erb +4 -6
- data/app/views/spree/admin/tax_categories/index.html.erb +13 -26
- data/app/views/spree/admin/tax_categories/new.html.erb +3 -6
- data/app/views/spree/admin/tax_categories/show.html.erb +1 -1
- data/app/views/spree/admin/tax_rates/_form.html.erb +34 -25
- data/app/views/spree/admin/tax_rates/edit.html.erb +4 -15
- data/app/views/spree/admin/tax_rates/index.html.erb +18 -32
- data/app/views/spree/admin/tax_rates/new.html.erb +2 -14
- data/app/views/spree/admin/taxonomies/_form.html.erb +5 -5
- data/app/views/spree/admin/taxonomies/_js_head.html.erb +0 -0
- data/app/views/spree/admin/taxonomies/_list.html.erb +9 -12
- data/app/views/spree/admin/taxonomies/edit.erb +11 -22
- data/app/views/spree/admin/taxonomies/index.html.erb +9 -15
- data/app/views/spree/admin/taxonomies/new.html.erb +4 -16
- data/app/views/spree/admin/taxons/_form.html.erb +38 -38
- data/app/views/spree/admin/taxons/_taxon_table.html.erb +2 -2
- data/app/views/spree/admin/taxons/edit.html.erb +5 -13
- data/app/views/spree/admin/taxons/index.html.erb +6 -13
- data/app/views/spree/admin/trackers/_form.html.erb +17 -23
- data/app/views/spree/admin/trackers/edit.html.erb +4 -14
- data/app/views/spree/admin/trackers/index.html.erb +9 -15
- data/app/views/spree/admin/trackers/new.html.erb +2 -10
- data/app/views/spree/admin/users/_addresses_form.html.erb +33 -17
- data/app/views/spree/admin/users/_form.html.erb +17 -17
- data/app/views/spree/admin/users/_lifetime_stats.html.erb +26 -0
- data/app/views/spree/admin/users/_sidebar.html.erb +14 -34
- data/app/views/spree/admin/users/_user_page_actions.html.erb +2 -6
- data/app/views/spree/admin/users/addresses.html.erb +8 -7
- data/app/views/spree/admin/users/edit.html.erb +55 -38
- data/app/views/spree/admin/users/index.html.erb +44 -30
- data/app/views/spree/admin/users/items.html.erb +13 -24
- data/app/views/spree/admin/users/new.html.erb +1 -7
- data/app/views/spree/admin/users/orders.html.erb +11 -17
- data/app/views/spree/admin/variants/_autocomplete.js.erb +13 -15
- data/app/views/spree/admin/variants/_autocomplete_line_items_stock.js.erb +41 -44
- data/app/views/spree/admin/variants/_autocomplete_stock.js.erb +46 -51
- data/app/views/spree/admin/variants/_form.html.erb +34 -34
- data/app/views/spree/admin/variants/_split.js.erb +8 -4
- data/app/views/spree/admin/variants/edit.html.erb +2 -4
- data/app/views/spree/admin/variants/index.html.erb +14 -33
- data/app/views/spree/admin/variants/new.html.erb +8 -6
- data/app/views/spree/admin/variants/new.js.erb +1 -1
- data/app/views/spree/admin/zones/_country_members.html.erb +14 -8
- data/app/views/spree/admin/zones/_form.html.erb +42 -31
- data/app/views/spree/admin/zones/_state_members.html.erb +14 -8
- data/app/views/spree/admin/zones/edit.html.erb +3 -11
- data/app/views/spree/admin/zones/index.html.erb +9 -19
- data/app/views/spree/admin/zones/new.html.erb +2 -13
- data/app/views/spree/layouts/admin.html.erb +63 -36
- data/config/initializers/assets.rb +1 -1
- data/config/routes.rb +4 -1
- data/lib/spree/backend/engine.rb +3 -0
- data/lib/spree_backend.rb +2 -0
- data/vendor/assets/javascripts/jquery.cookie.js +115 -39
- data/vendor/assets/javascripts/modernizr.js +3 -3
- data/vendor/assets/javascripts/underscore-min.js +6 -0
- data/vendor/assets/javascripts/underscore-min.map +1 -0
- data/vendor/assets/javascripts/velocity.js +3831 -0
- data/vendor/assets/stylesheets/animate.css +3158 -0
- metadata +85 -96
- data/app/assets/javascripts/spree/backend/images/index.js.coffee +0 -16
- data/app/assets/javascripts/spree/backend/images/new.js.coffee +0 -7
- data/app/assets/javascripts/spree/backend/underscore-min.js +0 -1227
- data/app/assets/stylesheets/spree/backend/components/_actions.scss +0 -31
- data/app/assets/stylesheets/spree/backend/components/_date-picker.scss +0 -159
- data/app/assets/stylesheets/spree/backend/components/_messages.scss +0 -54
- data/app/assets/stylesheets/spree/backend/components/_pagination.scss +0 -17
- data/app/assets/stylesheets/spree/backend/components/_product_autocomplete.scss +0 -29
- data/app/assets/stylesheets/spree/backend/components/_progress.scss +0 -35
- data/app/assets/stylesheets/spree/backend/components/_states.scss +0 -34
- data/app/assets/stylesheets/spree/backend/components/_table-filter.scss +0 -14
- data/app/assets/stylesheets/spree/backend/globals/_functions.scss +0 -25
- data/app/assets/stylesheets/spree/backend/globals/_mixins.scss +0 -25
- data/app/assets/stylesheets/spree/backend/globals/_variables.scss +0 -171
- data/app/assets/stylesheets/spree/backend/globals/_variables_override.scss +0 -7
- data/app/assets/stylesheets/spree/backend/hacks/_ie.scss +0 -72
- data/app/assets/stylesheets/spree/backend/hacks/_mozilla.scss +0 -33
- data/app/assets/stylesheets/spree/backend/hacks/_opera.scss +0 -17
- data/app/assets/stylesheets/spree/backend/plugins/_jstree.scss +0 -135
- data/app/assets/stylesheets/spree/backend/plugins/_powertip.scss +0 -86
- data/app/assets/stylesheets/spree/backend/plugins/_token-input.scss +0 -110
- data/app/assets/stylesheets/spree/backend/sections/_adjustments_table.scss +0 -8
- data/app/assets/stylesheets/spree/backend/sections/_alerts.scss +0 -27
- data/app/assets/stylesheets/spree/backend/sections/_bulk_transfer.scss +0 -8
- data/app/assets/stylesheets/spree/backend/sections/_edit_checkouts.scss +0 -72
- data/app/assets/stylesheets/spree/backend/sections/_image_settings.scss +0 -3
- data/app/assets/stylesheets/spree/backend/sections/_log_entries.scss +0 -17
- data/app/assets/stylesheets/spree/backend/sections/_orders.scss +0 -64
- data/app/assets/stylesheets/spree/backend/sections/_overview.scss +0 -86
- data/app/assets/stylesheets/spree/backend/sections/_products.scss +0 -123
- data/app/assets/stylesheets/spree/backend/sections/_promotions.scss +0 -119
- data/app/assets/stylesheets/spree/backend/sections/_return_authorizations.scss +0 -24
- data/app/assets/stylesheets/spree/backend/sections/_tax_zones.scss +0 -15
- data/app/assets/stylesheets/spree/backend/sections/_taxons.scss +0 -21
- data/app/assets/stylesheets/spree/backend/sections/_users.scss +0 -5
- data/app/assets/stylesheets/spree/backend/shared/_icons.scss +0 -53
- data/app/assets/stylesheets/spree/backend/shared/_layout.scss +0 -99
- data/app/assets/stylesheets/spree/backend/shared/_tables.scss +0 -214
- data/app/assets/stylesheets/spree/backend/spree_admin.scss +0 -45
- data/app/views/spree/admin/line_items/create.js.erb +0 -1
- data/app/views/spree/admin/line_items/destroy.js.erb +0 -1
- data/app/views/spree/admin/option_types/new.js.erb +0 -2
- data/app/views/spree/admin/payments/_bill_address_form.html.erb +0 -9
- data/app/views/spree/admin/payments/source_views/_check.html.erb +0 -0
- data/app/views/spree/admin/products/new.js.erb +0 -7
- data/app/views/spree/admin/promotions/_tab.html.erb +0 -1
- data/app/views/spree/admin/promotions/rules/_first_order.html.erb +0 -0
- data/app/views/spree/admin/promotions/rules/_one_use_per_user.html.erb +0 -0
- data/app/views/spree/admin/promotions/rules/_user_logged_in.html.erb +0 -0
- data/app/views/spree/admin/properties/filtered.html.erb +0 -1
- data/app/views/spree/admin/properties/new.js.erb +0 -2
- data/app/views/spree/admin/prototypes/new.js.erb +0 -5
- data/app/views/spree/admin/shared/_address.html.erb +0 -6
- data/app/views/spree/admin/shared/_configuration_menu.html.erb +0 -28
- data/app/views/spree/admin/shared/_menu.html.erb +0 -9
- data/app/views/spree/admin/shared/_order_submenu.html.erb +0 -49
- data/app/views/spree/admin/shared/_product_sub_menu.html.erb +0 -10
- data/app/views/spree/admin/shared/_promotion_sub_menu.html.erb +0 -6
- data/app/views/spree/admin/shared/_show_resource_links.html.erb +0 -5
- data/app/views/spree/admin/shared/_sub_menu.html.erb +0 -9
- data/app/views/spree/admin/shared/_tabs.html.erb +0 -21
- data/app/views/spree/admin/taxonomies/_taxon.html.erb +0 -12
- data/app/views/spree/admin/taxons/search.rabl +0 -5
- data/app/views/spree/admin/variants/update.js.erb +0 -1
- data/vendor/assets/images/jquery.alerts/images/help.gif +0 -0
- data/vendor/assets/images/jquery.alerts/images/important.gif +0 -0
- data/vendor/assets/images/jquery.alerts/images/info.gif +0 -0
- data/vendor/assets/images/jquery.alerts/images/title.gif +0 -0
- data/vendor/assets/javascripts/css_browser_selector_dev.js +0 -129
- data/vendor/assets/javascripts/equalize.js +0 -41
- data/vendor/assets/javascripts/jquery.adaptivemenu.js +0 -60
- data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.js +0 -235
- data/vendor/assets/javascripts/jquery.delayedobserver.js +0 -35
- data/vendor/assets/javascripts/jquery.powertip.js +0 -796
- data/vendor/assets/javascripts/jquery.vAlign.js +0 -11
- data/vendor/assets/javascripts/responsive-tables.js +0 -42
- data/vendor/assets/javascripts/spin.js +0 -379
- data/vendor/assets/javascripts/trunk8.js +0 -369
- data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.css.erb +0 -57
- data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.spree.css +0 -29
- data/vendor/assets/stylesheets/jquery.powertip.css +0 -85
- data/vendor/assets/stylesheets/responsive-tables.css +0 -21
@@ -1,369 +0,0 @@
|
|
1
|
-
/**!
|
2
|
-
* trunk8 v1.3.1
|
3
|
-
* https://github.com/rviscomi/trunk8
|
4
|
-
*
|
5
|
-
* Copyright 2012 Rick Viscomi
|
6
|
-
* Released under the MIT License.
|
7
|
-
*
|
8
|
-
* Date: September 26, 2012
|
9
|
-
*/
|
10
|
-
(function ($) {
|
11
|
-
var methods,
|
12
|
-
utils,
|
13
|
-
SIDES = {
|
14
|
-
/* cen...ter */
|
15
|
-
center: 'center',
|
16
|
-
/* ...left */
|
17
|
-
left: 'left',
|
18
|
-
/* right... */
|
19
|
-
right: 'right'
|
20
|
-
},
|
21
|
-
WIDTH = {
|
22
|
-
auto: 'auto'
|
23
|
-
};
|
24
|
-
|
25
|
-
function trunk8(element) {
|
26
|
-
this.$element = $(element);
|
27
|
-
this.original_text = this.$element.html();
|
28
|
-
this.settings = $.extend({}, $.fn.trunk8.defaults);
|
29
|
-
}
|
30
|
-
|
31
|
-
trunk8.prototype.updateSettings = function (options) {
|
32
|
-
this.settings = $.extend(this.settings, options);
|
33
|
-
};
|
34
|
-
|
35
|
-
function stripHTML(html) {
|
36
|
-
var tmp = document.createElement("DIV");
|
37
|
-
tmp.innerHTML = html;
|
38
|
-
return tmp.textContent || tmp.innerText;
|
39
|
-
}
|
40
|
-
|
41
|
-
function getHtmlArr(str) {
|
42
|
-
/* Builds an array of strings and designated */
|
43
|
-
/* HTML tags around them. */
|
44
|
-
if (stripHTML(str) === str) {
|
45
|
-
return str.split(/\s/g);
|
46
|
-
}
|
47
|
-
var allResults = [],
|
48
|
-
reg = /<([a-z]+)([^<]*)(?:>(.*?(?!<\1>)*)<\/\1>|\s+\/>)(['.?!,]*)|((?:[^<>\s])+['.?!,]*\w?|<br\s?\/?>)/ig,
|
49
|
-
outArr = reg.exec(str),
|
50
|
-
lastI,
|
51
|
-
ind;
|
52
|
-
while (outArr && lastI !== reg.lastIndex) {
|
53
|
-
lastI = reg.lastIndex;
|
54
|
-
if (outArr[5]) {
|
55
|
-
allResults.push(outArr[5]);
|
56
|
-
} else if (outArr[1]) {
|
57
|
-
allResults.push({
|
58
|
-
tag: outArr[1],
|
59
|
-
attribs: outArr[2],
|
60
|
-
content: outArr[3],
|
61
|
-
after: outArr[4]
|
62
|
-
});
|
63
|
-
}
|
64
|
-
outArr = reg.exec(str);
|
65
|
-
}
|
66
|
-
for (ind = 0; ind < allResults.length; ind++) {
|
67
|
-
if (typeof allResults[ind] !== 'string' && allResults[ind].content) {
|
68
|
-
allResults[ind].content = getHtmlArr(allResults[ind].content);
|
69
|
-
}
|
70
|
-
}
|
71
|
-
return allResults;
|
72
|
-
}
|
73
|
-
|
74
|
-
function rebuildHtmlFromBite(bite, htmlObject, fill) {
|
75
|
-
// Take the processed bite after binary-search
|
76
|
-
// truncated and re-build the original HTML
|
77
|
-
// tags around the processed string.
|
78
|
-
bite = bite.replace(fill, '');
|
79
|
-
|
80
|
-
var biteHelper = function (contentArr, tagInfo) {
|
81
|
-
var retStr = '',
|
82
|
-
content,
|
83
|
-
biteContent,
|
84
|
-
biteLength,
|
85
|
-
i;
|
86
|
-
for (i = 0; i < contentArr.length; i++) {
|
87
|
-
content = contentArr[i];
|
88
|
-
biteLength = $.trim(bite).split(' ').length;
|
89
|
-
if ($.trim(bite).length) {
|
90
|
-
if (typeof content === 'string') {
|
91
|
-
if (!/<br\s*\/?>/.test(content)) {
|
92
|
-
if (biteLength === 1 && $.trim(bite).length <= content.length) {
|
93
|
-
content = bite;
|
94
|
-
// We want the fill to go inside of the last HTML
|
95
|
-
// element if the element is a container.
|
96
|
-
if (tagInfo === 'p' || tagInfo === 'div') {
|
97
|
-
content += fill;
|
98
|
-
}
|
99
|
-
bite = '';
|
100
|
-
} else {
|
101
|
-
bite = bite.replace(content, '');
|
102
|
-
}
|
103
|
-
}
|
104
|
-
retStr += $.trim(content) + ((i === contentArr.length - 1 || biteLength <= 1) ? '' : ' ');
|
105
|
-
} else {
|
106
|
-
biteContent = biteHelper(content.content, content.tag);
|
107
|
-
if (content.after) {
|
108
|
-
bite = bite.replace(content.after, '');
|
109
|
-
}
|
110
|
-
if (biteContent) {
|
111
|
-
if (!content.after) {
|
112
|
-
content.after = ' ';
|
113
|
-
}
|
114
|
-
retStr += '<' + content.tag + content.attribs + '>' + biteContent + '</' + content.tag + '>' + content.after;
|
115
|
-
}
|
116
|
-
}
|
117
|
-
}
|
118
|
-
}
|
119
|
-
return retStr;
|
120
|
-
},
|
121
|
-
htmlResults = biteHelper(htmlObject);
|
122
|
-
|
123
|
-
// Add fill if doesn't exist. This will place it outside the HTML elements.
|
124
|
-
if (htmlResults.slice(htmlResults.length - fill.length) === fill) {
|
125
|
-
htmlResults += fill;
|
126
|
-
}
|
127
|
-
|
128
|
-
return htmlResults;
|
129
|
-
}
|
130
|
-
|
131
|
-
function truncate() {
|
132
|
-
var data = this.data('trunk8'),
|
133
|
-
settings = data.settings,
|
134
|
-
width = settings.width,
|
135
|
-
side = settings.side,
|
136
|
-
fill = settings.fill,
|
137
|
-
parseHTML = settings.parseHTML,
|
138
|
-
line_height = utils.getLineHeight(this) * settings.lines,
|
139
|
-
str = data.original_text,
|
140
|
-
length = str.length,
|
141
|
-
max_bite = '',
|
142
|
-
lower, upper,
|
143
|
-
bite_size,
|
144
|
-
bite,
|
145
|
-
text,
|
146
|
-
htmlObject;
|
147
|
-
|
148
|
-
/* Reset the field to the original string. */
|
149
|
-
this.html(str);
|
150
|
-
text = this.text();
|
151
|
-
|
152
|
-
/* If string has HTML and parse HTML is set, build */
|
153
|
-
/* the data struct to house the tags */
|
154
|
-
if (parseHTML && stripHTML(str) !== str) {
|
155
|
-
htmlObject = getHtmlArr(str);
|
156
|
-
str = stripHTML(str);
|
157
|
-
length = str.length;
|
158
|
-
}
|
159
|
-
|
160
|
-
if (width === WIDTH.auto) {
|
161
|
-
/* Assuming there is no "overflow: hidden". */
|
162
|
-
if (this.height() <= line_height) {
|
163
|
-
/* Text is already at the optimal trunkage. */
|
164
|
-
return;
|
165
|
-
}
|
166
|
-
|
167
|
-
/* Binary search technique for finding the optimal trunkage. */
|
168
|
-
/* Find the maximum bite without overflowing. */
|
169
|
-
lower = 0;
|
170
|
-
upper = length - 1;
|
171
|
-
|
172
|
-
while (lower <= upper) {
|
173
|
-
bite_size = lower + ((upper - lower) >> 1);
|
174
|
-
|
175
|
-
bite = utils.eatStr(str, side, length - bite_size, fill);
|
176
|
-
|
177
|
-
if (parseHTML && htmlObject) {
|
178
|
-
bite = rebuildHtmlFromBite(bite, htmlObject, fill);
|
179
|
-
}
|
180
|
-
|
181
|
-
this.html(bite);
|
182
|
-
|
183
|
-
/* Check for overflow. */
|
184
|
-
if (this.height() > line_height) {
|
185
|
-
upper = bite_size - 1;
|
186
|
-
} else {
|
187
|
-
lower = bite_size + 1;
|
188
|
-
|
189
|
-
/* Save the bigger bite. */
|
190
|
-
max_bite = (max_bite.length > bite.length) ? max_bite : bite;
|
191
|
-
}
|
192
|
-
}
|
193
|
-
|
194
|
-
/* Reset the content to eliminate possible existing scroll bars. */
|
195
|
-
this.html('');
|
196
|
-
|
197
|
-
/* Display the biggest bite. */
|
198
|
-
this.html(max_bite);
|
199
|
-
|
200
|
-
if (settings.tooltip) {
|
201
|
-
this.attr('title', text);
|
202
|
-
}
|
203
|
-
} else if (!isNaN(width)) {
|
204
|
-
bite_size = length - width;
|
205
|
-
|
206
|
-
bite = utils.eatStr(str, side, bite_size, fill);
|
207
|
-
|
208
|
-
this.html(bite);
|
209
|
-
|
210
|
-
if (settings.tooltip) {
|
211
|
-
this.attr('title', str);
|
212
|
-
}
|
213
|
-
} else {
|
214
|
-
$.error('Invalid width "' + width + '".');
|
215
|
-
}
|
216
|
-
}
|
217
|
-
|
218
|
-
methods = {
|
219
|
-
init: function (options) {
|
220
|
-
return this.each(function () {
|
221
|
-
var $this = $(this),
|
222
|
-
data = $this.data('trunk8');
|
223
|
-
|
224
|
-
if (!data) {
|
225
|
-
$this.data('trunk8', (data = new trunk8(this)));
|
226
|
-
}
|
227
|
-
|
228
|
-
data.updateSettings(options);
|
229
|
-
|
230
|
-
truncate.call($this);
|
231
|
-
});
|
232
|
-
},
|
233
|
-
|
234
|
-
/** Updates the text value of the elements while maintaining truncation. */
|
235
|
-
update: function (new_string) {
|
236
|
-
return this.each(function () {
|
237
|
-
var $this = $(this);
|
238
|
-
|
239
|
-
/* Update text. */
|
240
|
-
if (new_string) {
|
241
|
-
$this.data('trunk8').original_text = new_string;
|
242
|
-
}
|
243
|
-
|
244
|
-
/* Truncate accordingly. */
|
245
|
-
truncate.call($this);
|
246
|
-
});
|
247
|
-
},
|
248
|
-
|
249
|
-
revert: function () {
|
250
|
-
return this.each(function () {
|
251
|
-
/* Get original text. */
|
252
|
-
var text = $(this).data('trunk8').original_text;
|
253
|
-
|
254
|
-
/* Revert element to original text. */
|
255
|
-
$(this).html(text);
|
256
|
-
});
|
257
|
-
},
|
258
|
-
|
259
|
-
/** Returns this instance's settings object. NOT CHAINABLE. */
|
260
|
-
getSettings: function () {
|
261
|
-
return $(this.get(0)).data('trunk8').settings;
|
262
|
-
}
|
263
|
-
};
|
264
|
-
|
265
|
-
utils = {
|
266
|
-
/** Replaces [bite_size] [side]-most chars in [str] with [fill]. */
|
267
|
-
eatStr: function (str, side, bite_size, fill) {
|
268
|
-
var length = str.length,
|
269
|
-
key = utils.eatStr.generateKey.apply(null, arguments),
|
270
|
-
half_length,
|
271
|
-
half_bite_size;
|
272
|
-
|
273
|
-
/* If the result is already in the cache, return it. */
|
274
|
-
if (utils.eatStr.cache[key]) {
|
275
|
-
return utils.eatStr.cache[key];
|
276
|
-
}
|
277
|
-
|
278
|
-
/* Common error handling. */
|
279
|
-
if ((typeof str !== 'string') || (length === 0)) {
|
280
|
-
$.error('Invalid source string "' + str + '".');
|
281
|
-
}
|
282
|
-
if ((bite_size < 0) || (bite_size > length)) {
|
283
|
-
$.error('Invalid bite size "' + bite_size + '".');
|
284
|
-
} else if (bite_size === 0) {
|
285
|
-
/* No bite should show no truncation. */
|
286
|
-
return str;
|
287
|
-
}
|
288
|
-
if (typeof (fill + '') !== 'string') {
|
289
|
-
$.error('Fill unable to be converted to a string.');
|
290
|
-
}
|
291
|
-
|
292
|
-
/* Compute the result, store it in the cache, and return it. */
|
293
|
-
switch (side) {
|
294
|
-
case SIDES.right:
|
295
|
-
/* str... */
|
296
|
-
return utils.eatStr.cache[key] = $.trim(str.substr(0, length - bite_size)) + fill;
|
297
|
-
|
298
|
-
case SIDES.left:
|
299
|
-
/* ...str */
|
300
|
-
return utils.eatStr.cache[key] = fill + $.trim(str.substr(bite_size));
|
301
|
-
|
302
|
-
case SIDES.center:
|
303
|
-
/* Bit-shift to the right by one === Math.floor(x / 2) */
|
304
|
-
half_length = length >> 1; // halve the length
|
305
|
-
half_bite_size = bite_size >> 1; // halve the bite_size
|
306
|
-
|
307
|
-
/* st...r */
|
308
|
-
return utils.eatStr.cache[key] = $.trim(utils.eatStr(str.substr(0, length - half_length), SIDES.right, bite_size - half_bite_size, '')) + fill + $.trim(utils.eatStr(str.substr(length - half_length), SIDES.left, half_bite_size, ''));
|
309
|
-
|
310
|
-
default:
|
311
|
-
$.error('Invalid side "' + side + '".');
|
312
|
-
}
|
313
|
-
},
|
314
|
-
|
315
|
-
getLineHeight: function (elem) {
|
316
|
-
var floats = $(elem).css('float');
|
317
|
-
if (floats !== 'none') {
|
318
|
-
$(elem).css('float', 'none');
|
319
|
-
}
|
320
|
-
var pos = $(elem).css('position');
|
321
|
-
if (pos === 'absolute') {
|
322
|
-
$(elem).css('position', 'static');
|
323
|
-
}
|
324
|
-
|
325
|
-
var html = $(elem).html(),
|
326
|
-
wrapper_id = 'line-height-test',
|
327
|
-
line_height;
|
328
|
-
|
329
|
-
/* Set the content to a small single character and wrap. */
|
330
|
-
$(elem).html('i').wrap('<div id="' + wrapper_id + '" />');
|
331
|
-
|
332
|
-
/* Calculate the line height by measuring the wrapper.*/
|
333
|
-
line_height = $('#' + wrapper_id).innerHeight();
|
334
|
-
|
335
|
-
/* Remove the wrapper and reset the content. */
|
336
|
-
$(elem).html(html).css({
|
337
|
-
'float': floats,
|
338
|
-
'position': pos
|
339
|
-
}).unwrap();
|
340
|
-
|
341
|
-
return line_height;
|
342
|
-
}
|
343
|
-
};
|
344
|
-
|
345
|
-
utils.eatStr.cache = {};
|
346
|
-
utils.eatStr.generateKey = function () {
|
347
|
-
return Array.prototype.join.call(arguments, '');
|
348
|
-
};
|
349
|
-
|
350
|
-
$.fn.trunk8 = function (method) {
|
351
|
-
if (methods[method]) {
|
352
|
-
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
|
353
|
-
} else if (typeof method === 'object' || !method) {
|
354
|
-
return methods.init.apply(this, arguments);
|
355
|
-
} else {
|
356
|
-
$.error('Method ' + method + ' does not exist on jQuery.trunk8');
|
357
|
-
}
|
358
|
-
};
|
359
|
-
|
360
|
-
/* Default trunk8 settings. */
|
361
|
-
$.fn.trunk8.defaults = {
|
362
|
-
fill: '…',
|
363
|
-
lines: 1,
|
364
|
-
side: SIDES.right,
|
365
|
-
tooltip: true,
|
366
|
-
width: WIDTH.auto,
|
367
|
-
parseHTML: false
|
368
|
-
};
|
369
|
-
})(jQuery);
|
@@ -1,57 +0,0 @@
|
|
1
|
-
#popup_container {
|
2
|
-
font-family: Arial, sans-serif;
|
3
|
-
font-size: 12px;
|
4
|
-
min-width: 300px; /* Dialog will be no smaller than this */
|
5
|
-
max-width: 600px; /* Dialog will wrap after this width */
|
6
|
-
background: #FFF;
|
7
|
-
border: solid 5px #999;
|
8
|
-
color: #000;
|
9
|
-
-moz-border-radius: 5px;
|
10
|
-
-webkit-border-radius: 5px;
|
11
|
-
border-radius: 5px;
|
12
|
-
}
|
13
|
-
|
14
|
-
#popup_title {
|
15
|
-
font-size: 14px;
|
16
|
-
font-weight: bold;
|
17
|
-
text-align: center;
|
18
|
-
line-height: 1.75em;
|
19
|
-
color: #666;
|
20
|
-
background: #CCC url(<%= asset_path('jquery.alerts/images/title.gif') %>) top repeat-x;
|
21
|
-
border: solid 1px #FFF;
|
22
|
-
border-bottom: solid 1px #999;
|
23
|
-
cursor: default;
|
24
|
-
padding: 0em;
|
25
|
-
margin: 0em;
|
26
|
-
}
|
27
|
-
|
28
|
-
#popup_content {
|
29
|
-
background: 16px 16px no-repeat url(<%= asset_path('jquery.alerts/images/info.gif') %>);
|
30
|
-
padding: 1em 1.75em;
|
31
|
-
margin: 0em;
|
32
|
-
}
|
33
|
-
|
34
|
-
#popup_content.alert {
|
35
|
-
background-image: url(<%= asset_path('jquery.alerts/images/info.gif') %>);
|
36
|
-
}
|
37
|
-
|
38
|
-
#popup_content.confirm {
|
39
|
-
background-image: url(<%= asset_path('jquery.alerts/images/important.gif') %>);
|
40
|
-
}
|
41
|
-
|
42
|
-
#popup_content.prompt {
|
43
|
-
background-image: url(<%= asset_path('jquery.alerts/images/help.gif') %>);
|
44
|
-
}
|
45
|
-
|
46
|
-
#popup_message {
|
47
|
-
padding-left: 48px;
|
48
|
-
}
|
49
|
-
|
50
|
-
#popup_panel {
|
51
|
-
text-align: center;
|
52
|
-
margin: 1em 0em 0em 1em;
|
53
|
-
}
|
54
|
-
|
55
|
-
#popup_prompt {
|
56
|
-
margin: .5em 0em;
|
57
|
-
}
|
@@ -1,29 +0,0 @@
|
|
1
|
-
/* Spree Custom dialog styles */
|
2
|
-
#popup_container.spree {
|
3
|
-
color: #fff;
|
4
|
-
background: #005294;
|
5
|
-
border-color: #113F66;
|
6
|
-
}
|
7
|
-
|
8
|
-
#popup_container.spree #popup_title {
|
9
|
-
color: #FFF;
|
10
|
-
font-weight: normal;
|
11
|
-
text-align: left;
|
12
|
-
background: #76A5CC;
|
13
|
-
border: solid 1px #005294;
|
14
|
-
padding-left: 1em;
|
15
|
-
}
|
16
|
-
|
17
|
-
#popup_container.spree #popup_content {
|
18
|
-
background: none;
|
19
|
-
}
|
20
|
-
|
21
|
-
#popup_container.spree #popup_message {
|
22
|
-
padding-left: 0em;
|
23
|
-
}
|
24
|
-
|
25
|
-
#popup_container.spree input[type='button'] {
|
26
|
-
border: outset 2px #76A5CC;
|
27
|
-
color: #fff;
|
28
|
-
background: #3778AE;
|
29
|
-
}
|
@@ -1,85 +0,0 @@
|
|
1
|
-
/* PowerTip Plugin */
|
2
|
-
#powerTip {
|
3
|
-
cursor: default;
|
4
|
-
background-color: #333; /* fallback for browsers that dont support rgba */
|
5
|
-
background-color: rgba(0, 0, 0, 0.8);
|
6
|
-
border-radius: 6px;
|
7
|
-
color: #FFF;
|
8
|
-
display: none;
|
9
|
-
padding: 10px;
|
10
|
-
position: absolute;
|
11
|
-
white-space: nowrap;
|
12
|
-
z-index: 2147483647;
|
13
|
-
}
|
14
|
-
#powerTip:before {
|
15
|
-
content: "";
|
16
|
-
position: absolute;
|
17
|
-
}
|
18
|
-
#powerTip.n:before, #powerTip.s:before {
|
19
|
-
border-right: 5px solid transparent;
|
20
|
-
border-left: 5px solid transparent;
|
21
|
-
left: 50%;
|
22
|
-
margin-left: -5px;
|
23
|
-
}
|
24
|
-
#powerTip.e:before, #powerTip.w:before {
|
25
|
-
border-bottom: 5px solid transparent;
|
26
|
-
border-top: 5px solid transparent;
|
27
|
-
margin-top: -5px;
|
28
|
-
top: 50%;
|
29
|
-
}
|
30
|
-
#powerTip.n:before {
|
31
|
-
border-top: 10px solid rgba(0, 0, 0, 0.8);
|
32
|
-
bottom: -10px;
|
33
|
-
}
|
34
|
-
#powerTip.e:before {
|
35
|
-
border-right: 10px solid rgba(0, 0, 0, 0.8);
|
36
|
-
left: -10px;
|
37
|
-
}
|
38
|
-
#powerTip.s:before {
|
39
|
-
border-bottom: 10px solid rgba(0, 0, 0, 0.8);
|
40
|
-
top: -10px;
|
41
|
-
}
|
42
|
-
#powerTip.w:before {
|
43
|
-
border-left: 10px solid rgba(0, 0, 0, 0.8);
|
44
|
-
right: -10px;
|
45
|
-
}
|
46
|
-
#powerTip.ne:before, #powerTip.se:before {
|
47
|
-
border-right: 10px solid transparent;
|
48
|
-
border-left: 0;
|
49
|
-
left: 10px;
|
50
|
-
}
|
51
|
-
#powerTip.nw:before, #powerTip.sw:before {
|
52
|
-
border-left: 10px solid transparent;
|
53
|
-
border-right: 0;
|
54
|
-
right: 10px;
|
55
|
-
}
|
56
|
-
#powerTip.ne:before, #powerTip.nw:before {
|
57
|
-
border-top: 10px solid rgba(0, 0, 0, 0.8);
|
58
|
-
bottom: -10px;
|
59
|
-
}
|
60
|
-
#powerTip.se:before, #powerTip.sw:before {
|
61
|
-
border-bottom: 10px solid rgba(0, 0, 0, 0.8);
|
62
|
-
top: -10px;
|
63
|
-
}
|
64
|
-
#powerTip.nw-alt:before, #powerTip.ne-alt:before,
|
65
|
-
#powerTip.sw-alt:before, #powerTip.se-alt:before {
|
66
|
-
border-top: 10px solid rgba(0, 0, 0, 0.8);
|
67
|
-
bottom: -10px;
|
68
|
-
border-left: 5px solid transparent;
|
69
|
-
border-right: 5px solid transparent;
|
70
|
-
left: 10px;
|
71
|
-
}
|
72
|
-
#powerTip.ne-alt:before {
|
73
|
-
left: auto;
|
74
|
-
right: 10px;
|
75
|
-
}
|
76
|
-
#powerTip.sw-alt:before, #powerTip.se-alt:before {
|
77
|
-
border-top: none;
|
78
|
-
border-bottom: 10px solid rgba(0, 0, 0, 0.8);
|
79
|
-
bottom: auto;
|
80
|
-
top: -10px;
|
81
|
-
}
|
82
|
-
#powerTip.se-alt:before {
|
83
|
-
left: auto;
|
84
|
-
right: 10px;
|
85
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
/* Foundation v2.1.4 http://foundation.zurb.com */
|
2
|
-
/* Artfully masterminded by ZURB */
|
3
|
-
|
4
|
-
/* Mobile */
|
5
|
-
@media only screen and (max-width: 767px) {
|
6
|
-
|
7
|
-
table.responsive { margin-bottom: 0; }
|
8
|
-
|
9
|
-
.pinned { position: absolute; left: 0; top: 0; background: #fff; width: 35%; overflow: hidden; overflow-x: scroll; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
|
10
|
-
.pinned table { border-right: none; border-left: none; width: 100%; }
|
11
|
-
.pinned table th, .pinned table td { white-space: nowrap; }
|
12
|
-
.pinned td:last-child { border-bottom: 0; }
|
13
|
-
|
14
|
-
div.table-wrapper { position: relative; margin-bottom: 20px; overflow: hidden; border-right: 1px solid #ccc; }
|
15
|
-
div.table-wrapper div.scrollable table { margin-left: 35%; }
|
16
|
-
div.table-wrapper div.scrollable { overflow: scroll; overflow-y: hidden; }
|
17
|
-
|
18
|
-
table.responsive td, table.responsive th { position: relative; white-space: nowrap; overflow: hidden; }
|
19
|
-
table.responsive th:first-child, table.responsive td:first-child, table.responsive td:first-child, table.responsive.pinned td { display: none; }
|
20
|
-
|
21
|
-
}
|