rules_engine 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/app/views/re_history/_index_update.html.erb +7 -5
- data/app/views/re_history/_show.html.erb +1 -1
- data/app/views/re_plans/_change.html.erb +1 -1
- data/app/views/re_plans/_index.html.erb +1 -1
- data/app/views/re_plans/_show.html.erb +1 -1
- data/app/views/re_publications/_show_update.html.erb +6 -5
- data/generators/manifests/templates/public/stylesheets/rules_engine/rules_engine.css +12 -4
- data/generators/manifests/templates/public/stylesheets/rules_engine/screen.css +7 -1
- data/lib/rules_engine/cache.rb +1 -1
- data/lib/rules_engine/discovery.rb +1 -1
- data/spec/lib/rules_engine/cache_spec.rb +2 -4
- data/spec/rails_3_0_0_root/Gemfile +1 -1
- data/spec/rails_3_0_0_root/Gemfile.lock +18 -16
- data/spec/rails_3_0_0_root/config/initializers/rules_engine.rb +17 -0
- data/spec/rails_3_0_0_root/db/migrate/20100308225008_create_rules_engine.rb +100 -0
- data/spec/rails_3_0_0_root/doc/README.rules_engine +170 -0
- data/spec/rails_3_0_0_root/doc/README.rules_engine_view +97 -0
- data/spec/rails_3_0_0_root/log/test.log +22192 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/jquery-1.4.2.min.js +154 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/jquery.autocomplete.pack.js +13 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/jquery.blockUI.js +486 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/jquery.fancybox-1.3.1.js +1077 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_history_index.js +43 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_history_show.js +18 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_plan_change.js +117 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_plan_new.js +23 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_plan_preview.js +18 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_publication_show.js +39 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_view.js +148 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_workflow_add.js +115 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_workflow_change.js +204 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_workflow_new.js +23 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_workflow_plan.js +38 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_workflow_preview.js +18 -0
- data/spec/rails_3_0_0_root/public/javascripts/rules_engine/re_workflow_show.js +22 -0
- data/spec/rails_3_0_0_root/public/stylesheets/application.css +1 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/ie.css +35 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/buttons/icons/key.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/buttons/readme.txt +32 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/buttons/screen.css +97 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/fancy-type/screen.css +71 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/readme.txt +18 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/link-icons/screen.css +40 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/rtl/readme.txt +10 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/plugins/rtl/screen.css +110 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/print.css +29 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/screen.css +258 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/forms.css +65 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/grid.css +280 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/grid.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/ie.css +76 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/print.css +85 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/reset.css +45 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/blueprint/src/typography.css +106 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/blank.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_close.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_loading.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_nav_left.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_nav_right.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_e.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_n.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_ne.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_nw.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_s.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_se.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_sw.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_shadow_w.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_title_left.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_title_main.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_title_over.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancy_title_right.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancybox-x.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancybox-y.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/fancybox.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/fancybox/jquery.fancybox-1.3.1.css +363 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_box/shadowbox.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_box/whitebox.jpg +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/checked-off.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/checked-on.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/icon-add.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/icon-delete.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/list-add.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/list-remove.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/list-select.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-blue-left.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-blue-right.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-gray-left.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-gray-right.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-green-left.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-green-right.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-orange-left.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-orange-right.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-red-left.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-red-right.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_error/re-alert-close.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_navigate/breadcrumb.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/list-next-disabled-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/list-next-enabled-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/list-prev-disabled-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/list-prev-enabled-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/loading.gif +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-changed-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-changed-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-draft-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-draft-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-error-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-info-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-published-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-published-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-success-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-valid-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-valid-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-verify-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-verify-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/status-verify-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_history/error-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_history/info-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_history/list-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_history/success-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/alert-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/change-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/copy-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/delete-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/edit-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/list-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/new-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/preview-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/publish-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/revert-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/show-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/title-plural.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/title-single.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_publication/show-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/add-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/alert-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/destroy-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/edit-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/error-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/help-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/help-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/icon-ad-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/move-down-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/move-down-off-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/move-up-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/move-up-off-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/new-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/next-down-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/next-right-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/show-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/start-pipeline-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/stop-failure-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/stop-success-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/title-plural.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/title-single.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/add-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/add-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/add-off-14.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/alert-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/change-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/change-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/copy-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/delete-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/edit-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/is-default-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/list-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/make-default-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/make-default-off-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/new-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/plan-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/preview-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/remove-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/show-18.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/show-25.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/title-plural.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_workflow/title-single.png +0 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/jquery.autocomplete.css +53 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/rules_engine.css +899 -0
- data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/screen.css +738 -0
- data/tasks/rspec.rake +1 -0
- metadata +183 -8
@@ -0,0 +1,45 @@
|
|
1
|
+
/* --------------------------------------------------------------
|
2
|
+
|
3
|
+
reset.css
|
4
|
+
* Resets default browser CSS.
|
5
|
+
|
6
|
+
-------------------------------------------------------------- */
|
7
|
+
|
8
|
+
html, body, div, span, object, iframe,
|
9
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
10
|
+
a, abbr, acronym, address, code,
|
11
|
+
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
|
12
|
+
fieldset, form, label, legend,
|
13
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
14
|
+
article, aside, dialog, figure, footer, header,
|
15
|
+
hgroup, nav, section {
|
16
|
+
margin: 0;
|
17
|
+
padding: 0;
|
18
|
+
border: 0;
|
19
|
+
font-weight: inherit;
|
20
|
+
font-style: inherit;
|
21
|
+
font-size: 100%;
|
22
|
+
font-family: inherit;
|
23
|
+
vertical-align: baseline;
|
24
|
+
}
|
25
|
+
|
26
|
+
article, aside, dialog, figure, footer, header,
|
27
|
+
hgroup, nav, section {
|
28
|
+
display:block;
|
29
|
+
}
|
30
|
+
|
31
|
+
body {
|
32
|
+
line-height: 1.5;
|
33
|
+
}
|
34
|
+
|
35
|
+
/* Tables still need 'cellspacing="0"' in the markup. */
|
36
|
+
table { border-collapse: separate; border-spacing: 0; }
|
37
|
+
caption, th, td { text-align: left; font-weight: normal; }
|
38
|
+
table, td, th { vertical-align: middle; }
|
39
|
+
|
40
|
+
/* Remove possible quote marks (") from <q>, <blockquote>. */
|
41
|
+
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
|
42
|
+
blockquote, q { quotes: "" ""; }
|
43
|
+
|
44
|
+
/* Remove annoying border on linked images. */
|
45
|
+
a img { border: none; }
|
@@ -0,0 +1,106 @@
|
|
1
|
+
/* --------------------------------------------------------------
|
2
|
+
|
3
|
+
typography.css
|
4
|
+
* Sets up some sensible default typography.
|
5
|
+
|
6
|
+
-------------------------------------------------------------- */
|
7
|
+
|
8
|
+
/* Default font settings.
|
9
|
+
The font-size percentage is of 16px. (0.75 * 16px = 12px) */
|
10
|
+
html { font-size:100.01%; }
|
11
|
+
body {
|
12
|
+
font-size: 75%;
|
13
|
+
color: #222;
|
14
|
+
background: #fff;
|
15
|
+
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
16
|
+
}
|
17
|
+
|
18
|
+
|
19
|
+
/* Headings
|
20
|
+
-------------------------------------------------------------- */
|
21
|
+
|
22
|
+
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
|
23
|
+
|
24
|
+
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
|
25
|
+
h2 { font-size: 2em; margin-bottom: 0.75em; }
|
26
|
+
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
|
27
|
+
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
|
28
|
+
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
|
29
|
+
h6 { font-size: 1em; font-weight: bold; }
|
30
|
+
|
31
|
+
h1 img, h2 img, h3 img,
|
32
|
+
h4 img, h5 img, h6 img {
|
33
|
+
margin: 0;
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
/* Text elements
|
38
|
+
-------------------------------------------------------------- */
|
39
|
+
|
40
|
+
p { margin: 0 0 1.5em; }
|
41
|
+
p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
|
42
|
+
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }
|
43
|
+
|
44
|
+
a:focus,
|
45
|
+
a:hover { color: #000; }
|
46
|
+
a { color: #009; text-decoration: underline; }
|
47
|
+
|
48
|
+
blockquote { margin: 1.5em; color: #666; font-style: italic; }
|
49
|
+
strong { font-weight: bold; }
|
50
|
+
em,dfn { font-style: italic; }
|
51
|
+
dfn { font-weight: bold; }
|
52
|
+
sup, sub { line-height: 0; }
|
53
|
+
|
54
|
+
abbr,
|
55
|
+
acronym { border-bottom: 1px dotted #666; }
|
56
|
+
address { margin: 0 0 1.5em; font-style: italic; }
|
57
|
+
del { color:#666; }
|
58
|
+
|
59
|
+
pre { margin: 1.5em 0; white-space: pre; }
|
60
|
+
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
|
61
|
+
|
62
|
+
|
63
|
+
/* Lists
|
64
|
+
-------------------------------------------------------------- */
|
65
|
+
|
66
|
+
li ul,
|
67
|
+
li ol { margin: 0; }
|
68
|
+
ul, ol { margin: 0 1.5em 1.5em 0; padding-left: 3.333em; }
|
69
|
+
|
70
|
+
ul { list-style-type: disc; }
|
71
|
+
ol { list-style-type: decimal; }
|
72
|
+
|
73
|
+
dl { margin: 0 0 1.5em 0; }
|
74
|
+
dl dt { font-weight: bold; }
|
75
|
+
dd { margin-left: 1.5em;}
|
76
|
+
|
77
|
+
|
78
|
+
/* Tables
|
79
|
+
-------------------------------------------------------------- */
|
80
|
+
|
81
|
+
table { margin-bottom: 1.4em; width:100%; }
|
82
|
+
th { font-weight: bold; }
|
83
|
+
thead th { background: #c3d9ff; }
|
84
|
+
th,td,caption { padding: 4px 10px 4px 5px; }
|
85
|
+
tr.even td { background: #e5ecf9; }
|
86
|
+
tfoot { font-style: italic; }
|
87
|
+
caption { background: #eee; }
|
88
|
+
|
89
|
+
|
90
|
+
/* Misc classes
|
91
|
+
-------------------------------------------------------------- */
|
92
|
+
|
93
|
+
.small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
|
94
|
+
.large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
|
95
|
+
.hide { display: none; }
|
96
|
+
|
97
|
+
.quiet { color: #666; }
|
98
|
+
.loud { color: #000; }
|
99
|
+
.highlight { background:#ff0; }
|
100
|
+
.added { background:#060; color: #fff; }
|
101
|
+
.removed { background:#900; color: #fff; }
|
102
|
+
|
103
|
+
.first { margin-left:0; padding-left:0; }
|
104
|
+
.last { margin-right:0; padding-right:0; }
|
105
|
+
.top { margin-top:0; padding-top:0; }
|
106
|
+
.bottom { margin-bottom:0; padding-bottom:0; }
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,363 @@
|
|
1
|
+
/*
|
2
|
+
* FancyBox - jQuery Plugin
|
3
|
+
* Simple and fancy lightbox alternative
|
4
|
+
*
|
5
|
+
* Examples and documentation at: http://fancybox.net
|
6
|
+
*
|
7
|
+
* Copyright (c) 2008 - 2010 Janis Skarnelis
|
8
|
+
*
|
9
|
+
* Version: 1.3.1 (05/03/2010)
|
10
|
+
* Requires: jQuery v1.3+
|
11
|
+
*
|
12
|
+
* Dual licensed under the MIT and GPL licenses:
|
13
|
+
* http://www.opensource.org/licenses/mit-license.php
|
14
|
+
* http://www.gnu.org/licenses/gpl.html
|
15
|
+
*/
|
16
|
+
|
17
|
+
#fancybox-loading {
|
18
|
+
position: fixed;
|
19
|
+
top: 50%;
|
20
|
+
left: 50%;
|
21
|
+
height: 40px;
|
22
|
+
width: 40px;
|
23
|
+
margin-top: -20px;
|
24
|
+
margin-left: -20px;
|
25
|
+
cursor: pointer;
|
26
|
+
overflow: hidden;
|
27
|
+
z-index: 1104;
|
28
|
+
display: none;
|
29
|
+
}
|
30
|
+
|
31
|
+
* html #fancybox-loading { /* IE6 */
|
32
|
+
position: absolute;
|
33
|
+
margin-top: 0;
|
34
|
+
}
|
35
|
+
|
36
|
+
#fancybox-loading div {
|
37
|
+
position: absolute;
|
38
|
+
top: 0;
|
39
|
+
left: 0;
|
40
|
+
width: 40px;
|
41
|
+
height: 480px;
|
42
|
+
background-image: url('fancybox.png');
|
43
|
+
}
|
44
|
+
|
45
|
+
#fancybox-overlay {
|
46
|
+
position: fixed;
|
47
|
+
top: 0;
|
48
|
+
left: 0;
|
49
|
+
bottom: 0;
|
50
|
+
right: 0;
|
51
|
+
background: #000;
|
52
|
+
z-index: 1100;
|
53
|
+
display: none;
|
54
|
+
}
|
55
|
+
|
56
|
+
* html #fancybox-overlay { /* IE6 */
|
57
|
+
position: absolute;
|
58
|
+
width: 100%;
|
59
|
+
}
|
60
|
+
|
61
|
+
#fancybox-tmp {
|
62
|
+
padding: 0;
|
63
|
+
margin: 0;
|
64
|
+
border: 0;
|
65
|
+
overflow: auto;
|
66
|
+
display: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
#fancybox-wrap {
|
70
|
+
position: absolute;
|
71
|
+
top: 0;
|
72
|
+
left: 0;
|
73
|
+
margin: 0;
|
74
|
+
padding: 20px;
|
75
|
+
z-index: 1101;
|
76
|
+
display: none;
|
77
|
+
}
|
78
|
+
|
79
|
+
#fancybox-outer {
|
80
|
+
position: relative;
|
81
|
+
width: 100%;
|
82
|
+
height: 100%;
|
83
|
+
background: #FFF;
|
84
|
+
}
|
85
|
+
|
86
|
+
#fancybox-inner {
|
87
|
+
position: absolute;
|
88
|
+
top: 0;
|
89
|
+
left: 0;
|
90
|
+
width: 1px;
|
91
|
+
height: 1px;
|
92
|
+
padding: 0;
|
93
|
+
margin: 0;
|
94
|
+
outline: none;
|
95
|
+
overflow: hidden;
|
96
|
+
}
|
97
|
+
|
98
|
+
#fancybox-hide-sel-frame {
|
99
|
+
position: absolute;
|
100
|
+
top: 0;
|
101
|
+
left: 0;
|
102
|
+
width: 100%;
|
103
|
+
height: 100%;
|
104
|
+
background: transparent;
|
105
|
+
}
|
106
|
+
|
107
|
+
#fancybox-close {
|
108
|
+
position: absolute;
|
109
|
+
top: -15px;
|
110
|
+
right: -15px;
|
111
|
+
width: 30px;
|
112
|
+
height: 30px;
|
113
|
+
background-image: url('fancybox.png');
|
114
|
+
background-position: -40px 0px;
|
115
|
+
cursor: pointer;
|
116
|
+
z-index: 1103;
|
117
|
+
display: none;
|
118
|
+
}
|
119
|
+
|
120
|
+
#fancybox_error {
|
121
|
+
color: #444;
|
122
|
+
font: normal 12px/20px Arial;
|
123
|
+
padding: 7px;
|
124
|
+
margin: 0;
|
125
|
+
}
|
126
|
+
|
127
|
+
#fancybox-content {
|
128
|
+
height: auto;
|
129
|
+
width: auto;
|
130
|
+
padding: 0;
|
131
|
+
margin: 0;
|
132
|
+
}
|
133
|
+
|
134
|
+
#fancybox-img {
|
135
|
+
width: 100%;
|
136
|
+
height: 100%;
|
137
|
+
padding: 0;
|
138
|
+
margin: 0;
|
139
|
+
border: none;
|
140
|
+
outline: none;
|
141
|
+
line-height: 0;
|
142
|
+
vertical-align: top;
|
143
|
+
-ms-interpolation-mode: bicubic;
|
144
|
+
}
|
145
|
+
|
146
|
+
#fancybox-frame {
|
147
|
+
position: relative;
|
148
|
+
width: 100%;
|
149
|
+
height: 100%;
|
150
|
+
border: none;
|
151
|
+
display: block;
|
152
|
+
}
|
153
|
+
|
154
|
+
#fancybox-title {
|
155
|
+
position: absolute;
|
156
|
+
bottom: 0;
|
157
|
+
left: 0;
|
158
|
+
font-family: Arial;
|
159
|
+
font-size: 12px;
|
160
|
+
z-index: 1102;
|
161
|
+
}
|
162
|
+
|
163
|
+
.fancybox-title-inside {
|
164
|
+
padding: 10px 0;
|
165
|
+
text-align: center;
|
166
|
+
color: #333;
|
167
|
+
}
|
168
|
+
|
169
|
+
.fancybox-title-outside {
|
170
|
+
padding-top: 5px;
|
171
|
+
color: #FFF;
|
172
|
+
text-align: center;
|
173
|
+
font-weight: bold;
|
174
|
+
}
|
175
|
+
|
176
|
+
.fancybox-title-over {
|
177
|
+
color: #FFF;
|
178
|
+
text-align: left;
|
179
|
+
}
|
180
|
+
|
181
|
+
#fancybox-title-over {
|
182
|
+
padding: 10px;
|
183
|
+
background-image: url('fancy_title_over.png');
|
184
|
+
display: block;
|
185
|
+
}
|
186
|
+
|
187
|
+
#fancybox-title-wrap {
|
188
|
+
display: inline-block;
|
189
|
+
}
|
190
|
+
|
191
|
+
#fancybox-title-wrap span {
|
192
|
+
height: 32px;
|
193
|
+
float: left;
|
194
|
+
}
|
195
|
+
|
196
|
+
#fancybox-title-left {
|
197
|
+
padding-left: 15px;
|
198
|
+
background-image: url('fancybox.png');
|
199
|
+
background-position: -40px -90px;
|
200
|
+
background-repeat: no-repeat;
|
201
|
+
}
|
202
|
+
|
203
|
+
#fancybox-title-main {
|
204
|
+
font-weight: bold;
|
205
|
+
line-height: 29px;
|
206
|
+
background-image: url('fancybox-x.png');
|
207
|
+
background-position: 0px -40px;
|
208
|
+
color: #FFF;
|
209
|
+
}
|
210
|
+
|
211
|
+
#fancybox-title-right {
|
212
|
+
padding-left: 15px;
|
213
|
+
background-image: url('fancybox.png');
|
214
|
+
background-position: -55px -90px;
|
215
|
+
background-repeat: no-repeat;
|
216
|
+
}
|
217
|
+
|
218
|
+
#fancybox-left, #fancybox-right {
|
219
|
+
position: absolute;
|
220
|
+
bottom: 0px;
|
221
|
+
height: 100%;
|
222
|
+
width: 35%;
|
223
|
+
cursor: pointer;
|
224
|
+
outline: none;
|
225
|
+
background-image: url('blank.gif');
|
226
|
+
z-index: 1102;
|
227
|
+
display: none;
|
228
|
+
}
|
229
|
+
|
230
|
+
#fancybox-left {
|
231
|
+
left: 0px;
|
232
|
+
}
|
233
|
+
|
234
|
+
#fancybox-right {
|
235
|
+
right: 0px;
|
236
|
+
}
|
237
|
+
|
238
|
+
#fancybox-left-ico, #fancybox-right-ico {
|
239
|
+
position: absolute;
|
240
|
+
top: 50%;
|
241
|
+
left: -9999px;
|
242
|
+
width: 30px;
|
243
|
+
height: 30px;
|
244
|
+
margin-top: -15px;
|
245
|
+
cursor: pointer;
|
246
|
+
z-index: 1102;
|
247
|
+
display: block;
|
248
|
+
}
|
249
|
+
|
250
|
+
#fancybox-left-ico {
|
251
|
+
background-image: url('fancybox.png');
|
252
|
+
background-position: -40px -30px;
|
253
|
+
}
|
254
|
+
|
255
|
+
#fancybox-right-ico {
|
256
|
+
background-image: url('fancybox.png');
|
257
|
+
background-position: -40px -60px;
|
258
|
+
}
|
259
|
+
|
260
|
+
#fancybox-left:hover, #fancybox-right:hover {
|
261
|
+
visibility: visible; /* IE6 */
|
262
|
+
}
|
263
|
+
|
264
|
+
#fancybox-left:hover span {
|
265
|
+
left: 20px;
|
266
|
+
}
|
267
|
+
|
268
|
+
#fancybox-right:hover span {
|
269
|
+
left: auto;
|
270
|
+
right: 20px;
|
271
|
+
}
|
272
|
+
|
273
|
+
.fancy-bg {
|
274
|
+
position: absolute;
|
275
|
+
padding: 0;
|
276
|
+
margin: 0;
|
277
|
+
border: 0;
|
278
|
+
width: 20px;
|
279
|
+
height: 20px;
|
280
|
+
z-index: 1001;
|
281
|
+
}
|
282
|
+
|
283
|
+
#fancy-bg-n {
|
284
|
+
top: -20px;
|
285
|
+
left: 0;
|
286
|
+
width: 100%;
|
287
|
+
background-image: url('fancybox-x.png');
|
288
|
+
}
|
289
|
+
|
290
|
+
#fancy-bg-ne {
|
291
|
+
top: -20px;
|
292
|
+
right: -20px;
|
293
|
+
background-image: url('fancybox.png');
|
294
|
+
background-position: -40px -162px;
|
295
|
+
}
|
296
|
+
|
297
|
+
#fancy-bg-e {
|
298
|
+
top: 0;
|
299
|
+
right: -20px;
|
300
|
+
height: 100%;
|
301
|
+
background-image: url('fancybox-y.png');
|
302
|
+
background-position: -20px 0px;
|
303
|
+
}
|
304
|
+
|
305
|
+
#fancy-bg-se {
|
306
|
+
bottom: -20px;
|
307
|
+
right: -20px;
|
308
|
+
background-image: url('fancybox.png');
|
309
|
+
background-position: -40px -182px;
|
310
|
+
}
|
311
|
+
|
312
|
+
#fancy-bg-s {
|
313
|
+
bottom: -20px;
|
314
|
+
left: 0;
|
315
|
+
width: 100%;
|
316
|
+
background-image: url('fancybox-x.png');
|
317
|
+
background-position: 0px -20px;
|
318
|
+
}
|
319
|
+
|
320
|
+
#fancy-bg-sw {
|
321
|
+
bottom: -20px;
|
322
|
+
left: -20px;
|
323
|
+
background-image: url('fancybox.png');
|
324
|
+
background-position: -40px -142px;
|
325
|
+
}
|
326
|
+
|
327
|
+
#fancy-bg-w {
|
328
|
+
top: 0;
|
329
|
+
left: -20px;
|
330
|
+
height: 100%;
|
331
|
+
background-image: url('fancybox-y.png');
|
332
|
+
}
|
333
|
+
|
334
|
+
#fancy-bg-nw {
|
335
|
+
top: -20px;
|
336
|
+
left: -20px;
|
337
|
+
background-image: url('fancybox.png');
|
338
|
+
background-position: -40px -122px;
|
339
|
+
}
|
340
|
+
|
341
|
+
/* IE */
|
342
|
+
|
343
|
+
#fancybox-loading.fancybox-ie div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }
|
344
|
+
.fancybox-ie #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }
|
345
|
+
|
346
|
+
.fancybox-ie #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
|
347
|
+
.fancybox-ie #fancybox-title-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
|
348
|
+
.fancybox-ie #fancybox-title-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
|
349
|
+
.fancybox-ie #fancybox-title-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }
|
350
|
+
|
351
|
+
.fancybox-ie #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_left.png', sizingMethod='scale'); }
|
352
|
+
.fancybox-ie #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_right.png', sizingMethod='scale'); }
|
353
|
+
|
354
|
+
.fancybox-ie .fancy-bg { background: transparent !important; }
|
355
|
+
|
356
|
+
.fancybox-ie #fancy-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
|
357
|
+
.fancybox-ie #fancy-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
|
358
|
+
.fancybox-ie #fancy-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
|
359
|
+
.fancybox-ie #fancy-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
|
360
|
+
.fancybox-ie #fancy-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
|
361
|
+
.fancybox-ie #fancy-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
|
362
|
+
.fancybox-ie #fancy-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
|
363
|
+
.fancybox-ie #fancy-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
|