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
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/checked-off.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/checked-on.gif
ADDED
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/icon-delete.png
ADDED
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/list-remove.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/list-select.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-blue-left.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-blue-right.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-gray-left.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-gray-right.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-green-left.gif
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-red-left.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_button/oval-red-right.gif
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_error/re-alert-close.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/re_view_navigate/breadcrumb.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_common/loading.gif
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/alert-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/change-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/copy-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/delete-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/edit-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/list-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/new-25.png
ADDED
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/revert-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_plan/show-25.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/add-14.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/alert-25.png
ADDED
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/edit-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/error-25.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/help-14.png
ADDED
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/help-25.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/new-25.png
ADDED
Binary file
|
Binary file
|
Binary file
|
data/spec/rails_3_0_0_root/public/stylesheets/rules_engine/images/rules_engine/re_rule/show-25.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,53 @@
|
|
1
|
+
.ac_results {
|
2
|
+
padding: 0px;
|
3
|
+
border: 1px solid black;
|
4
|
+
background-color: white;
|
5
|
+
overflow: hidden;
|
6
|
+
z-index: 99999;
|
7
|
+
}
|
8
|
+
|
9
|
+
.ac_results ul {
|
10
|
+
width: 100%;
|
11
|
+
list-style-position: outside;
|
12
|
+
list-style: none;
|
13
|
+
padding: 0;
|
14
|
+
margin: 0;
|
15
|
+
}
|
16
|
+
|
17
|
+
.ac_results li {
|
18
|
+
margin: 0px;
|
19
|
+
padding: 2px 5px;
|
20
|
+
cursor: default;
|
21
|
+
display: block;
|
22
|
+
/*
|
23
|
+
if width will be 100% horizontal scrollbar will apear
|
24
|
+
when scroll mode will be used
|
25
|
+
*/
|
26
|
+
/*width: 100%;*/
|
27
|
+
font: menu;
|
28
|
+
font-size: 12px;
|
29
|
+
/*
|
30
|
+
it is very important, if line-height not setted or setted
|
31
|
+
in relative units scroll will be broken in firefox
|
32
|
+
*/
|
33
|
+
line-height: 16px;
|
34
|
+
overflow: hidden;
|
35
|
+
}
|
36
|
+
|
37
|
+
.ac_odd {
|
38
|
+
background-color: #eee;
|
39
|
+
}
|
40
|
+
|
41
|
+
.ac_over {
|
42
|
+
background-color: rgb(45, 83, 154);
|
43
|
+
color: white;
|
44
|
+
}
|
45
|
+
|
46
|
+
/*Customizations*/
|
47
|
+
.ac_results {
|
48
|
+
color: black;
|
49
|
+
}
|
50
|
+
|
51
|
+
.ac_loading {
|
52
|
+
/* background: white url('/decor/small_spinner.gif') right center no-repeat!important;*/
|
53
|
+
}
|
@@ -0,0 +1,899 @@
|
|
1
|
+
.re_container {
|
2
|
+
min-height: 700px;
|
3
|
+
}
|
4
|
+
|
5
|
+
.re_container h1, #re_content h1 {
|
6
|
+
font-size:36px;
|
7
|
+
line-height:42px;
|
8
|
+
margin: 0px 6px;
|
9
|
+
}
|
10
|
+
.re_container h2, #re_content h2 {
|
11
|
+
font-size:30px;
|
12
|
+
line-height:36px;
|
13
|
+
margin: 0px 6px;
|
14
|
+
}
|
15
|
+
.re_container h3, #re_content h3 {
|
16
|
+
font-size:24px;
|
17
|
+
line-height:30px;
|
18
|
+
margin: 0px 6px;
|
19
|
+
}
|
20
|
+
.re_container h4, #re_content h4 {
|
21
|
+
font-size:20px;
|
22
|
+
line-height:24px;
|
23
|
+
margin: 0px 6px;
|
24
|
+
}
|
25
|
+
.re_container h5, #re_content h5 {
|
26
|
+
font-size:18px;
|
27
|
+
line-height:22px;
|
28
|
+
margin: 0px 6px;
|
29
|
+
}
|
30
|
+
.re_container h6, #re_content h6 {
|
31
|
+
font-size:16px;
|
32
|
+
line-height:20px;
|
33
|
+
margin: 0px 6px;
|
34
|
+
}
|
35
|
+
.re_container p, #re_content p {
|
36
|
+
font-size:14px;
|
37
|
+
line-height:16px;
|
38
|
+
padding-top:4px;
|
39
|
+
padding-bottom:2px;
|
40
|
+
margin: 0px 6px;
|
41
|
+
}
|
42
|
+
|
43
|
+
.re-code{
|
44
|
+
font-size: 14px;
|
45
|
+
line-height: 16px;
|
46
|
+
font-family:'andale mono', 'lucida console', monospace;
|
47
|
+
padding-top: 6px;
|
48
|
+
}
|
49
|
+
.re-code-small{
|
50
|
+
font-size: 12px;
|
51
|
+
line-height: 14px;
|
52
|
+
font-family:'lucida console', monospace;
|
53
|
+
padding-top: 3px;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* ************************************* */
|
57
|
+
/* MAPS */
|
58
|
+
/* ************************************* */
|
59
|
+
/* breadcrumbs */
|
60
|
+
.re-breadcrumbs .re-bc-plan-list {
|
61
|
+
background: transparent url('./images/rules_engine/re_plan/list-25.png') no-repeat 0 4px;
|
62
|
+
padding: 0 0 0 30px;
|
63
|
+
}
|
64
|
+
.re-breadcrumbs .re-bc-plan-new {
|
65
|
+
background: transparent url('./images/rules_engine/re_plan/new-25.png') no-repeat 0 4px;
|
66
|
+
padding: 0 0 0 30px;
|
67
|
+
}
|
68
|
+
.re-breadcrumbs .re-bc-plan-show {
|
69
|
+
background: transparent url('./images/rules_engine/re_plan/show-25.png') no-repeat 0 4px;
|
70
|
+
padding: 0 0 0 28px;
|
71
|
+
}
|
72
|
+
.re-breadcrumbs .re-bc-plan-edit {
|
73
|
+
background: transparent url('./images/rules_engine/re_plan/edit-25.png') no-repeat 0 4px;
|
74
|
+
padding: 0 0 0 30px;
|
75
|
+
}
|
76
|
+
.re-breadcrumbs .re-bc-plan-change {
|
77
|
+
background: transparent url('./images/rules_engine/re_plan/change-25.png') no-repeat 0 4px;
|
78
|
+
padding: 0 0 0 30px;
|
79
|
+
}
|
80
|
+
.re-breadcrumbs .re-bc-plan-copy {
|
81
|
+
background: transparent url('./images/rules_engine/re_plan/copy-25.png') no-repeat 0 4px;
|
82
|
+
padding: 0 0 0 30px;
|
83
|
+
}
|
84
|
+
|
85
|
+
/* sub headers*/
|
86
|
+
h3.re-hdr-plan-alert {
|
87
|
+
background: transparent url('./images/rules_engine/re_plan/alert-25.png') no-repeat left 2px;
|
88
|
+
padding: 0 0 0 30px;
|
89
|
+
}
|
90
|
+
h3.re-hdr-plan-new {
|
91
|
+
background: transparent url('./images/rules_engine/re_plan/new-25.png') no-repeat left 2px;
|
92
|
+
padding: 0 0 0 30px;
|
93
|
+
}
|
94
|
+
h3.re-hdr-plan-edit {
|
95
|
+
background: transparent url('./images/rules_engine/re_plan/edit-25.png') no-repeat left 2px;
|
96
|
+
padding: 0 0 0 30px;
|
97
|
+
}
|
98
|
+
h3.re-hdr-plan-delete {
|
99
|
+
background: transparent url('./images/rules_engine/re_plan/delete-25.png') no-repeat left 2px;
|
100
|
+
padding: 0 0 0 30px;
|
101
|
+
}
|
102
|
+
|
103
|
+
/* status */
|
104
|
+
h4.re-sts-plan-draft {
|
105
|
+
background: transparent url('./images/rules_engine/re_common/status-draft-18.png') no-repeat left 4px;
|
106
|
+
padding: 0 0 0 22px;
|
107
|
+
margin: 0;
|
108
|
+
}
|
109
|
+
h4.re-sts-plan-changed {
|
110
|
+
background: transparent url('./images/rules_engine/re_common/status-changed-18.png') no-repeat left 4px;
|
111
|
+
padding: 0 0 0 22px;
|
112
|
+
margin: 0;
|
113
|
+
}
|
114
|
+
h4.re-sts-plan-published {
|
115
|
+
background: transparent url('./images/rules_engine/re_common/status-published-18.png') no-repeat left 4px;
|
116
|
+
padding: 0 0 0 22px;
|
117
|
+
margin: 0;
|
118
|
+
}
|
119
|
+
h4.re-sts-plan-verify {
|
120
|
+
background: transparent url('./images/rules_engine/re_common/status-verify-18.png') no-repeat left 4px;
|
121
|
+
padding: 0 0 0 22px;
|
122
|
+
margin: 0;
|
123
|
+
}
|
124
|
+
em.re-sts-plan-draft {
|
125
|
+
color: #696969;
|
126
|
+
font-size: 14px;
|
127
|
+
}
|
128
|
+
em.re-sts-plan-changed {
|
129
|
+
color: #92b83c;
|
130
|
+
font-size: 14px;
|
131
|
+
}
|
132
|
+
em.re-sts-plan-published {
|
133
|
+
color: #218868;
|
134
|
+
font-size: 14px;
|
135
|
+
}
|
136
|
+
em.re-sts-plan-verify {
|
137
|
+
color: #b43838;
|
138
|
+
font-size: 14px;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* menu */
|
142
|
+
a.re-menu-plan-new {
|
143
|
+
background: transparent url('./images/rules_engine/re_plan/new-25.png') no-repeat left -1px;
|
144
|
+
padding: 0 0 0 30px;
|
145
|
+
color: #218868;
|
146
|
+
text-decoration: none;
|
147
|
+
}
|
148
|
+
a.re-menu-plan-new:hover {
|
149
|
+
text-decoration: underline;
|
150
|
+
}
|
151
|
+
a.re-menu-plan-show {
|
152
|
+
background: transparent url('./images/rules_engine/re_plan/show-25.png') no-repeat left -1px;
|
153
|
+
padding: 0 0 0 28px;
|
154
|
+
color: #218868;
|
155
|
+
text-decoration: none;
|
156
|
+
}
|
157
|
+
a.re-menu-plan-show:hover {
|
158
|
+
text-decoration: underline;
|
159
|
+
}
|
160
|
+
a.re-menu-plan-change {
|
161
|
+
background: transparent url('./images/rules_engine/re_plan/change-25.png') no-repeat left -2px;
|
162
|
+
padding: 0 0 0 30px;
|
163
|
+
color: #218868;
|
164
|
+
text-decoration: none;
|
165
|
+
}
|
166
|
+
a.re-menu-plan-change:hover {
|
167
|
+
text-decoration: underline;
|
168
|
+
}
|
169
|
+
a.re-menu-plan-copy {
|
170
|
+
background: transparent url('./images/rules_engine/re_plan/copy-25.png') no-repeat left -1px;
|
171
|
+
padding: 0 0 0 28px;
|
172
|
+
color: #218868;
|
173
|
+
text-decoration: none;
|
174
|
+
}
|
175
|
+
a.re-menu-plan-copy:hover {
|
176
|
+
text-decoration: underline;
|
177
|
+
}
|
178
|
+
a.re-menu-plan-edit {
|
179
|
+
background: transparent url('./images/rules_engine/re_plan/edit-25.png') no-repeat left -1px;
|
180
|
+
padding: 0 0 0 30px;
|
181
|
+
color: #218868;
|
182
|
+
text-decoration: none;
|
183
|
+
}
|
184
|
+
a.re-menu-plan-edit a:hover {
|
185
|
+
text-decoration: underline;
|
186
|
+
}
|
187
|
+
a.re-menu-plan-delete {
|
188
|
+
background: transparent url('./images/rules_engine/re_plan/delete-25.png') no-repeat left -1px;
|
189
|
+
padding: 0 0 0 30px;
|
190
|
+
color: #218868;
|
191
|
+
text-decoration: none;
|
192
|
+
}
|
193
|
+
a.re-menu-plan-delete:hover {
|
194
|
+
text-decoration: underline;
|
195
|
+
}
|
196
|
+
a.re-menu-plan-publish-all {
|
197
|
+
background: transparent url('./images/rules_engine/re_plan/publish-25.png') no-repeat left -1px;
|
198
|
+
padding: 0 0 0 30px;
|
199
|
+
color: #218868;
|
200
|
+
text-decoration: none;
|
201
|
+
}
|
202
|
+
a.re-menu-plan-publish-all:hover {
|
203
|
+
text-decoration: underline;
|
204
|
+
}
|
205
|
+
a.re-menu-plan-publish {
|
206
|
+
background: transparent url('./images/rules_engine/re_plan/publish-25.png') no-repeat left -1px;
|
207
|
+
padding: 0 0 0 30px;
|
208
|
+
color: #218868;
|
209
|
+
text-decoration: none;
|
210
|
+
}
|
211
|
+
a.re-menu-plan-publish:hover {
|
212
|
+
text-decoration: underline;
|
213
|
+
}
|
214
|
+
a.re-menu-plan-revert {
|
215
|
+
background: transparent url('./images/rules_engine/re_plan/revert-25.png') no-repeat left -1px;
|
216
|
+
padding: 0 0 0 30px;
|
217
|
+
color: #218868;
|
218
|
+
text-decoration: none;
|
219
|
+
}
|
220
|
+
a.re-menu-plan-revert:hover {
|
221
|
+
text-decoration: underline;
|
222
|
+
}
|
223
|
+
|
224
|
+
/* list */
|
225
|
+
|
226
|
+
/* extra */
|
227
|
+
div.re-xtra-plan-title-plural {
|
228
|
+
background: transparent url('./images/rules_engine/re_plan/title-plural.png') no-repeat 0px 15px;
|
229
|
+
width: 50px;
|
230
|
+
height: 45px;
|
231
|
+
}
|
232
|
+
div.re-xtra-plan-title-plural span {
|
233
|
+
display: none;
|
234
|
+
}
|
235
|
+
div.re-xtra-plan-title-single {
|
236
|
+
background: transparent url('./images/rules_engine/re_plan/title-single.png') no-repeat 0px 15px;
|
237
|
+
width: 50px;
|
238
|
+
height: 45px;
|
239
|
+
}
|
240
|
+
div.re-xtra-plan-title-single span {
|
241
|
+
display: none;
|
242
|
+
}
|
243
|
+
div.re-xtra-plan-preview {
|
244
|
+
background: transparent url('./images/rules_engine/re_plan/preview-18.png') no-repeat 8px 4px;
|
245
|
+
width: 25px;
|
246
|
+
height: 22px;
|
247
|
+
}
|
248
|
+
|
249
|
+
|
250
|
+
/* ************************************* */
|
251
|
+
/* WORKFLOW */
|
252
|
+
/* ************************************* */
|
253
|
+
/* breadcrumbs */
|
254
|
+
.re-breadcrumbs .re-bc-workflow-list {
|
255
|
+
background: transparent url('./images/rules_engine/re_workflow/list-25.png') no-repeat 0 4px;
|
256
|
+
padding: 0 0 0 30px;
|
257
|
+
}
|
258
|
+
.re-breadcrumbs .re-bc-workflow-new {
|
259
|
+
background: transparent url('./images/rules_engine/re_workflow/new-25.png') no-repeat 0 4px;
|
260
|
+
padding: 0 0 0 30px;
|
261
|
+
}
|
262
|
+
.re-breadcrumbs .re-bc-workflow-show {
|
263
|
+
background: transparent url('./images/rules_engine/re_workflow/show-25.png') no-repeat 0 4px;
|
264
|
+
padding: 0 0 0 28px;
|
265
|
+
}
|
266
|
+
.re-breadcrumbs .re-bc-workflow-change {
|
267
|
+
background: transparent url('./images/rules_engine/re_workflow/change-25.png') no-repeat 0 4px;
|
268
|
+
padding: 0 0 0 30px;
|
269
|
+
}
|
270
|
+
.re-breadcrumbs .re-bc-workflow-edit {
|
271
|
+
background: transparent url('./images/rules_engine/re_workflow/edit-25.png') no-repeat 0 4px;
|
272
|
+
padding: 0 0 0 30px;
|
273
|
+
}
|
274
|
+
.re-breadcrumbs .re-bc-workflow-copy {
|
275
|
+
background: transparent url('./images/rules_engine/re_workflow/copy-25.png') no-repeat 0 4px;
|
276
|
+
padding: 0 0 0 30px;
|
277
|
+
}
|
278
|
+
|
279
|
+
|
280
|
+
/* sub headers*/
|
281
|
+
h3.re-hdr-workflow-alert {
|
282
|
+
background: transparent url('./images/rules_engine/re_workflow/alert-25.png') no-repeat left 2px;
|
283
|
+
padding: 0 0 0 30px;
|
284
|
+
}
|
285
|
+
h3.re-hdr-workflow-new {
|
286
|
+
background: transparent url('./images/rules_engine/re_workflow/new-25.png') no-repeat left 2px;
|
287
|
+
padding: 0 0 0 30px;
|
288
|
+
}
|
289
|
+
h3.re-hdr-workflow-add {
|
290
|
+
background: transparent url('./images/rules_engine/re_workflow/add-25.png') no-repeat left 2px;
|
291
|
+
padding: 0 0 0 30px;
|
292
|
+
}
|
293
|
+
h3.re-hdr-workflow-edit {
|
294
|
+
background: transparent url('./images/rules_engine/re_workflow/edit-25.png') no-repeat left 2px;
|
295
|
+
padding: 0 0 0 30px;
|
296
|
+
}
|
297
|
+
h3.re-hdr-workflow-change {
|
298
|
+
background: transparent url('./images/rules_engine/re_workflow/change-25.png') no-repeat left 2px;
|
299
|
+
padding: 0 0 0 30px;
|
300
|
+
}
|
301
|
+
h3.re-hdr-workflow-delete {
|
302
|
+
background: transparent url('./images/rules_engine/re_workflow/destroy-25.png') no-repeat left 2px;
|
303
|
+
padding: 0 0 0 30px;
|
304
|
+
}
|
305
|
+
|
306
|
+
/* status */
|
307
|
+
h4.re-sts-workflow-valid {
|
308
|
+
background: transparent url('./images/rules_engine/re_common/status-valid-18.png') no-repeat left 4px;
|
309
|
+
padding: 0 0 0 22px;
|
310
|
+
margin: 0;
|
311
|
+
}
|
312
|
+
h4.re-sts-workflow-verify {
|
313
|
+
background: transparent url('./images/rules_engine/re_common/status-verify-18.png') no-repeat left 4px;
|
314
|
+
padding: 0 0 0 22px;
|
315
|
+
margin: 0;
|
316
|
+
}
|
317
|
+
em.re-sts-workflow-valid {
|
318
|
+
color: #218868;
|
319
|
+
}
|
320
|
+
em.re-sts-workflow-verify {
|
321
|
+
color: #b43838;
|
322
|
+
}
|
323
|
+
|
324
|
+
/* menu */
|
325
|
+
a.re-menu-workflow-new {
|
326
|
+
background: transparent url('./images/rules_engine/re_workflow/new-25.png') no-repeat left -1px;
|
327
|
+
padding: 0 0 0 30px;
|
328
|
+
color: #218868;
|
329
|
+
text-decoration: none;
|
330
|
+
}
|
331
|
+
a.re-menu-workflow-new:hover {
|
332
|
+
text-decoration: underline;
|
333
|
+
}
|
334
|
+
a.re-menu-workflow-change {
|
335
|
+
background: transparent url('./images/rules_engine/re_workflow/change-25.png') no-repeat left -1px;
|
336
|
+
padding: 0 0 0 30px;
|
337
|
+
color: #218868;
|
338
|
+
text-decoration: none;
|
339
|
+
}
|
340
|
+
a.re-menu-workflow-change a:hover {
|
341
|
+
text-decoration: underline;
|
342
|
+
}
|
343
|
+
div.re-menu-workflow-add {
|
344
|
+
background: transparent url('./images/rules_engine/re_workflow/add-25.png') no-repeat left 0px;
|
345
|
+
padding: 0 0 0 30px;
|
346
|
+
color: #222;
|
347
|
+
}
|
348
|
+
a.re-menu-workflow-add-link {
|
349
|
+
float:left;
|
350
|
+
background: transparent url('./images/rules_engine/re_workflow/add-14.png') no-repeat left 3px;
|
351
|
+
padding: 0px 0 0 20px;
|
352
|
+
margin: 0 8px 0 0;
|
353
|
+
color: #222;
|
354
|
+
line-height: 19px;
|
355
|
+
text-decoration: none;
|
356
|
+
width:200px;
|
357
|
+
}
|
358
|
+
a.re-menu-workflow-add-link:hover {
|
359
|
+
text-decoration: underline;
|
360
|
+
}
|
361
|
+
a.re-menu-workflow-add-link-off {
|
362
|
+
float:left;
|
363
|
+
background: transparent url('./images/rules_engine/re_workflow/add-off-14.png') no-repeat left 3px;
|
364
|
+
padding: 0px 0 0 20px;
|
365
|
+
margin: 0 8px 0 0;
|
366
|
+
color: #222;
|
367
|
+
line-height: 19px;
|
368
|
+
text-decoration: none;
|
369
|
+
width:200px;
|
370
|
+
}
|
371
|
+
a.re-menu-workflow-add-link-off:hover {
|
372
|
+
text-decoration: none;
|
373
|
+
}
|
374
|
+
|
375
|
+
div.re-menu-workflow-plan {
|
376
|
+
background: transparent url('./images/rules_engine/re_workflow/plan-25.png') no-repeat left 0px;
|
377
|
+
padding: 0 0 0 30px;
|
378
|
+
color: #696969;
|
379
|
+
}
|
380
|
+
a.re-menu-workflow-show {
|
381
|
+
background: transparent url('./images/rules_engine/re_workflow/show-25.png') no-repeat left -1px;
|
382
|
+
padding: 0 0 0 28px;
|
383
|
+
color: #218868;
|
384
|
+
text-decoration: none;
|
385
|
+
}
|
386
|
+
a.re-menu-workflow-show:hover {
|
387
|
+
text-decoration: underline;
|
388
|
+
}
|
389
|
+
a.re-menu-workflow-copy {
|
390
|
+
background: transparent url('./images/rules_engine/re_workflow/copy-25.png') no-repeat left -1px;
|
391
|
+
padding: 0 0 0 28px;
|
392
|
+
color: #218868;
|
393
|
+
text-decoration: none;
|
394
|
+
}
|
395
|
+
a.re-menu-workflow-copy:hover {
|
396
|
+
text-decoration: underline;
|
397
|
+
}
|
398
|
+
a.re-menu-workflow-edit {
|
399
|
+
background: transparent url('./images/rules_engine/re_workflow/edit-25.png') no-repeat left -1px;
|
400
|
+
padding: 0 0 0 30px;
|
401
|
+
color: #218868;
|
402
|
+
text-decoration: none;
|
403
|
+
}
|
404
|
+
a.re-menu-workflow-edit:hover {
|
405
|
+
text-decoration: underline;
|
406
|
+
}
|
407
|
+
a.re-menu-workflow-delete {
|
408
|
+
background: transparent url('./images/rules_engine/re_workflow/delete-25.png') no-repeat left -1px;
|
409
|
+
padding: 0 0 0 30px;
|
410
|
+
color: #218868;
|
411
|
+
text-decoration: none;
|
412
|
+
}
|
413
|
+
a.re-menu-workflow-delete:hover {
|
414
|
+
text-decoration: underline;
|
415
|
+
}
|
416
|
+
|
417
|
+
/* list */
|
418
|
+
div.re-list-workflow-is-default {
|
419
|
+
float: right;
|
420
|
+
background: transparent url('./images/rules_engine/re_workflow/is-default-18.png') no-repeat left 4px;
|
421
|
+
width: 25px;
|
422
|
+
height: 22px;
|
423
|
+
}
|
424
|
+
div.re-list-workflow-is-default span {
|
425
|
+
display: none;
|
426
|
+
}
|
427
|
+
div.re-list-workflow-is-default-off {
|
428
|
+
/* background: transparent url('./images/rules_engine/re_workflow/is-default-off-18.png') no-repeat left 4px;*/
|
429
|
+
width: 25px;
|
430
|
+
height: 22px;
|
431
|
+
}
|
432
|
+
div.re-list-workflow-is-default-off span {
|
433
|
+
display: none;
|
434
|
+
}
|
435
|
+
a.re-list-workflow-show {
|
436
|
+
float: right;
|
437
|
+
background: transparent url('./images/rules_engine/re_workflow/show-18.png') no-repeat left 2px;
|
438
|
+
width: 25px;
|
439
|
+
height: 22px;
|
440
|
+
}
|
441
|
+
a.re-list-workflow-show span {
|
442
|
+
display: none;
|
443
|
+
}
|
444
|
+
a.re-list-workflow-make-default {
|
445
|
+
float: right;
|
446
|
+
background: transparent url('./images/rules_engine/re_workflow/make-default-18.png') no-repeat left 2px;
|
447
|
+
width: 25px;
|
448
|
+
height: 22px;
|
449
|
+
}
|
450
|
+
a.re-list-workflow-make-default span {
|
451
|
+
display: none;
|
452
|
+
}
|
453
|
+
a.re-list-workflow-make-default-off {
|
454
|
+
float: right;
|
455
|
+
background: transparent url('./images/rules_engine/re_workflow/make-default-off-18.png') no-repeat left 2px;
|
456
|
+
width: 25px;
|
457
|
+
height: 22px;
|
458
|
+
}
|
459
|
+
a.re-list-workflow-make-default-off span {
|
460
|
+
display: none;
|
461
|
+
}
|
462
|
+
a.re-list-workflow-change {
|
463
|
+
float: right;
|
464
|
+
background: transparent url('./images/rules_engine/re_workflow/change-18.png') no-repeat left 2px;
|
465
|
+
width: 25px;
|
466
|
+
height: 22px;
|
467
|
+
}
|
468
|
+
a.re-list-workflow-change span {
|
469
|
+
display: none;
|
470
|
+
}
|
471
|
+
a.re-list-workflow-remove {
|
472
|
+
float: right;
|
473
|
+
background: transparent url('./images/rules_engine/re_workflow/remove-18.png') no-repeat left 2px;
|
474
|
+
width: 25px;
|
475
|
+
height: 22px;
|
476
|
+
}
|
477
|
+
a.re-list-workflow-remove span {
|
478
|
+
display: none;
|
479
|
+
}
|
480
|
+
|
481
|
+
/* workflow actions */
|
482
|
+
|
483
|
+
/* extra */
|
484
|
+
div.re-xtra-workflow-title-plural {
|
485
|
+
background: transparent url('./images/rules_engine/re_workflow/title-plural.png') no-repeat 5px 15px;
|
486
|
+
width: 95px;
|
487
|
+
height: 60px;
|
488
|
+
}
|
489
|
+
div.re-xtra-workflow-title-plural span {
|
490
|
+
display: none;
|
491
|
+
}
|
492
|
+
div.re-xtra-workflow-title-single {
|
493
|
+
background: transparent url('./images/rules_engine/re_workflow/title-single.png') no-repeat 5px 15px;
|
494
|
+
width: 90px;
|
495
|
+
height: 60px;
|
496
|
+
}
|
497
|
+
div.re-xtra-workflow-title-single span {
|
498
|
+
display: none;
|
499
|
+
}
|
500
|
+
div.re-xtra-workflow-preview {
|
501
|
+
background: transparent url('./images/rules_engine/re_workflow/preview-18.png') no-repeat 8px 4px;
|
502
|
+
width: 25px;
|
503
|
+
height: 22px;
|
504
|
+
}
|
505
|
+
div.re-xtra-workflow-plan-pending {
|
506
|
+
background: transparent url('./images/rules_engine/re_common/loading.gif') no-repeat 20px 4px;
|
507
|
+
padding: 16px 0 0 70px;
|
508
|
+
color: #696969;
|
509
|
+
}
|
510
|
+
div.re-xtra-workflow-add-pending {
|
511
|
+
background: transparent url('./images/rules_engine/re_common/loading.gif') no-repeat 20px 4px;
|
512
|
+
padding: 16px 0 0 50px;
|
513
|
+
color: #696969;
|
514
|
+
}
|
515
|
+
a.re-xtra-workflow-next-enabled {
|
516
|
+
float: right;
|
517
|
+
background: transparent url('./images/rules_engine/re_common/list-next-enabled-14.png') no-repeat 0px 0px;
|
518
|
+
height: 16px;
|
519
|
+
width: 16px;
|
520
|
+
padding: 0 5px 0 2px;
|
521
|
+
}
|
522
|
+
a.re-xtra-workflow-next-disabled {
|
523
|
+
float: right;
|
524
|
+
background: transparent url('./images/rules_engine/re_common/list-next-disabled-14.png') no-repeat 0px 0px;
|
525
|
+
height: 16px;
|
526
|
+
width: 16px;
|
527
|
+
padding: 0 5px 0 2px;
|
528
|
+
}
|
529
|
+
a.re-xtra-workflow-prev-enabled {
|
530
|
+
float: right;
|
531
|
+
background: transparent url('./images/rules_engine/re_common/list-prev-enabled-14.png') no-repeat 0px 0px;
|
532
|
+
height: 16px;
|
533
|
+
width: 16px;
|
534
|
+
padding: 0 2px 0 5px;
|
535
|
+
}
|
536
|
+
a.re-xtra-workflow-prev-disabled {
|
537
|
+
float: right;
|
538
|
+
background: transparent url('./images/rules_engine/re_common/list-prev-disabled-14.png') no-repeat 0px 0px;
|
539
|
+
height: 16px;
|
540
|
+
width: 16px;
|
541
|
+
padding: 0 2px 0 5px;
|
542
|
+
}
|
543
|
+
|
544
|
+
|
545
|
+
/* ************************************* */
|
546
|
+
/* RULES */
|
547
|
+
/* ************************************* */
|
548
|
+
|
549
|
+
/* breadcrumbs */
|
550
|
+
.re-breadcrumbs .re-bc-rule-new {
|
551
|
+
background: transparent url('./images/rules_engine/re_rule/new-25.png') no-repeat 0 4px;
|
552
|
+
padding: 0 0 0 30px;
|
553
|
+
}
|
554
|
+
.re-breadcrumbs .re-bc-rule-help {
|
555
|
+
background: transparent url('./images/rules_engine/re_rule/help-25.png') no-repeat 0 4px;
|
556
|
+
padding: 0 0 0 30px;
|
557
|
+
}
|
558
|
+
.re-breadcrumbs .re-bc-rule-edit {
|
559
|
+
background: transparent url('./images/rules_engine/re_rule/edit-25.png') no-repeat 0 4px;
|
560
|
+
padding: 0 0 0 30px;
|
561
|
+
}
|
562
|
+
.re-breadcrumbs .re-bc-rule-error {
|
563
|
+
background: transparent url('./images/rules_engine/re_rule/error-25.png') no-repeat 0 4px;
|
564
|
+
padding: 0 0 0 30px;
|
565
|
+
}
|
566
|
+
|
567
|
+
/* sub headers*/
|
568
|
+
h3.re-hdr-rule-new {
|
569
|
+
background: transparent url('./images/rules_engine/re_rule/new-25.png') no-repeat left 2px;
|
570
|
+
padding: 0 0 0 30px;
|
571
|
+
}
|
572
|
+
h3.re-hdr-rule-help {
|
573
|
+
background: transparent url('./images/rules_engine/re_rule/help-25.png') no-repeat left 2px;
|
574
|
+
padding: 0 0 0 30px;
|
575
|
+
}
|
576
|
+
h3.re-hdr-rule-edit {
|
577
|
+
background: transparent url('./images/rules_engine/re_rule/edit-25.png') no-repeat left 2px;
|
578
|
+
padding: 0 0 0 30px;
|
579
|
+
}
|
580
|
+
h3.re-hdr-rule-alert {
|
581
|
+
background: transparent url('./images/rules_engine/re_rule/alert-25.png') no-repeat left 2px;
|
582
|
+
padding: 0 0 0 30px;
|
583
|
+
}
|
584
|
+
|
585
|
+
/* status */
|
586
|
+
h4.re-sts-rule-valid {
|
587
|
+
background: transparent url('./images/rules_engine/re_common/status-valid-18.png') no-repeat left 4px;
|
588
|
+
padding: 0 0 0 20px;
|
589
|
+
margin: 0;
|
590
|
+
}
|
591
|
+
h4.re-sts-rule-verify {
|
592
|
+
background: transparent url('./images/rules_engine/re_common/status-verify-18.png') no-repeat left 4px;
|
593
|
+
padding: 0 0 0 20px;
|
594
|
+
margin: 0;
|
595
|
+
}
|
596
|
+
|
597
|
+
h6.re-sts-rule-valid {
|
598
|
+
background: transparent url('./images/rules_engine/re_common/status-valid-14.png') no-repeat left 4px;
|
599
|
+
padding: 0 0 0 18px;
|
600
|
+
margin: 0;
|
601
|
+
}
|
602
|
+
h6.re-sts-rule-verify {
|
603
|
+
background: transparent url('./images/rules_engine/re_common/status-verify-14.png') no-repeat left 4px;
|
604
|
+
padding: 0 0 0 18px;
|
605
|
+
margin: 0;
|
606
|
+
}
|
607
|
+
|
608
|
+
/* menu */
|
609
|
+
a.re-menu-rule-new {
|
610
|
+
float: left;
|
611
|
+
background: transparent url('./images/rules_engine/re_rule/add-14.png') no-repeat 4px 6px;
|
612
|
+
width: 20px;
|
613
|
+
height: 20px;
|
614
|
+
}
|
615
|
+
a.re-menu-rule-new span {
|
616
|
+
display: none;
|
617
|
+
}
|
618
|
+
a.re-menu-rule-help {
|
619
|
+
float: left;
|
620
|
+
background: transparent url('./images/rules_engine/re_rule/help-14.png') no-repeat 4px 6px;
|
621
|
+
width: 20px;
|
622
|
+
height: 20px;
|
623
|
+
}
|
624
|
+
a.re-menu-rule-help span {
|
625
|
+
display: none;
|
626
|
+
}
|
627
|
+
|
628
|
+
/* list */
|
629
|
+
a.re-list-rule-edit {
|
630
|
+
float:right;
|
631
|
+
background: transparent url('./images/rules_engine/re_rule/edit-25.png') no-repeat 0px 0px;
|
632
|
+
width: 25px;
|
633
|
+
height: 25px;
|
634
|
+
margin: 0px 3px 0 0;
|
635
|
+
}
|
636
|
+
a.re-list-rule-edit span {
|
637
|
+
display: none;
|
638
|
+
}
|
639
|
+
a.re-list-rule-delete {
|
640
|
+
float:right;
|
641
|
+
background: transparent url('./images/rules_engine/re_rule/destroy-25.png') no-repeat 0px 0px;
|
642
|
+
width: 25px;
|
643
|
+
height: 25px;
|
644
|
+
margin: 0px 3px 0 0;
|
645
|
+
}
|
646
|
+
a.re-list-rule-delete span {
|
647
|
+
display: none;
|
648
|
+
}
|
649
|
+
a.re-list-rule-move-down {
|
650
|
+
float:right;
|
651
|
+
background: transparent url('./images/rules_engine/re_rule/move-down-25.png') no-repeat 0px 0px;
|
652
|
+
width: 25px;
|
653
|
+
height: 25px;
|
654
|
+
margin: 0px 10px 0 0;
|
655
|
+
}
|
656
|
+
a.re-list-rule-move-down span {
|
657
|
+
display: none;
|
658
|
+
}
|
659
|
+
a.re-list-rule-move-down-off {
|
660
|
+
float:right;
|
661
|
+
background: transparent url('./images/rules_engine/re_rule/move-down-off-25.png') no-repeat 0px 0px;
|
662
|
+
width: 25px;
|
663
|
+
height: 25px;
|
664
|
+
margin: 0px 10px 0 0;
|
665
|
+
}
|
666
|
+
a.re-list-rule-move-down-off span {
|
667
|
+
display: none;
|
668
|
+
}
|
669
|
+
a.re-list-rule-move-up {
|
670
|
+
float:right;
|
671
|
+
background: transparent url('./images/rules_engine/re_rule/move-up-25.png') no-repeat 0px 0px;
|
672
|
+
width: 25px;
|
673
|
+
height: 25px;
|
674
|
+
margin: 0px 3px 0 0;
|
675
|
+
}
|
676
|
+
a.re-list-rule-move-up span {
|
677
|
+
display: none;
|
678
|
+
}
|
679
|
+
a.re-list-rule-move-up-off {
|
680
|
+
float:right;
|
681
|
+
background: transparent url('./images/rules_engine/re_rule/move-up-off-25.png') no-repeat 0px 0px;
|
682
|
+
width: 25px;
|
683
|
+
height: 25px;
|
684
|
+
margin: 0px 3px 0 0;
|
685
|
+
}
|
686
|
+
a.re-list-rule-move-up-off span {
|
687
|
+
display: none;
|
688
|
+
}
|
689
|
+
a.re-list-rule-help {
|
690
|
+
float:right;
|
691
|
+
background: transparent url('./images/rules_engine/re_rule/help-25.png') no-repeat 0px 0px;
|
692
|
+
width: 25px;
|
693
|
+
height: 25px;
|
694
|
+
margin: 0px 3px 0 0;
|
695
|
+
}
|
696
|
+
a.re-list-rule-help span {
|
697
|
+
display: none;
|
698
|
+
}
|
699
|
+
|
700
|
+
|
701
|
+
/* extra */
|
702
|
+
div.re-xtra-rule-title-plural {
|
703
|
+
background: transparent url('./images/rules_engine/re_rule/title-plural.png') no-repeat 40px 20px;
|
704
|
+
width: 90px;
|
705
|
+
height: 50px;
|
706
|
+
}
|
707
|
+
div.re-xtra-rule-title-plural span {
|
708
|
+
display: none;
|
709
|
+
}
|
710
|
+
div.re-xtra-rule-title-single {
|
711
|
+
background: transparent url('./images/rules_engine/re_rule/title-single.png') no-repeat 40px 20px;
|
712
|
+
width: 90px;
|
713
|
+
height: 50px;
|
714
|
+
}
|
715
|
+
div.re-xtra-rule-title-single span {
|
716
|
+
display: none;
|
717
|
+
}
|
718
|
+
.re-xtra-rule-preview {
|
719
|
+
float:left;
|
720
|
+
width: 210px;
|
721
|
+
}
|
722
|
+
.re-xtra-rule-preview p {
|
723
|
+
font-size: 13px;
|
724
|
+
line-height: 14px;
|
725
|
+
margin: 0;
|
726
|
+
padding: 1px 2px;
|
727
|
+
}
|
728
|
+
.re-xtra-rule-next-right {
|
729
|
+
float:left;
|
730
|
+
background: transparent url('./images/rules_engine/re_rule/next-right-18.png') no-repeat 10px 30px;
|
731
|
+
width: 40px;
|
732
|
+
height: 54px;
|
733
|
+
}
|
734
|
+
.re-xtra-rule-next-down {
|
735
|
+
background: transparent url('./images/rules_engine/re_rule/next-down-25.png') no-repeat 0px 7px;
|
736
|
+
width: 40px;
|
737
|
+
height: 40px;
|
738
|
+
}
|
739
|
+
.re-xtra-rule-continue {
|
740
|
+
width: 155px;
|
741
|
+
background: #fffef0 url('./images/rules_engine/re_rule/start-pipeline-18.png') no-repeat 165px 2px;
|
742
|
+
font-weight: normal;
|
743
|
+
font-size: 17px;
|
744
|
+
border: 1px #92b83c solid;
|
745
|
+
padding: 3px 24px 3px 6px;
|
746
|
+
margin: 0 2px 4px 2px;
|
747
|
+
}
|
748
|
+
.re-xtra-rule-stop-failure {
|
749
|
+
width: 155px;
|
750
|
+
background: #FBE3E4 url('./images/rules_engine/re_rule/stop-failure-18.png') no-repeat 165px 2px;
|
751
|
+
font-weight: normal;
|
752
|
+
font-size: 17px;
|
753
|
+
border: 1px #7c1e1e solid;
|
754
|
+
padding: 3px 24px 3px 6px;
|
755
|
+
margin: 0 2px 4px 2px;
|
756
|
+
}
|
757
|
+
.re-xtra-rule-stop-success {
|
758
|
+
width: 155px;
|
759
|
+
background: #fffef0 url('./images/rules_engine/re_rule/stop-success-18.png') no-repeat 165px 2px;
|
760
|
+
font-weight: normal;
|
761
|
+
font-size: 17px;
|
762
|
+
border: 1px #7c1e1e solid;
|
763
|
+
padding: 3px 24px 3px 6px;
|
764
|
+
margin: 0 2px 4px 2px;
|
765
|
+
}
|
766
|
+
.re-xtra-rule-start-workflow {
|
767
|
+
width: 155px;
|
768
|
+
background: #fffef0 url('./images/rules_engine/re_rule/start-workflow-18.png') no-repeat 165px 2px;
|
769
|
+
font-weight: normal;
|
770
|
+
font-size: 17px;
|
771
|
+
border: 1px #92b83c solid;
|
772
|
+
padding: 3px 24px 3px 6px;
|
773
|
+
margin: 0 2px 4px 2px;
|
774
|
+
}
|
775
|
+
select#re_rule_class_list {
|
776
|
+
width: 240px;
|
777
|
+
height: 30px;
|
778
|
+
font: 18px/24px arial,sans-serif;
|
779
|
+
background-color: #FFF;
|
780
|
+
overflow: hidden;
|
781
|
+
}
|
782
|
+
.re-xtra-rule-list {
|
783
|
+
}
|
784
|
+
p.re-xtra-rule-name {
|
785
|
+
float: left;
|
786
|
+
font-size: 14px;
|
787
|
+
line-height: 18px;
|
788
|
+
width: 180px;
|
789
|
+
/* height: 16px;*/
|
790
|
+
/* overflow: hidden;*/
|
791
|
+
}
|
792
|
+
|
793
|
+
/* ************************************* */
|
794
|
+
/* PUBLICATIONS */
|
795
|
+
/* ************************************* */
|
796
|
+
div.re-menu-publication-show {
|
797
|
+
background: transparent url('./images/rules_engine/re_publication/show-25.png') no-repeat left -1px;
|
798
|
+
padding: 0 0 0 30px;
|
799
|
+
color: #222;
|
800
|
+
text-decoration: none;
|
801
|
+
}
|
802
|
+
|
803
|
+
div.re-xtra-publication-show-pending {
|
804
|
+
background: transparent url('./images/rules_engine/re_common/loading.gif') no-repeat 20px 4px;
|
805
|
+
padding: 16px 0 0 50px;
|
806
|
+
color: #696969;
|
807
|
+
}
|
808
|
+
|
809
|
+
/* ************************************* */
|
810
|
+
/* HISTORY */
|
811
|
+
/* ************************************* */
|
812
|
+
.re-breadcrumbs .re-bc-history-list {
|
813
|
+
background: transparent url('./images/rules_engine/re_history/list-25.png') no-repeat 0 4px;
|
814
|
+
padding: 0 0 0 30px;
|
815
|
+
}
|
816
|
+
|
817
|
+
h3.re-hdr-history-show {
|
818
|
+
background: transparent url('./images/rules_engine/re_history/list-25.png') no-repeat left 2px;
|
819
|
+
padding: 0 0 0 30px;
|
820
|
+
}
|
821
|
+
|
822
|
+
div.re-menu-history-list {
|
823
|
+
background: transparent url('./images/rules_engine/re_history/list-25.png') no-repeat left -1px;
|
824
|
+
padding: 0 0 0 30px;
|
825
|
+
color: #222;
|
826
|
+
text-decoration: none;
|
827
|
+
}
|
828
|
+
|
829
|
+
div.re-xtra-history-list-pending {
|
830
|
+
background: transparent url('./images/rules_engine/re_common/loading.gif') no-repeat 20px 4px;
|
831
|
+
padding: 16px 0 0 50px;
|
832
|
+
color: #696969;
|
833
|
+
}
|
834
|
+
|
835
|
+
a.re-xtra-history-next-enabled {
|
836
|
+
float: right;
|
837
|
+
background: transparent url('./images/rules_engine/re_common/list-next-enabled-14.png') no-repeat 0px 0px;
|
838
|
+
height: 16px;
|
839
|
+
width: 16px;
|
840
|
+
padding: 0 5px 0 2px;
|
841
|
+
}
|
842
|
+
a.re-xtra-history-next-disabled {
|
843
|
+
float: right;
|
844
|
+
background: transparent url('./images/rules_engine/re_common/list-next-disabled-14.png') no-repeat 0px 0px;
|
845
|
+
height: 16px;
|
846
|
+
width: 16px;
|
847
|
+
padding: 0 5px 0 2px;
|
848
|
+
}
|
849
|
+
a.re-xtra-history-prev-enabled {
|
850
|
+
float: right;
|
851
|
+
background: transparent url('./images/rules_engine/re_common/list-prev-enabled-14.png') no-repeat 0px 0px;
|
852
|
+
height: 16px;
|
853
|
+
width: 16px;
|
854
|
+
padding: 0 2px 0 5px;
|
855
|
+
}
|
856
|
+
a.re-xtra-history-prev-disabled {
|
857
|
+
float: right;
|
858
|
+
background: transparent url('./images/rules_engine/re_common/list-prev-disabled-14.png') no-repeat 0px 0px;
|
859
|
+
height: 16px;
|
860
|
+
width: 16px;
|
861
|
+
padding: 0 2px 0 5px;
|
862
|
+
}
|
863
|
+
|
864
|
+
.re-xtra-history-success {
|
865
|
+
background: transparent url('./images/rules_engine/re_common/status-success-14.png') no-repeat 0px 2px;
|
866
|
+
height: 16px;
|
867
|
+
padding-left: 20px;
|
868
|
+
}
|
869
|
+
.re-xtra-history-error {
|
870
|
+
background: transparent url('./images/rules_engine/re_common/status-error-14.png') no-repeat 0px 2px;
|
871
|
+
height: 16px;
|
872
|
+
padding-left: 20px;
|
873
|
+
}
|
874
|
+
.re-xtra-history-info {
|
875
|
+
background: transparent url('./images/rules_engine/re_common/status-info-14.png') no-repeat 0px 2px;
|
876
|
+
height: 16px;
|
877
|
+
padding-left: 20px;
|
878
|
+
}
|
879
|
+
.re-xtra-history-running {
|
880
|
+
background: transparent url('./images/rules_engine/re_common/status-info-14.png') no-repeat 0px 2px;
|
881
|
+
height: 16px;
|
882
|
+
padding-left: 20px;
|
883
|
+
}
|
884
|
+
|
885
|
+
.re-xtra-history-audit-success {
|
886
|
+
background: transparent url('./images/rules_engine/re_common/status-success-14.png') no-repeat 0px 2px;
|
887
|
+
height: 16px;
|
888
|
+
padding-left: 20px;
|
889
|
+
}
|
890
|
+
.re-xtra-history-audit-error {
|
891
|
+
background: transparent url('./images/rules_engine/re_common/status-error-14.png') no-repeat 0px 2px;
|
892
|
+
height: 16px;
|
893
|
+
padding-left: 20px;
|
894
|
+
}
|
895
|
+
.re-xtra-history-audit-info {
|
896
|
+
background: transparent url('./images/rules_engine/re_common/status-info-14.png') no-repeat 0px 2px;
|
897
|
+
height: 16px;
|
898
|
+
padding-left: 20px;
|
899
|
+
}
|