guara 0.0.1.rc
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +23 -0
- data/.rspec +2 -0
- data/.travis.yml +33 -0
- data/Gemfile +82 -0
- data/Gemfile.lock +323 -0
- data/Guardfile +32 -0
- data/MIT-LICENSE +20 -0
- data/README.md +8 -0
- data/Rakefile +7 -0
- data/app/admin/business_activities.rb +3 -0
- data/app/admin/business_departments.rb +3 -0
- data/app/admin/business_segments.rb +13 -0
- data/app/admin/cities.rb +3 -0
- data/app/admin/company_businesses.rb +3 -0
- data/app/admin/dashboard.rb +39 -0
- data/app/admin/districts.rb +3 -0
- data/app/admin/states.rb +3 -0
- data/app/admin/task_types.rb +3 -0
- data/app/admin/user_groups.rb +3 -0
- data/app/admin/users.rb +3 -0
- data/app/assets/images/close.gif +0 -0
- data/app/assets/images/custom/logo.png +0 -0
- data/app/assets/images/custom/nav_logo.png +0 -0
- data/app/assets/images/custom/nav_logo.psd +0 -0
- data/app/assets/images/rails.png +0 -0
- data/app/assets/javascripts/active_admin.js +5 -0
- data/app/assets/javascripts/application.js +97 -0
- data/app/assets/javascripts/business_departments.js.coffee +3 -0
- data/app/assets/javascripts/company_businesses.js.coffee +3 -0
- data/app/assets/javascripts/crm.js.coffee +14 -0
- data/app/assets/javascripts/fcbk.js +556 -0
- data/app/assets/javascripts/jquery-ui-timepicker-addon.js +1326 -0
- data/app/assets/javascripts/jquery.mask.1.3.js +7 -0
- data/app/assets/javascripts/jquery.multiselect.filter.xjs +173 -0
- data/app/assets/javascripts/jquery.multiselect.xjs +668 -0
- data/app/assets/javascripts/system_task_status.js.coffee +3 -0
- data/app/assets/javascripts/tests/ajaxes.js.coffee +3 -0
- data/app/assets/stylesheets/abilities.css.scss +6 -0
- data/app/assets/stylesheets/active_admin.css.scss +65 -0
- data/app/assets/stylesheets/application.css +19 -0
- data/app/assets/stylesheets/business_departments.css.scss +3 -0
- data/app/assets/stylesheets/company_businesses.css.scss +3 -0
- data/app/assets/stylesheets/custom.css.scss +322 -0
- data/app/assets/stylesheets/customer.scss +7 -0
- data/app/assets/stylesheets/fcbk.css +165 -0
- data/app/assets/stylesheets/guara.css.scss +159 -0
- data/app/assets/stylesheets/jquery-ui.css +567 -0
- data/app/assets/stylesheets/jquery_bootstrap.css.scss +92 -0
- data/app/assets/stylesheets/jquery_multiselect_filter.xcss +3 -0
- data/app/assets/stylesheets/scaffolds.css.scss +42 -0
- data/app/assets/stylesheets/users.css.scss +10 -0
- data/app/controllers/abilities_controller.rb +37 -0
- data/app/controllers/application_controller.rb +12 -0
- data/app/controllers/business_activities_controller.rb +87 -0
- data/app/controllers/business_departments_controller.rb +90 -0
- data/app/controllers/business_segments_controller.rb +88 -0
- data/app/controllers/company_businesses_controller.rb +46 -0
- data/app/controllers/contacts_controller.rb +105 -0
- data/app/controllers/customers_controller.rb +117 -0
- data/app/controllers/microposts_controller.rb +31 -0
- data/app/controllers/sessions_controller.rb +32 -0
- data/app/controllers/static_pages_controller.rb +23 -0
- data/app/controllers/system_task_status_controller.rb +84 -0
- data/app/controllers/task_feedbacks_controller.rb +6 -0
- data/app/controllers/task_types_controller.rb +85 -0
- data/app/controllers/tasks_controller.rb +107 -0
- data/app/controllers/tests/ajaxes_controller.rb +115 -0
- data/app/controllers/tests/lab_ajax_controller.rb +27 -0
- data/app/controllers/users_controller.rb +62 -0
- data/app/helpers/ability_helper.rb +15 -0
- data/app/helpers/application_helper.rb +32 -0
- data/app/helpers/business_activities_helper.rb +2 -0
- data/app/helpers/business_departments_helper.rb +2 -0
- data/app/helpers/business_segments_helper.rb +2 -0
- data/app/helpers/company_businesses_helper.rb +2 -0
- data/app/helpers/contacts_helper.rb +2 -0
- data/app/helpers/customers_helper.rb +23 -0
- data/app/helpers/email_helper.rb +8 -0
- data/app/helpers/form_ajax_helper.rb +8 -0
- data/app/helpers/guara_views_helper.rb +38 -0
- data/app/helpers/locale_helper.rb +24 -0
- data/app/helpers/menu_helper.rb +55 -0
- data/app/helpers/sessions_helper.rb +56 -0
- data/app/helpers/tasks_helper.rb +20 -0
- data/app/helpers/tests/ajaxes_helper.rb +2 -0
- data/app/helpers/user_abilities_helper.rb +12 -0
- data/app/helpers/users_helper.rb +29 -0
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/ability.rb +52 -0
- data/app/models/address.rb +7 -0
- data/app/models/business_activity.rb +5 -0
- data/app/models/business_department.rb +3 -0
- data/app/models/business_segment.rb +5 -0
- data/app/models/city.rb +7 -0
- data/app/models/company_business.rb +6 -0
- data/app/models/contact.rb +69 -0
- data/app/models/customer.rb +117 -0
- data/app/models/customer_activity.rb +9 -0
- data/app/models/customer_financial.rb +10 -0
- data/app/models/customer_has_customers.rb +7 -0
- data/app/models/customer_pf.rb +13 -0
- data/app/models/customer_pj.rb +71 -0
- data/app/models/customer_pj_has_customers_pj.rb +7 -0
- data/app/models/customer_product.rb +3 -0
- data/app/models/customer_segment.rb +9 -0
- data/app/models/district.rb +6 -0
- data/app/models/email.rb +7 -0
- data/app/models/micropost.rb +10 -0
- data/app/models/relationship.rb +9 -0
- data/app/models/search.rb +17 -0
- data/app/models/state.rb +3 -0
- data/app/models/system_ability.rb +16 -0
- data/app/models/system_module.rb +16 -0
- data/app/models/system_task_resolution.rb +26 -0
- data/app/models/system_task_status.rb +19 -0
- data/app/models/task.rb +76 -0
- data/app/models/task_feedback.rb +11 -0
- data/app/models/task_type.rb +12 -0
- data/app/models/tests.rb +5 -0
- data/app/models/tests/ajax.rb +3 -0
- data/app/models/user.rb +126 -0
- data/app/models/user_ability.rb +23 -0
- data/app/models/user_group.rb +9 -0
- data/app/models/user_type.rb +9 -0
- data/app/models/users_has_groups.rb +9 -0
- data/app/validators/customer_cnpj_validator.rb +14 -0
- data/app/validators/email_validator.rb +21 -0
- data/app/views/abilities/index.html.erb +25 -0
- data/app/views/active_extend/_one_to_many_inputs.html.erb +7 -0
- data/app/views/active_extend/_one_to_many_inputs_fields.html.erb +10 -0
- data/app/views/active_extend/_one_to_many_inputs_with_glyph.html.erb +21 -0
- data/app/views/business_activities/_business_activity.html.erb +0 -0
- data/app/views/business_activities/_form.html.erb +25 -0
- data/app/views/business_activities/edit.html.erb +6 -0
- data/app/views/business_activities/index.html.erb +33 -0
- data/app/views/business_activities/new.html.erb +5 -0
- data/app/views/business_activities/show.html.erb +15 -0
- data/app/views/business_departments/_form.html.erb +10 -0
- data/app/views/business_departments/edit.html.erb +6 -0
- data/app/views/business_departments/index.html.erb +33 -0
- data/app/views/business_departments/new.html.erb +5 -0
- data/app/views/business_departments/show.html.erb +15 -0
- data/app/views/business_segments/_business_segment.html.erb +8 -0
- data/app/views/business_segments/_form.html.erb +25 -0
- data/app/views/business_segments/edit.html.erb +6 -0
- data/app/views/business_segments/index.html.erb +33 -0
- data/app/views/business_segments/new.html.erb +5 -0
- data/app/views/business_segments/show.html.erb +15 -0
- data/app/views/company_businesses/_form.html.erb +10 -0
- data/app/views/company_businesses/edit.html.erb +6 -0
- data/app/views/company_businesses/index.html.erb +25 -0
- data/app/views/company_businesses/new.html.erb +5 -0
- data/app/views/company_businesses/show.html.erb +15 -0
- data/app/views/contacts/_form.html.erb +53 -0
- data/app/views/contacts/_header.html.erb +3 -0
- data/app/views/contacts/_list.html.erb +46 -0
- data/app/views/contacts/_side_panel.html.erb +61 -0
- data/app/views/contacts/edit.html.erb +6 -0
- data/app/views/contacts/index.html.erb +72 -0
- data/app/views/contacts/new.html.erb +5 -0
- data/app/views/contacts/show.html.erb +52 -0
- data/app/views/customers/_businesses_done.html.erb +18 -0
- data/app/views/customers/_customer_segment.html.erb +9 -0
- data/app/views/customers/_form.html.erb +177 -0
- data/app/views/customers/_form_search.html.erb +119 -0
- data/app/views/customers/_modules.html.erb +6 -0
- data/app/views/customers/_navbar.html.erb +23 -0
- data/app/views/customers/_segment.html.erb +10 -0
- data/app/views/customers/edit.html.erb +8 -0
- data/app/views/customers/index.html.erb +46 -0
- data/app/views/customers/new.pj.html.erb +4 -0
- data/app/views/customers/show.pj.html.erb +200 -0
- data/app/views/devise/confirmations/new.html.erb +12 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +16 -0
- data/app/views/devise/passwords/new.html.erb +12 -0
- data/app/views/devise/registrations/edit.html.erb +25 -0
- data/app/views/devise/registrations/new.html.erb +18 -0
- data/app/views/devise/sessions/new.html.erb +24 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +12 -0
- data/app/views/emails/_email_fields.html.erb +1 -0
- data/app/views/layouts/_active_admin_footer.html.erb +4 -0
- data/app/views/layouts/_active_admin_header.html.erb +5 -0
- data/app/views/layouts/_footer.html.erb +12 -0
- data/app/views/layouts/_header.html.erb +51 -0
- data/app/views/layouts/_shim.html.erb +3 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/app/views/layouts/application.html.erb +24 -0
- data/app/views/microposts/_micropost.html.erb +11 -0
- data/app/views/sessions/new.html.erb +18 -0
- data/app/views/shared/_calendar.html.erb +17 -0
- data/app/views/shared/_error_messages.html.erb +13 -0
- data/app/views/shared/_feed.html.erb +10 -0
- data/app/views/shared/_feed_item.html.erb +15 -0
- data/app/views/shared/_micropost_form.html.erb +7 -0
- data/app/views/shared/_multi_selection.html.erb +16 -0
- data/app/views/shared/_multi_selection.html_checkbox.erb +11 -0
- data/app/views/shared/_multi_selection_autocomple.html.erb +5 -0
- data/app/views/shared/_notifies.html.erb +17 -0
- data/app/views/shared/_user_info.html.erb +14 -0
- data/app/views/static_pages/about.html.erb +5 -0
- data/app/views/static_pages/contact.html.erb +5 -0
- data/app/views/static_pages/help.html.erb +5 -0
- data/app/views/static_pages/home.html.erb +37 -0
- data/app/views/static_pages/news.html.erb +2 -0
- data/app/views/system_task_status/_form.html.erb +9 -0
- data/app/views/system_task_status/edit.html.erb +6 -0
- data/app/views/system_task_status/index.html.erb +23 -0
- data/app/views/system_task_status/new.html.erb +5 -0
- data/app/views/system_task_status/show.html.erb +10 -0
- data/app/views/task_feedbacks/_list.html.erb +51 -0
- data/app/views/task_feedbacks/_side_form.html.erb +56 -0
- data/app/views/task_feedbacks/_side_panel.html.erb +64 -0
- data/app/views/task_types/_form.html.erb +10 -0
- data/app/views/task_types/edit.html.erb +6 -0
- data/app/views/task_types/index.html.erb +23 -0
- data/app/views/task_types/new.html.erb +5 -0
- data/app/views/task_types/show.html.erb +10 -0
- data/app/views/tasks/_form.html.erb +52 -0
- data/app/views/tasks/_header.html.erb +3 -0
- data/app/views/tasks/_list.html.erb +50 -0
- data/app/views/tasks/_side_panel.html.erb +64 -0
- data/app/views/tasks/create.js.erb +1 -0
- data/app/views/tasks/edit.html.erb +6 -0
- data/app/views/tasks/index.html.erb +61 -0
- data/app/views/tasks/new.html.erb +5 -0
- data/app/views/tasks/show.html.erb +46 -0
- data/app/views/tests/ajaxes/_form.html.erb +10 -0
- data/app/views/tests/ajaxes/_list.html.erb +6 -0
- data/app/views/tests/ajaxes/add_and_update.html.erb +22 -0
- data/app/views/tests/ajaxes/all.js.erb +2 -0
- data/app/views/tests/ajaxes/edit.html.erb +6 -0
- data/app/views/tests/ajaxes/index.html.erb +25 -0
- data/app/views/tests/ajaxes/new.html.erb +5 -0
- data/app/views/tests/ajaxes/show.html.erb +15 -0
- data/app/views/tests/js.js +51 -0
- data/app/views/tests/lab_ajax/multiselection.html.erb +84 -0
- data/app/views/users/_user.html.erb +8 -0
- data/app/views/users/edit.html.erb +27 -0
- data/app/views/users/index.html.erb +9 -0
- data/app/views/users/new.html.erb +24 -0
- data/app/views/users/show.html.erb +26 -0
- data/bundle +0 -0
- data/config.ru +4 -0
- data/config/application.rb +73 -0
- data/config/boot.rb +6 -0
- data/config/database.yml +38 -0
- data/config/environment.rb +31 -0
- data/config/environments/development.rb +42 -0
- data/config/environments/production.rb +68 -0
- data/config/environments/test.rb +39 -0
- data/config/guara/menus.rb +34 -0
- data/config/initializers/active_admin.rb +210 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/cmgb_rules.rb +2 -0
- data/config/initializers/devise.rb +216 -0
- data/config/initializers/formtastic.rb +77 -0
- data/config/initializers/inflections.rb +19 -0
- data/config/initializers/json_paches_utf8.rb +13 -0
- data/config/initializers/kaminari.rb +21 -0
- data/config/initializers/locale.rb +7 -0
- data/config/initializers/meta_search.rb +10 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +8 -0
- data/config/initializers/string.rb +9 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/devise.en.yml +57 -0
- data/config/locales/devise.pt-BR.yml +62 -0
- data/config/locales/pt-BR.yml +404 -0
- data/config/routes.rb +129 -0
- data/db/migrate/20120610142404_create_users.rb +10 -0
- data/db/migrate/20120610183820_add_index_to_users_email.rb +5 -0
- data/db/migrate/20120610185217_add_password_digest_to_users.rb +5 -0
- data/db/migrate/20120612000411_add_remember_token_to_users.rb +6 -0
- data/db/migrate/20120616162515_add_admin_to_users.rb +5 -0
- data/db/migrate/20120616215835_create_microposts.rb +11 -0
- data/db/migrate/20120617224530_create_relationships.rb +14 -0
- data/db/migrate/20120621095918_create_customers.rb +36 -0
- data/db/migrate/20120621100528_create_customer_pfs.rb +14 -0
- data/db/migrate/20120621100534_create_customer_pjs.rb +13 -0
- data/db/migrate/20120621100557_create_emails.rb +13 -0
- data/db/migrate/20120621100618_create_tasks.rb +26 -0
- data/db/migrate/20120621100639_create_customer_products.rb +14 -0
- data/db/migrate/20120621100705_create_districts.rb +11 -0
- data/db/migrate/20120621100720_create_cities.rb +11 -0
- data/db/migrate/20120624192444_create_business_segments.rb +10 -0
- data/db/migrate/20120624224245_create_business_activities.rb +13 -0
- data/db/migrate/20120628092744_create_customer_activities.rb +9 -0
- data/db/migrate/20120628092754_create_customer_segments.rb +9 -0
- data/db/migrate/20120703102859_create_states.rb +10 -0
- data/db/migrate/20120705121011_create_contacts.rb +18 -0
- data/db/migrate/20120711233943_add_devise_to_users.rb +56 -0
- data/db/migrate/20120723102847_create_user_abilities.rb +10 -0
- data/db/migrate/20120723104500_create_system_modules.rb +9 -0
- data/db/migrate/20120723104639_create_system_abilities.rb +9 -0
- data/db/migrate/20120728181903_create_user_groups.rb +10 -0
- data/db/migrate/20120729112600_create_users_has_groups.rb +14 -0
- data/db/migrate/20120729121922_add_groups_to_users.rb +6 -0
- data/db/migrate/20120910002835_create_system_task_status.rb +7 -0
- data/db/migrate/20120910010153_create_system_task_resolutions.rb +7 -0
- data/db/migrate/20120911021535_create_task_types.rb +10 -0
- data/db/migrate/20120911070836_create_task_feedbacks.rb +14 -0
- data/db/migrate/20120924022719_create_tests_ajaxes.rb +10 -0
- data/db/migrate/20121007131035_create_business_departments.rb +10 -0
- data/db/migrate/20121013120849_add_notes_and_other_contacts_to_customer.rb +5 -0
- data/db/migrate/20121014201255_create_company_businesses.rb +10 -0
- data/db/migrate/20121014202449_add_company_business_to_task_type.rb +6 -0
- data/db/migrate/20121014212430_add_primary_company_business_to_user.rb +5 -0
- data/db/migrate/20121015101844_add_parent_id_to_system_task_resolution.rb +5 -0
- data/db/migrate/20121026231241_create_customer_has_customers.rb +10 -0
- data/db/migrate/20121026232755_create_customer_pj_has_customers_pjs.rb +10 -0
- data/db/migrate/20121029094047_create_admin_notes.rb +17 -0
- data/db/migrate/20121029094048_move_admin_notes_to_comments.rb +25 -0
- data/db/migrate/20121103183646_add_enabled_to_cities.rb +5 -0
- data/db/migrate/20121104135014_create_customer_financials.rb +17 -0
- data/db/migrate/20121104141751_create_addresses.rb +19 -0
- data/db/migrate/20121205150619_add_type_id_to_users.rb +5 -0
- data/db/schema.rb~ +378 -0
- data/db/seeds.rb +99 -0
- data/gemfiles/Gemfile.rails.3.2.x +82 -0
- data/guara.gemspec +31 -0
- data/lib/active_extend/README.md +19 -0
- data/lib/active_extend/active_disablable.rb +59 -0
- data/lib/active_extend/string_helper.rb +9 -0
- data/lib/active_migration.rb +4 -0
- data/lib/active_migration/converters/rtf_to_html.rb +123 -0
- data/lib/active_migration/dictionary.rb +19 -0
- data/lib/active_migration/migration.rb +211 -0
- data/lib/active_migration/schemas.rb +143 -0
- data/lib/active_migration/spelling_fix.rb +20 -0
- data/lib/active_migration/transformer/grouped_field_fixed_spelling.rb +110 -0
- data/lib/assets/.gitkeep +0 -0
- data/lib/cmgb_rules/app/models/task.rb +19 -0
- data/lib/guara/version.rb +3 -0
- data/lib/spec/asserts/sheet1.xls +0 -0
- data/lib/spec/lib/active_migration_schemas_spec.rb +40 -0
- data/lib/spec/lib/active_migration_spec.rb +78 -0
- data/lib/spec/spec_helper.rb +121 -0
- data/lib/spec/support/active_migration_helper.rb +109 -0
- data/lib/spec/support/utilities.rb +7 -0
- data/lib/tasks/.gitkeep +0 -0
- data/lib/tasks/add_privilegies.rake +6 -0
- data/lib/tasks/external_migration.rake +22 -0
- data/lib/tasks/sample_data.rake +77 -0
- data/lib/tasks/smaple_data_test.rake +13 -0
- data/lib/templates/erb/scaffold/_form.html.erb +11 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +25 -0
- data/public/data.txt +1 -0
- data/public/favicon.ico +0 -0
- data/public/javascripts/autocomplete-rails.js +16 -0
- data/public/robots.txt +5 -0
- data/script/create_db +5 -0
- data/script/rails +6 -0
- data/script/recreate_db +5 -0
- data/script/recreate_db.bat +9 -0
- data/script/recreate_db_test +5 -0
- data/script/recreate_development_db +10 -0
- data/spec/controllers/business_activities_controller_spec.disabled +167 -0
- data/spec/controllers/business_departments_controller_spec.disabled +164 -0
- data/spec/controllers/business_segments_controller_spec.disabled +165 -0
- data/spec/controllers/company_businesses_controller_spec.disabled +164 -0
- data/spec/controllers/system_task_status_controller_spec.disabled +164 -0
- data/spec/controllers/system_task_status_spec.disabled +11 -0
- data/spec/controllers/task_types_controller_spec.disabled +164 -0
- data/spec/controllers/tasks_controller_spec.disabled +23 -0
- data/spec/controllers/tests/ajaxes_controller_spec.disabled +164 -0
- data/spec/factories.rb +101 -0
- data/spec/factories/addresses.rb +13 -0
- data/spec/factories/business_departments.rb +8 -0
- data/spec/factories/company_businesses.rb +8 -0
- data/spec/factories/customer_financials.rb +11 -0
- data/spec/factories/customer_has_customers.rb +8 -0
- data/spec/factories/customer_pj_has_customers_pjs.rb +8 -0
- data/spec/factories/system_task_resolutions.rb +7 -0
- data/spec/factories/system_task_status.rb +7 -0
- data/spec/factories/task.rb +17 -0
- data/spec/factories/task_feedbacks.rb +19 -0
- data/spec/factories/task_types.rb +8 -0
- data/spec/factories/tests_ajaxes.rb +8 -0
- data/spec/helpers/business_activities_helper_spec.rb +15 -0
- data/spec/helpers/business_departments_helper_spec.rb +15 -0
- data/spec/helpers/business_segments_helper_spec.rb +15 -0
- data/spec/helpers/company_businesses_helper_spec.rb +15 -0
- data/spec/helpers/customers/contacts_helper_spec.rb +15 -0
- data/spec/helpers/menu_helper_spec.rb +25 -0
- data/spec/helpers/tests/ajaxes_helper_spec.rb +15 -0
- data/spec/helpers/users_helpers_spec.rb +32 -0
- data/spec/models/address_spec.rb +5 -0
- data/spec/models/business_activity_spec.rb +5 -0
- data/spec/models/business_department_spec.rb +5 -0
- data/spec/models/business_segment_spec.rb +5 -0
- data/spec/models/city_spec.rb +5 -0
- data/spec/models/company_business_spec.rb +19 -0
- data/spec/models/contact_spec.rb +60 -0
- data/spec/models/customer_activity_spec.rb +5 -0
- data/spec/models/customer_financial_spec.rb +48 -0
- data/spec/models/customer_has_customers_spec.rb +18 -0
- data/spec/models/customer_pf_spec.rb +24 -0
- data/spec/models/customer_pj_has_customers_pj_spec.rb +34 -0
- data/spec/models/customer_pj_spec.rb +72 -0
- data/spec/models/customer_product_spec.rb +5 -0
- data/spec/models/customer_segment_spec.rb +5 -0
- data/spec/models/customer_spec.rb +135 -0
- data/spec/models/district_spec.rb +5 -0
- data/spec/models/emails_spec.rb +24 -0
- data/spec/models/micropost_spec.rb +49 -0
- data/spec/models/relationship_spec.rb +38 -0
- data/spec/models/state_spec.rb +5 -0
- data/spec/models/system_ability_spec.rb +5 -0
- data/spec/models/system_module_spec.rb +5 -0
- data/spec/models/system_task_resolution_spec.rb +17 -0
- data/spec/models/system_task_status_spec.rb +17 -0
- data/spec/models/task_feedback_spec.rb +46 -0
- data/spec/models/task_spec.rb +176 -0
- data/spec/models/task_type_spec.rb +27 -0
- data/spec/models/tests/ajax_spec.rb +5 -0
- data/spec/models/user_ability_spec.rb +35 -0
- data/spec/models/user_group_spec.rb +26 -0
- data/spec/models/user_spec.rb +274 -0
- data/spec/models/users_has_groups_spec.rb +29 -0
- data/spec/requests/authentication_pages_spec.rb +157 -0
- data/spec/requests/business_activities_spec.rb +7 -0
- data/spec/requests/business_departments_spec.rb +7 -0
- data/spec/requests/business_segments_spec.rb +7 -0
- data/spec/requests/company_businesses_spec.rb +11 -0
- data/spec/requests/customer_contacts_pages_spec.rb +96 -0
- data/spec/requests/customer_pages_spec.rb +60 -0
- data/spec/requests/micropost_pages_spec.rb +58 -0
- data/spec/requests/static_pages_spec.rb +57 -0
- data/spec/requests/task_pages_spec.rb +124 -0
- data/spec/requests/tests/tests_ajaxes_spec.rb +11 -0
- data/spec/requests/user_abilities_pages_spec.rb +73 -0
- data/spec/requests/user_pages_spec.rb +116 -0
- data/spec/routing/business_activities_routing_spec.rb +35 -0
- data/spec/routing/business_departments_routing_spec.rb +35 -0
- data/spec/routing/business_segments_routing_spec.rb +35 -0
- data/spec/routing/company_businesses_routing_spec.rb +35 -0
- data/spec/routing/system_task_status_routing_spec.rb +35 -0
- data/spec/routing/task_types_routing_spec.rb +35 -0
- data/spec/routing/tests/ajaxes_routing_spec.rb +35 -0
- data/spec/spec_helper.rb +123 -0
- data/spec/support/custom_matchers.rb +9 -0
- data/spec/support/utilities.rb +120 -0
- data/spec/views/business_departments/edit.html.erb_spec.rb +20 -0
- data/spec/views/business_departments/index.html.erb_spec.disabled +23 -0
- data/spec/views/business_departments/new.html.erb_spec.rb +20 -0
- data/spec/views/business_departments/show.html.erb_spec.rb +17 -0
- data/spec/views/company_businesses/edit.html.erb_spec.rb +20 -0
- data/spec/views/company_businesses/index.html.erb_spec.rb +23 -0
- data/spec/views/company_businesses/new.html.erb_spec.rb +20 -0
- data/spec/views/company_businesses/show.html.erb_spec.rb +17 -0
- data/spec/views/task_types/edit.html.erb_spec.rb +18 -0
- data/spec/views/task_types/index.html.erb_spec.rb +20 -0
- data/spec/views/task_types/new.html.erb_spec.rb +18 -0
- data/spec/views/task_types/show.html.erb_spec.rb +15 -0
- data/test/fixtures/.gitkeep +0 -0
- data/test/functional/.gitkeep +0 -0
- data/test/integration/.gitkeep +0 -0
- data/test/performance/browsing_test.rb +12 -0
- data/test/test_helper.rb +13 -0
- data/test/unit/.gitkeep +0 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/assets/stylesheets/active_admin/_base.css.scss +45 -0
- data/vendor/assets/stylesheets/active_admin/_forms.css.scss +270 -0
- data/vendor/assets/stylesheets/active_admin/_header.css.scss +137 -0
- data/vendor/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
- data/vendor/assets/stylesheets/active_admin/_typography.css.scss +100 -0
- data/vendor/assets/stylesheets/active_admin/components/_batch_actions.css.scss +11 -0
- data/vendor/assets/stylesheets/active_admin/components/_blank_slates.scss +31 -0
- data/vendor/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
- data/vendor/assets/stylesheets/active_admin/components/_buttons.scss +11 -0
- data/vendor/assets/stylesheets/active_admin/components/_columns.scss +3 -0
- data/vendor/assets/stylesheets/active_admin/components/_comments.css.scss +40 -0
- data/vendor/assets/stylesheets/active_admin/components/_date_picker.css.scss +123 -0
- data/vendor/assets/stylesheets/active_admin/components/_dropdown_menu.scss +151 -0
- data/vendor/assets/stylesheets/active_admin/components/_flash_messages.css.scss +39 -0
- data/vendor/assets/stylesheets/active_admin/components/_grid.scss +9 -0
- data/vendor/assets/stylesheets/active_admin/components/_links.scss +5 -0
- data/vendor/assets/stylesheets/active_admin/components/_pagination.scss +34 -0
- data/vendor/assets/stylesheets/active_admin/components/_panels.scss +6 -0
- data/vendor/assets/stylesheets/active_admin/components/_popovers.css.scss +123 -0
- data/vendor/assets/stylesheets/active_admin/components/_scopes.scss +10 -0
- data/vendor/assets/stylesheets/active_admin/components/_status_tags.scss +12 -0
- data/vendor/assets/stylesheets/active_admin/components/_table_tools.css.scss +94 -0
- data/vendor/assets/stylesheets/active_admin/components/_tables.css.scss +108 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_all.css.scss +11 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_buttons.css.scss +66 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_gradients.css.scss +37 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_icons.css.scss +24 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_reset.css.scss +165 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_rounded.css.scss +43 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_sections.css.scss +36 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_shadows.css.scss +22 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_utilities.scss +26 -0
- data/vendor/assets/stylesheets/active_admin/mixins/_variables.css.scss +24 -0
- data/vendor/assets/stylesheets/active_admin/pages/_dashboard.scss +5 -0
- data/vendor/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
- data/vendor/assets/stylesheets/active_admin/print.css.scss +290 -0
- data/vendor/assets/stylesheets/active_admin/structure/_footer.scss +14 -0
- data/vendor/assets/stylesheets/active_admin/structure/_main_structure.scss +26 -0
- data/vendor/assets/stylesheets/active_admin/structure/_title_bar.scss +44 -0
- data/vendor/plugins/.gitkeep +0 -0
- metadata +731 -0
@@ -0,0 +1,159 @@
|
|
1
|
+
|
2
|
+
@import "bootstrap/variables";
|
3
|
+
|
4
|
+
$rowHeight: 24px;
|
5
|
+
|
6
|
+
body .modal {
|
7
|
+
width: 880px;
|
8
|
+
margin: -298px 0 0 -440px;
|
9
|
+
form {
|
10
|
+
margin: 0;
|
11
|
+
}
|
12
|
+
|
13
|
+
.actions {
|
14
|
+
bottom: 15px;
|
15
|
+
left: 10px;
|
16
|
+
position: absolute;
|
17
|
+
}
|
18
|
+
}
|
19
|
+
|
20
|
+
.divisor {
|
21
|
+
width: 1px;
|
22
|
+
min-height: 100px;
|
23
|
+
height: auto;
|
24
|
+
margin: 10px;
|
25
|
+
background-color: #DADADA;
|
26
|
+
float: left;
|
27
|
+
}
|
28
|
+
|
29
|
+
.column2 {
|
30
|
+
border-left: 1px #DADADA solid;
|
31
|
+
padding-left: 10px;
|
32
|
+
margin-left: 10px;
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
.rows4 {
|
37
|
+
height: (4*$rowHeight);
|
38
|
+
}
|
39
|
+
|
40
|
+
.rows5 {
|
41
|
+
height: (5*$rowHeight);
|
42
|
+
}
|
43
|
+
|
44
|
+
.rows6 {
|
45
|
+
height: (6*$rowHeight);
|
46
|
+
}
|
47
|
+
|
48
|
+
.rows7 {
|
49
|
+
height: (7*$rowHeight);
|
50
|
+
}
|
51
|
+
|
52
|
+
.rows8 {
|
53
|
+
height: (8*$rowHeight);
|
54
|
+
}
|
55
|
+
|
56
|
+
/***** CUSTOMER *****/
|
57
|
+
|
58
|
+
.customer {
|
59
|
+
|
60
|
+
#emails {
|
61
|
+
|
62
|
+
input {
|
63
|
+
width: 180px;
|
64
|
+
}
|
65
|
+
|
66
|
+
legend small {
|
67
|
+
color: $grayDarker;
|
68
|
+
}
|
69
|
+
|
70
|
+
.remove_fields {
|
71
|
+
float: right;
|
72
|
+
margin-top: -36px;
|
73
|
+
margin-right: 2px;
|
74
|
+
height: 18px;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
/****** customer contacts *****/
|
80
|
+
|
81
|
+
.thumbnail.contacts {
|
82
|
+
overflow-y: scroll;
|
83
|
+
max-height: 240px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.contacts.side {
|
87
|
+
|
88
|
+
div#select_department {
|
89
|
+
float: right;
|
90
|
+
margin-top:-60px;
|
91
|
+
.dropdown-menu {
|
92
|
+
position: absolute;
|
93
|
+
margin-left: -150px;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
.contacts-list {
|
99
|
+
li {
|
100
|
+
margin-bottom: 10px;
|
101
|
+
border-bottom: 1px solid #EAEAEA;
|
102
|
+
padding-bottom: 5px;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
.form-actions {
|
107
|
+
margin: 0;
|
108
|
+
padding: 0;
|
109
|
+
border: 0;
|
110
|
+
}
|
111
|
+
|
112
|
+
/***** tasks *****/
|
113
|
+
|
114
|
+
.tasks {
|
115
|
+
.disabled {
|
116
|
+
display: none;
|
117
|
+
}
|
118
|
+
|
119
|
+
.enabled {
|
120
|
+
display: block;
|
121
|
+
}
|
122
|
+
.side {
|
123
|
+
.new {
|
124
|
+
background-color: #f1f1f1;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}
|
128
|
+
|
129
|
+
.tasks.side {
|
130
|
+
margin: -20px 0 0 0;
|
131
|
+
|
132
|
+
.tasks-list {
|
133
|
+
margin: 0;
|
134
|
+
li {
|
135
|
+
border: 0;
|
136
|
+
border-bottom: 1px solid #EEE;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
.new-link {
|
141
|
+
margin: 10px 0 0 0;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
.task-side.form {
|
146
|
+
.row {
|
147
|
+
margin-left: -5px;
|
148
|
+
}
|
149
|
+
|
150
|
+
[class*="span"] {
|
151
|
+
float: left;
|
152
|
+
margin-left: 5px;
|
153
|
+
}
|
154
|
+
|
155
|
+
.column2 {
|
156
|
+
margin: 5px 5px 5px 15px;
|
157
|
+
}
|
158
|
+
|
159
|
+
}
|
@@ -0,0 +1,567 @@
|
|
1
|
+
/* curl http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/base/jquery-ui.css > app/assets/stylesheets/jquery-ui.css */
|
2
|
+
/*
|
3
|
+
* jQuery UI CSS Framework 1.8.16
|
4
|
+
*
|
5
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
6
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
7
|
+
* http://jquery.org/license
|
8
|
+
*
|
9
|
+
* http://docs.jquery.com/UI/Theming/API
|
10
|
+
*/
|
11
|
+
|
12
|
+
/* Layout helpers
|
13
|
+
----------------------------------*/
|
14
|
+
.ui-helper-hidden { display: none; }
|
15
|
+
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
16
|
+
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
17
|
+
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
18
|
+
.ui-helper-clearfix { display: inline-block; }
|
19
|
+
/* required comment for clearfix to work in Opera \*/
|
20
|
+
* html .ui-helper-clearfix { height:1%; }
|
21
|
+
.ui-helper-clearfix { display:block; }
|
22
|
+
/* end clearfix */
|
23
|
+
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
24
|
+
|
25
|
+
|
26
|
+
/* Interaction Cues
|
27
|
+
----------------------------------*/
|
28
|
+
.ui-state-disabled { cursor: default !important; }
|
29
|
+
|
30
|
+
|
31
|
+
/* Icons
|
32
|
+
----------------------------------*/
|
33
|
+
|
34
|
+
/* states and images */
|
35
|
+
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
36
|
+
|
37
|
+
|
38
|
+
/* Misc visuals
|
39
|
+
----------------------------------*/
|
40
|
+
|
41
|
+
/* Overlays */
|
42
|
+
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
43
|
+
/*
|
44
|
+
* jQuery UI Accordion 1.8.16
|
45
|
+
*
|
46
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
47
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
48
|
+
* http://jquery.org/license
|
49
|
+
*
|
50
|
+
* http://docs.jquery.com/UI/Accordion#theming
|
51
|
+
*/
|
52
|
+
/* IE/Win - Fix animation bug - #4615 */
|
53
|
+
.ui-accordion { width: 100%; }
|
54
|
+
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
|
55
|
+
.ui-accordion .ui-accordion-li-fix { display: inline; }
|
56
|
+
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
|
57
|
+
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
|
58
|
+
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
|
59
|
+
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
60
|
+
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
|
61
|
+
.ui-accordion .ui-accordion-content-active { display: block; }
|
62
|
+
/*
|
63
|
+
* jQuery UI Autocomplete 1.8.16
|
64
|
+
*
|
65
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
66
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
67
|
+
* http://jquery.org/license
|
68
|
+
*
|
69
|
+
* http://docs.jquery.com/UI/Autocomplete#theming
|
70
|
+
*/
|
71
|
+
.ui-autocomplete { position: absolute; cursor: default; }
|
72
|
+
|
73
|
+
/* workarounds */
|
74
|
+
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
75
|
+
|
76
|
+
/*
|
77
|
+
* jQuery UI Menu 1.8.16
|
78
|
+
*
|
79
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
80
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
81
|
+
* http://jquery.org/license
|
82
|
+
*
|
83
|
+
* http://docs.jquery.com/UI/Menu#theming
|
84
|
+
*/
|
85
|
+
.ui-menu {
|
86
|
+
list-style:none;
|
87
|
+
padding: 2px;
|
88
|
+
margin: 0;
|
89
|
+
display:block;
|
90
|
+
float: left;
|
91
|
+
}
|
92
|
+
.ui-menu .ui-menu {
|
93
|
+
margin-top: -3px;
|
94
|
+
}
|
95
|
+
.ui-menu .ui-menu-item {
|
96
|
+
margin:0;
|
97
|
+
padding: 0;
|
98
|
+
zoom: 1;
|
99
|
+
float: left;
|
100
|
+
clear: left;
|
101
|
+
width: 100%;
|
102
|
+
}
|
103
|
+
.ui-menu .ui-menu-item a {
|
104
|
+
text-decoration:none;
|
105
|
+
display:block;
|
106
|
+
padding:.2em .4em;
|
107
|
+
line-height:1.5;
|
108
|
+
zoom:1;
|
109
|
+
}
|
110
|
+
.ui-menu .ui-menu-item a.ui-state-hover,
|
111
|
+
.ui-menu .ui-menu-item a.ui-state-active {
|
112
|
+
font-weight: normal;
|
113
|
+
margin: -1px;
|
114
|
+
}
|
115
|
+
/*
|
116
|
+
* jQuery UI Button 1.8.16
|
117
|
+
*
|
118
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
119
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
120
|
+
* http://jquery.org/license
|
121
|
+
*
|
122
|
+
* http://docs.jquery.com/UI/Button#theming
|
123
|
+
*/
|
124
|
+
.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
|
125
|
+
.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
|
126
|
+
button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
|
127
|
+
.ui-button-icons-only { width: 3.4em; }
|
128
|
+
button.ui-button-icons-only { width: 3.7em; }
|
129
|
+
|
130
|
+
/*button text element */
|
131
|
+
.ui-button .ui-button-text { display: block; line-height: 1.4; }
|
132
|
+
.ui-button-text-only .ui-button-text { padding: .4em 1em; }
|
133
|
+
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
|
134
|
+
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
|
135
|
+
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
|
136
|
+
.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
|
137
|
+
/* no icon support for input elements, provide padding by default */
|
138
|
+
input.ui-button { padding: .4em 1em; }
|
139
|
+
|
140
|
+
/*button icon element(s) */
|
141
|
+
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
|
142
|
+
.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
|
143
|
+
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
|
144
|
+
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
145
|
+
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
|
146
|
+
|
147
|
+
/*button sets*/
|
148
|
+
.ui-buttonset { margin-right: 7px; }
|
149
|
+
.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
|
150
|
+
|
151
|
+
/* workarounds */
|
152
|
+
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
|
153
|
+
/*
|
154
|
+
* jQuery UI Datepicker 1.8.16
|
155
|
+
*
|
156
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
157
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
158
|
+
* http://jquery.org/license
|
159
|
+
*
|
160
|
+
* http://docs.jquery.com/UI/Datepicker#theming
|
161
|
+
*/
|
162
|
+
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
|
163
|
+
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
164
|
+
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
165
|
+
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
166
|
+
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
167
|
+
.ui-datepicker .ui-datepicker-next { right:2px; }
|
168
|
+
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
169
|
+
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
170
|
+
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
|
171
|
+
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
172
|
+
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
173
|
+
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
174
|
+
.ui-datepicker select.ui-datepicker-month,
|
175
|
+
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
176
|
+
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
177
|
+
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
178
|
+
.ui-datepicker td { border: 0; padding: 1px; }
|
179
|
+
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
180
|
+
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
181
|
+
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
182
|
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
183
|
+
|
184
|
+
/* with multiple calendars */
|
185
|
+
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
186
|
+
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
187
|
+
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
188
|
+
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
189
|
+
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
190
|
+
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
191
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
192
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
193
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
194
|
+
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
|
195
|
+
|
196
|
+
/* RTL support */
|
197
|
+
.ui-datepicker-rtl { direction: rtl; }
|
198
|
+
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
199
|
+
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
200
|
+
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
201
|
+
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
202
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
203
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
204
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
205
|
+
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
206
|
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
207
|
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
208
|
+
|
209
|
+
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
210
|
+
.ui-datepicker-cover {
|
211
|
+
display: none; /*sorry for IE5*/
|
212
|
+
display/**/: block; /*sorry for IE5*/
|
213
|
+
position: absolute; /*must have*/
|
214
|
+
z-index: -1; /*must have*/
|
215
|
+
filter: mask(); /*must have*/
|
216
|
+
top: -4px; /*must have*/
|
217
|
+
left: -4px; /*must have*/
|
218
|
+
width: 200px; /*must have*/
|
219
|
+
height: 200px; /*must have*/
|
220
|
+
}/*
|
221
|
+
* jQuery UI Dialog 1.8.16
|
222
|
+
*
|
223
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
224
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
225
|
+
* http://jquery.org/license
|
226
|
+
*
|
227
|
+
* http://docs.jquery.com/UI/Dialog#theming
|
228
|
+
*/
|
229
|
+
.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
|
230
|
+
.ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
|
231
|
+
.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
|
232
|
+
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
233
|
+
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
234
|
+
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
235
|
+
.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
236
|
+
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
237
|
+
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
|
238
|
+
.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
|
239
|
+
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
240
|
+
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
241
|
+
/*
|
242
|
+
* jQuery UI Progressbar 1.8.16
|
243
|
+
*
|
244
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
245
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
246
|
+
* http://jquery.org/license
|
247
|
+
*
|
248
|
+
* http://docs.jquery.com/UI/Progressbar#theming
|
249
|
+
*/
|
250
|
+
.ui-progressbar { height:2em; text-align: left; }
|
251
|
+
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/*
|
252
|
+
* jQuery UI Resizable 1.8.16
|
253
|
+
*
|
254
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
255
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
256
|
+
* http://jquery.org/license
|
257
|
+
*
|
258
|
+
* http://docs.jquery.com/UI/Resizable#theming
|
259
|
+
*/
|
260
|
+
.ui-resizable { position: relative;}
|
261
|
+
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; }
|
262
|
+
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
263
|
+
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
|
264
|
+
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
|
265
|
+
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
|
266
|
+
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
|
267
|
+
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
268
|
+
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
269
|
+
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
270
|
+
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
|
271
|
+
* jQuery UI Selectable 1.8.16
|
272
|
+
*
|
273
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
274
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
275
|
+
* http://jquery.org/license
|
276
|
+
*
|
277
|
+
* http://docs.jquery.com/UI/Selectable#theming
|
278
|
+
*/
|
279
|
+
.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
|
280
|
+
/*
|
281
|
+
* jQuery UI Slider 1.8.16
|
282
|
+
*
|
283
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
284
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
285
|
+
* http://jquery.org/license
|
286
|
+
*
|
287
|
+
* http://docs.jquery.com/UI/Slider#theming
|
288
|
+
*/
|
289
|
+
.ui-slider { position: relative; text-align: left; }
|
290
|
+
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
291
|
+
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
|
292
|
+
|
293
|
+
.ui-slider-horizontal { height: .8em; }
|
294
|
+
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
295
|
+
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
296
|
+
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
297
|
+
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
298
|
+
|
299
|
+
.ui-slider-vertical { width: .8em; height: 100px; }
|
300
|
+
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
301
|
+
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
302
|
+
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
303
|
+
.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
|
304
|
+
* jQuery UI Tabs 1.8.16
|
305
|
+
*
|
306
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
307
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
308
|
+
* http://jquery.org/license
|
309
|
+
*
|
310
|
+
* http://docs.jquery.com/UI/Tabs#theming
|
311
|
+
*/
|
312
|
+
.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
313
|
+
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
|
314
|
+
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
|
315
|
+
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
|
316
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
|
317
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
|
318
|
+
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
319
|
+
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
|
320
|
+
.ui-tabs .ui-tabs-hide { display: none !important; }
|
321
|
+
/*
|
322
|
+
* jQuery UI CSS Framework 1.8.16
|
323
|
+
*
|
324
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
325
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
326
|
+
* http://jquery.org/license
|
327
|
+
*
|
328
|
+
* http://docs.jquery.com/UI/Theming/API
|
329
|
+
*
|
330
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/
|
331
|
+
*/
|
332
|
+
|
333
|
+
|
334
|
+
/* Component containers
|
335
|
+
----------------------------------*/
|
336
|
+
.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
|
337
|
+
.ui-widget .ui-widget { font-size: 1em; }
|
338
|
+
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
|
339
|
+
.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
|
340
|
+
.ui-widget-content a { color: #222222/*{fcContent}*/; }
|
341
|
+
.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
|
342
|
+
.ui-widget-header a { color: #222222/*{fcHeader}*/; }
|
343
|
+
|
344
|
+
/* Interaction states
|
345
|
+
----------------------------------*/
|
346
|
+
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
|
347
|
+
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
|
348
|
+
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
|
349
|
+
.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; }
|
350
|
+
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
|
351
|
+
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
|
352
|
+
.ui-widget :active { outline: none; }
|
353
|
+
|
354
|
+
/* Interaction Cues
|
355
|
+
----------------------------------*/
|
356
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
|
357
|
+
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
|
358
|
+
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
|
359
|
+
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
|
360
|
+
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
|
361
|
+
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
362
|
+
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
363
|
+
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
364
|
+
|
365
|
+
/* Icons
|
366
|
+
----------------------------------*/
|
367
|
+
|
368
|
+
/* states and images */
|
369
|
+
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
|
370
|
+
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
|
371
|
+
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
|
372
|
+
.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
|
373
|
+
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; }
|
374
|
+
.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; }
|
375
|
+
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
|
376
|
+
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }
|
377
|
+
|
378
|
+
/* positioning */
|
379
|
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
380
|
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
381
|
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
382
|
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
383
|
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
384
|
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
385
|
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
386
|
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
387
|
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
388
|
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
389
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
390
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
391
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
392
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
393
|
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
394
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
395
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
396
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
397
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
398
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
399
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
400
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
401
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
402
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
403
|
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
404
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
405
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
406
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
407
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
408
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
409
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
410
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
411
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
412
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
413
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
414
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
415
|
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
416
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
417
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
418
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
419
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
420
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
421
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
422
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
423
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
424
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
425
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
426
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
427
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
428
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
429
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
430
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
431
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
432
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
433
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
434
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
435
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
436
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
437
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
438
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
439
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
440
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
441
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
442
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
443
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
444
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
445
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
446
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
447
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
448
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
449
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
450
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
451
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
452
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
453
|
+
.ui-icon-document { background-position: -32px -96px; }
|
454
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
455
|
+
.ui-icon-note { background-position: -64px -96px; }
|
456
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
457
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
458
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
459
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
460
|
+
.ui-icon-person { background-position: -144px -96px; }
|
461
|
+
.ui-icon-print { background-position: -160px -96px; }
|
462
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
463
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
464
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
465
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
466
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
467
|
+
.ui-icon-home { background-position: 0 -112px; }
|
468
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
469
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
470
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
471
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
472
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
473
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
474
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
475
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
476
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
477
|
+
.ui-icon-search { background-position: -160px -112px; }
|
478
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
479
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
480
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
481
|
+
.ui-icon-star { background-position: -224px -112px; }
|
482
|
+
.ui-icon-link { background-position: -240px -112px; }
|
483
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
484
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
485
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
486
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
487
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
488
|
+
.ui-icon-close { background-position: -80px -128px; }
|
489
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
490
|
+
.ui-icon-key { background-position: -112px -128px; }
|
491
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
492
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
493
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
494
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
495
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
496
|
+
.ui-icon-image { background-position: -208px -128px; }
|
497
|
+
.ui-icon-video { background-position: -224px -128px; }
|
498
|
+
.ui-icon-script { background-position: -240px -128px; }
|
499
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
500
|
+
.ui-icon-info { background-position: -16px -144px; }
|
501
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
502
|
+
.ui-icon-help { background-position: -48px -144px; }
|
503
|
+
.ui-icon-check { background-position: -64px -144px; }
|
504
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
505
|
+
.ui-icon-radio-off { background-position: -96px -144px; }
|
506
|
+
.ui-icon-radio-on { background-position: -112px -144px; }
|
507
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
508
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
509
|
+
.ui-icon-play { background-position: 0 -160px; }
|
510
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
511
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
512
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
513
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
514
|
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
515
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
516
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
517
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
518
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
519
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
520
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
521
|
+
.ui-icon-power { background-position: 0 -176px; }
|
522
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
523
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
524
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
525
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
526
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
527
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
528
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
529
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
530
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
531
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
532
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
533
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
534
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
535
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
536
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
537
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
538
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
539
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
540
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
541
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
542
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
543
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
544
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
545
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
546
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
547
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
548
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
549
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
550
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
551
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
552
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
553
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
554
|
+
|
555
|
+
|
556
|
+
/* Misc visuals
|
557
|
+
----------------------------------*/
|
558
|
+
|
559
|
+
/* Corner radius */
|
560
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -khtml-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
|
561
|
+
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -khtml-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
|
562
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
|
563
|
+
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; -khtml-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
|
564
|
+
|
565
|
+
/* Overlays */
|
566
|
+
.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
|
567
|
+
.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -khtml-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }
|