rules_view 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.textile +129 -0
- data/Rakefile +47 -0
- data/VERSION +1 -0
- data/app/views/layouts/rules_view.html.erb +43 -0
- data/app/views/re_view/template.html.erb +196 -0
- data/autotest/discover.rb +2 -0
- data/generators/install_generator.rb +41 -0
- data/generators/layout_generator.rb +41 -0
- data/generators/manifests/application.rb +116 -0
- data/generators/manifests/application.yml +8 -0
- data/generators/manifests/layout.rb +17 -0
- data/generators/manifests/layout.yml +5 -0
- data/generators/manifests/templates/app/views/layouts/rules_view_layout.html.erb +47 -0
- data/generators/manifests/templates/config/initializers/rules_view.rb +1 -0
- data/generators/manifests/templates/doc/README.rules_view +97 -0
- data/generators/manifests/templates/public/javascripts/rules_view/jquery-1.4.2.min.js +154 -0
- data/generators/manifests/templates/public/javascripts/rules_view/jquery.autocomplete.pack.js +13 -0
- data/generators/manifests/templates/public/javascripts/rules_view/jquery.blockUI.js +486 -0
- data/generators/manifests/templates/public/javascripts/rules_view/jquery.fancybox-1.3.1.js +1077 -0
- data/generators/manifests/templates/public/javascripts/rules_view/re_view.js +148 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/ie.css +35 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/buttons/icons/key.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/buttons/readme.txt +32 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/buttons/screen.css +97 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/fancy-type/screen.css +71 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/readme.txt +18 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/link-icons/screen.css +40 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/rtl/readme.txt +10 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/plugins/rtl/screen.css +110 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/print.css +29 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/screen.css +258 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/forms.css +65 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/grid.css +280 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/grid.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/ie.css +76 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/print.css +85 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/reset.css +45 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/typography.css +106 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/blank.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_close.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_loading.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_nav_left.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_nav_right.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_e.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_n.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_ne.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_nw.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_s.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_se.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_sw.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_w.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_left.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_main.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_over.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_right.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancybox-x.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancybox-y.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancybox.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/jquery.fancybox-1.3.1.css +363 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_box/shadowbox.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_box/whitebox.jpg +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/checked-off.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/checked-on.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/icon-add.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/icon-delete.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/list-add.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/list-remove.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/list-select.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-blue-left.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-blue-right.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-gray-left.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-gray-right.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-green-left.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-green-right.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-orange-left.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-orange-right.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-red-left.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/oval-red-right.gif +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_error/re-alert-close.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_navigate/breadcrumb.png +0 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/jquery.autocomplete.css +53 -0
- data/generators/manifests/templates/public/stylesheets/rules_view/rules_view.css +738 -0
- data/init.rb +1 -0
- data/lib/rules_view/alerts.rb +51 -0
- data/lib/rules_view/boxes.rb +25 -0
- data/lib/rules_view/buttons.rb +113 -0
- data/lib/rules_view/config.rb +21 -0
- data/lib/rules_view/defer.rb +30 -0
- data/lib/rules_view/engine.rb +28 -0
- data/lib/rules_view/form_builder.rb +62 -0
- data/lib/rules_view/form_fields.rb +41 -0
- data/lib/rules_view/form_styles.rb +112 -0
- data/lib/rules_view/model_loader.rb +64 -0
- data/lib/rules_view/navigate.rb +40 -0
- data/lib/rules_view.rb +20 -0
- data/rules_view.gemspec +239 -0
- data/spec/lib/rules_view/alerts_spec.rb +145 -0
- data/spec/lib/rules_view/boxes_spec.rb +49 -0
- data/spec/lib/rules_view/buttons_spec.rb +184 -0
- data/spec/lib/rules_view/defer_spec.rb +90 -0
- data/spec/lib/rules_view/form_builder_fields_spec.rb +184 -0
- data/spec/lib/rules_view/form_builder_spec.rb +19 -0
- data/spec/lib/rules_view/form_fields_spec.rb +219 -0
- data/spec/lib/rules_view/form_styles_spec.rb +290 -0
- data/spec/lib/rules_view/model_loader_spec.rb +202 -0
- data/spec/lib/rules_view/navigate_spec.rb +61 -0
- data/spec/rails_3_0_0_root/.gitignore +4 -0
- data/spec/rails_3_0_0_root/.rspec +1 -0
- data/spec/rails_3_0_0_root/Gemfile +13 -0
- data/spec/rails_3_0_0_root/Gemfile.lock +101 -0
- data/spec/rails_3_0_0_root/README +256 -0
- data/spec/rails_3_0_0_root/Rakefile +7 -0
- data/spec/rails_3_0_0_root/app/controllers/application_controller.rb +3 -0
- data/spec/rails_3_0_0_root/app/helpers/application_helper.rb +2 -0
- data/spec/rails_3_0_0_root/app/views/layouts/application.html.erb +14 -0
- data/spec/rails_3_0_0_root/autotest/discover.rb +2 -0
- data/spec/rails_3_0_0_root/config/application.rb +42 -0
- data/spec/rails_3_0_0_root/config/boot.rb +13 -0
- data/spec/rails_3_0_0_root/config/database.yml +22 -0
- data/spec/rails_3_0_0_root/config/environment.rb +5 -0
- data/spec/rails_3_0_0_root/config/environments/development.rb +26 -0
- data/spec/rails_3_0_0_root/config/environments/production.rb +49 -0
- data/spec/rails_3_0_0_root/config/environments/test.rb +35 -0
- data/spec/rails_3_0_0_root/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/rails_3_0_0_root/config/initializers/inflections.rb +10 -0
- data/spec/rails_3_0_0_root/config/initializers/mime_types.rb +5 -0
- data/spec/rails_3_0_0_root/config/initializers/secret_token.rb +7 -0
- data/spec/rails_3_0_0_root/config/initializers/session_store.rb +8 -0
- data/spec/rails_3_0_0_root/config/locales/en.yml +5 -0
- data/spec/rails_3_0_0_root/config/routes.rb +58 -0
- data/spec/rails_3_0_0_root/config.ru +4 -0
- data/spec/rails_3_0_0_root/db/seeds.rb +7 -0
- data/spec/rails_3_0_0_root/doc/README_FOR_APP +2 -0
- data/spec/rails_3_0_0_root/lib/tasks/.gitkeep +0 -0
- data/spec/rails_3_0_0_root/public/404.html +26 -0
- data/spec/rails_3_0_0_root/public/422.html +26 -0
- data/spec/rails_3_0_0_root/public/500.html +26 -0
- data/spec/rails_3_0_0_root/public/favicon.ico +0 -0
- data/spec/rails_3_0_0_root/public/images/rails.png +0 -0
- data/spec/rails_3_0_0_root/public/index.html +239 -0
- data/spec/rails_3_0_0_root/public/javascripts/application.js +2 -0
- data/spec/rails_3_0_0_root/public/javascripts/controls.js +965 -0
- data/spec/rails_3_0_0_root/public/javascripts/dragdrop.js +974 -0
- data/spec/rails_3_0_0_root/public/javascripts/effects.js +1123 -0
- data/spec/rails_3_0_0_root/public/javascripts/prototype.js +6001 -0
- data/spec/rails_3_0_0_root/public/javascripts/rails.js +175 -0
- data/spec/rails_3_0_0_root/public/robots.txt +5 -0
- data/spec/rails_3_0_0_root/public/stylesheets/.gitkeep +0 -0
- data/spec/rails_3_0_0_root/script/rails +6 -0
- data/spec/rails_3_0_0_root/spec/spec_helper.rb +27 -0
- data/spec/rails_3_0_0_root/vendor/plugins/.gitkeep +0 -0
- data/spec/spec_helper.rb +29 -0
- data/spec/support/create_memory_db.rb +2 -0
- data/tasks/rspec.rake +46 -0
- metadata +278 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
/* --------------------------------------------------------------
|
|
2
|
+
|
|
3
|
+
print.css
|
|
4
|
+
* Gives you some sensible styles for printing pages.
|
|
5
|
+
* See Readme file in this directory for further instructions.
|
|
6
|
+
|
|
7
|
+
Some additions you'll want to make, customized to your markup:
|
|
8
|
+
#header, #footer, #navigation { display:none; }
|
|
9
|
+
|
|
10
|
+
-------------------------------------------------------------- */
|
|
11
|
+
|
|
12
|
+
body {
|
|
13
|
+
line-height: 1.5;
|
|
14
|
+
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
15
|
+
color:#000;
|
|
16
|
+
background: none;
|
|
17
|
+
font-size: 10pt;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
/* Layout
|
|
22
|
+
-------------------------------------------------------------- */
|
|
23
|
+
|
|
24
|
+
.container {
|
|
25
|
+
background: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
hr {
|
|
29
|
+
background:#ccc;
|
|
30
|
+
color:#ccc;
|
|
31
|
+
width:100%;
|
|
32
|
+
height:2px;
|
|
33
|
+
margin:2em 0;
|
|
34
|
+
padding:0;
|
|
35
|
+
border:none;
|
|
36
|
+
}
|
|
37
|
+
hr.space {
|
|
38
|
+
background: #fff;
|
|
39
|
+
color: #fff;
|
|
40
|
+
visibility: hidden;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
/* Text
|
|
45
|
+
-------------------------------------------------------------- */
|
|
46
|
+
|
|
47
|
+
h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }
|
|
48
|
+
code { font:.9em "Courier New", Monaco, Courier, monospace; }
|
|
49
|
+
|
|
50
|
+
a img { border:none; }
|
|
51
|
+
p img.top { margin-top: 0; }
|
|
52
|
+
|
|
53
|
+
blockquote {
|
|
54
|
+
margin:1.5em;
|
|
55
|
+
padding:1em;
|
|
56
|
+
font-style:italic;
|
|
57
|
+
font-size:.9em;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.small { font-size: .9em; }
|
|
61
|
+
.large { font-size: 1.1em; }
|
|
62
|
+
.quiet { color: #999; }
|
|
63
|
+
.hide { display:none; }
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
/* Links
|
|
67
|
+
-------------------------------------------------------------- */
|
|
68
|
+
|
|
69
|
+
a:link, a:visited {
|
|
70
|
+
background: transparent;
|
|
71
|
+
font-weight:700;
|
|
72
|
+
text-decoration: underline;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
a:link:after, a:visited:after {
|
|
76
|
+
content: " (" attr(href) ")";
|
|
77
|
+
font-size: 90%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
/* If you're having trouble printing relative links, uncomment and customize this:
|
|
81
|
+
(note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
|
|
82
|
+
|
|
83
|
+
/* a[href^="/"]:after {
|
|
84
|
+
content: " (http://www.yourdomain.com" attr(href) ") ";
|
|
85
|
+
} */
|
|
@@ -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; }
|
data/generators/manifests/templates/public/stylesheets/rules_view/blueprint/src/typography.css
ADDED
|
@@ -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
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_nav_right.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_ne.png
ADDED
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_nw.png
ADDED
|
Binary file
|
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_se.png
ADDED
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_shadow_sw.png
ADDED
|
Binary file
|
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_left.png
ADDED
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_main.png
ADDED
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_over.png
ADDED
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/fancy_title_right.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/fancybox/jquery.fancybox-1.3.1.css
ADDED
|
@@ -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'); }
|
data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_box/shadowbox.png
ADDED
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_box/whitebox.jpg
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/icon-add.png
ADDED
|
Binary file
|
|
Binary file
|
data/generators/manifests/templates/public/stylesheets/rules_view/images/re_view_button/list-add.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|