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,738 @@
|
|
|
1
|
+
/* CHANGE SOME OF THE BLUEPRINT DEFAULTS */
|
|
2
|
+
html, body {
|
|
3
|
+
margin: 0px;
|
|
4
|
+
padding: 0px;
|
|
5
|
+
font-size: 14px;
|
|
6
|
+
color: #333;
|
|
7
|
+
background: #2F323C;
|
|
8
|
+
font-family: "Lucida Grande","Lucida Sans Unicode",verdana,arial,helvetica,sans-serif;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.container {
|
|
12
|
+
background: #fff;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
h1, h2, h3, h4, h5, h6 {
|
|
16
|
+
font-weight:normal;
|
|
17
|
+
color: #222;
|
|
18
|
+
}
|
|
19
|
+
h1 {
|
|
20
|
+
font-size:36px;
|
|
21
|
+
line-height:42px;
|
|
22
|
+
margin: 18px 6px 6px 6px;
|
|
23
|
+
}
|
|
24
|
+
h2 {
|
|
25
|
+
font-size:30px;
|
|
26
|
+
line-height:36px;
|
|
27
|
+
margin: 16px 6px 6px 6px;
|
|
28
|
+
}
|
|
29
|
+
h3 {
|
|
30
|
+
font-size:24px;
|
|
31
|
+
line-height:30px;
|
|
32
|
+
margin: 12px 6px 6px 6px;
|
|
33
|
+
}
|
|
34
|
+
h4 {
|
|
35
|
+
font-size:20px;
|
|
36
|
+
line-height:24px;
|
|
37
|
+
margin: 8px 6px 6px 6px;
|
|
38
|
+
}
|
|
39
|
+
h5 {
|
|
40
|
+
font-size:18px;
|
|
41
|
+
line-height:22px;
|
|
42
|
+
margin: 8px 6px 6px 6px;
|
|
43
|
+
}
|
|
44
|
+
h6 {
|
|
45
|
+
font-size:16px;
|
|
46
|
+
line-height:20px;
|
|
47
|
+
margin: 8px 6px 6px 6px;
|
|
48
|
+
}
|
|
49
|
+
p {
|
|
50
|
+
color: #444;
|
|
51
|
+
font-size:14px;
|
|
52
|
+
line-height:20px;
|
|
53
|
+
margin: 6px;
|
|
54
|
+
}
|
|
55
|
+
li {
|
|
56
|
+
color: #444;
|
|
57
|
+
font-size:14px;
|
|
58
|
+
line-height:20px;
|
|
59
|
+
margin: 6px;
|
|
60
|
+
}
|
|
61
|
+
hr {margin:0 0 2px;}
|
|
62
|
+
|
|
63
|
+
textarea {height:60px;padding:5px;}
|
|
64
|
+
|
|
65
|
+
/* DIV LOCATIONS */
|
|
66
|
+
.float-left {float:left;}
|
|
67
|
+
.float-right { float:right;}
|
|
68
|
+
|
|
69
|
+
/* TEST SIZES */
|
|
70
|
+
.megatext {font-size: 2.0em;}
|
|
71
|
+
.largetext {font-size: 1.5em;}
|
|
72
|
+
.midtext {font-size: 1.2em;}
|
|
73
|
+
.smalltext {font-size: 0.9em;}
|
|
74
|
+
.tinytext {font-size: 0.8em;}
|
|
75
|
+
|
|
76
|
+
/* SIMPLE COLOR SELECTION */
|
|
77
|
+
.warning, a.warning, a:visited.warning, .warning a {color: #9F0000}
|
|
78
|
+
.boldblack, a.boldblack, a:visited.boldblack, .boldblack a {color: #000; font-weight: 700}
|
|
79
|
+
.black, a.black, a:visited.black, .black a {color: #000}
|
|
80
|
+
.white, a.white, a:visited.white, .white a{color: #fff;}
|
|
81
|
+
.grey, a.grey, a:visited.grey, .grey a {color: #696969}
|
|
82
|
+
.red, a.red, a:visited.red, .red a{color: #b43838}
|
|
83
|
+
.dkred, a.dkred, a:visited.dkred, .dkred a{color: #5c2a0d}
|
|
84
|
+
.blue, a.blue, a:visited.blue, .blue a{color: #244A9F}
|
|
85
|
+
.lightblue, a.lightblue, a:visited.lightblue, .lightblue a{color: #cce3f4;}
|
|
86
|
+
.green, a.green, a:visited.green, .green a{color: #92b83c}
|
|
87
|
+
.dkgreen, a.dkgreen, a:visited.dkgreen, .dkgreen a{color: #218868}
|
|
88
|
+
.brown, a.brown, a:visited.brown, .brown a{color: #a8a388}
|
|
89
|
+
|
|
90
|
+
.no-top {border-top:0px solid #fff!important;}
|
|
91
|
+
.no-bottom {border-bottom:0px solid #fff!important;}
|
|
92
|
+
.no-margin {margin: 0!important;}
|
|
93
|
+
a.no-line, .no-line a {text-decoration:none;}
|
|
94
|
+
|
|
95
|
+
.prepend-top { margin-top:0.75em;}
|
|
96
|
+
|
|
97
|
+
.top-1 { padding-top: 1px; }
|
|
98
|
+
.top-2 { padding-top: 2px; }
|
|
99
|
+
.top-5 { padding-top: 5px; }
|
|
100
|
+
.top-10 { padding-top: 10px; }
|
|
101
|
+
.top-15 { padding-top: 15px; }
|
|
102
|
+
.top-20 { padding-top: 20px; }
|
|
103
|
+
.top-50 { padding-top: 50px; }
|
|
104
|
+
.top-100 { padding-top: 100px; }
|
|
105
|
+
.left-5 { padding-left: 5px; }
|
|
106
|
+
.left-10 { padding-left: 10px; }
|
|
107
|
+
.left-15 { padding-left: 15px; }
|
|
108
|
+
.left-20 { padding-left: 20px; }
|
|
109
|
+
.left-50 { padding-left: 50px; }
|
|
110
|
+
.left-100 { padding-left: 100px; }
|
|
111
|
+
.right-5 { padding-right: 5px; }
|
|
112
|
+
.right-10 { padding-right: 10px; }
|
|
113
|
+
.right-15 { padding-right: 15px; }
|
|
114
|
+
.right-20 { padding-right: 20px; }
|
|
115
|
+
.right-50 { padding-right: 50px; }
|
|
116
|
+
.right-100 { padding-right: 100px; }
|
|
117
|
+
.bottom-5 { padding-bottom: 5px; }
|
|
118
|
+
.bottom-10 { padding-bottom: 10px; }
|
|
119
|
+
.bottom-15 { padding-bottom: 15px; }
|
|
120
|
+
.bottom-20 { padding-bottom: 20px; }
|
|
121
|
+
.bottom-50 { padding-bottom: 50px; }
|
|
122
|
+
.bottom-100{ padding-bottom: 100px; }
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
/* BOXES */
|
|
126
|
+
.re-whitebox{
|
|
127
|
+
border-top: 1px solid #b5b5b5;
|
|
128
|
+
border-left: 1px solid #b5b5b5;
|
|
129
|
+
border-right: 1px solid #b5b5b5;
|
|
130
|
+
border-bottom: 1px solid #b5b5b5;
|
|
131
|
+
background: #FFFFFF url("./images/re_view_box/whitebox.jpg") no-repeat top left;
|
|
132
|
+
height: 1%
|
|
133
|
+
}
|
|
134
|
+
html>body .re-whitebox {
|
|
135
|
+
height: auto;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.re-whitebox-content{
|
|
139
|
+
margin-top: 0px;
|
|
140
|
+
margin-right: 10px;
|
|
141
|
+
margin-bottom: 5px;
|
|
142
|
+
margin-left: 15px;
|
|
143
|
+
padding: 5px 0 0 0;
|
|
144
|
+
text-align: left;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.re-shadowbox-outer{
|
|
148
|
+
padding-bottom: 12px;
|
|
149
|
+
background: #FFFFFF url("./images/re_view_box/shadowbox.png") no-repeat bottom left;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.re-shadowbox-inner{
|
|
153
|
+
border-right: 1px solid #ccc;
|
|
154
|
+
background-color: #FDF8B3;
|
|
155
|
+
padding: 5px 15px 5px 15px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.re-bluebox-header {
|
|
159
|
+
color: #fff;
|
|
160
|
+
background: #5b93ba;
|
|
161
|
+
border: 1px #335871 solid;
|
|
162
|
+
padding: 2px;
|
|
163
|
+
margin: 0;
|
|
164
|
+
}
|
|
165
|
+
.re-bluebox {
|
|
166
|
+
border: 1px #4983a5 solid;
|
|
167
|
+
padding: 2px;
|
|
168
|
+
margin: 0;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.re-greenbox-header {
|
|
172
|
+
color: #fff;
|
|
173
|
+
background: #92b83c;
|
|
174
|
+
border: 1px #92b83c solid;
|
|
175
|
+
padding: 2px;
|
|
176
|
+
margin: 0;
|
|
177
|
+
}
|
|
178
|
+
.re-greenbox {
|
|
179
|
+
border: 1px #92b83c solid;
|
|
180
|
+
padding: 2px;
|
|
181
|
+
margin: 0;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.re-redbox-header {
|
|
185
|
+
color: #fff;
|
|
186
|
+
background: #b43838;
|
|
187
|
+
border: 1px #7c1e1e solid;
|
|
188
|
+
padding: 2px;
|
|
189
|
+
margin: 0;
|
|
190
|
+
}
|
|
191
|
+
.re-redbox {
|
|
192
|
+
border: 1px #7c1e1e solid;
|
|
193
|
+
padding: 2px;
|
|
194
|
+
margin: 0;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.re-dkgreenbox-header {
|
|
198
|
+
color: #fff;
|
|
199
|
+
background: #218868;
|
|
200
|
+
border: 1px #548B54 solid;
|
|
201
|
+
padding: 2px;
|
|
202
|
+
margin: 0;
|
|
203
|
+
}
|
|
204
|
+
.re-dkgreenbox {
|
|
205
|
+
border: 1px #548B54 solid;
|
|
206
|
+
padding: 2px;
|
|
207
|
+
margin: 0;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.re-brownbox-header {
|
|
211
|
+
background: #a8a388;
|
|
212
|
+
border-top: 1px solid #989377;
|
|
213
|
+
border-right: 1px solid #989377;
|
|
214
|
+
border-left: 1px solid #989377;
|
|
215
|
+
padding: 2px;
|
|
216
|
+
margin: 0;
|
|
217
|
+
}
|
|
218
|
+
.re-brownbox {
|
|
219
|
+
background: #ece9da;
|
|
220
|
+
border: 1px #d5d1ba solid;
|
|
221
|
+
padding: 2px;
|
|
222
|
+
margin: 0;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.re-yellowbox-header {
|
|
226
|
+
background: #f3f1b1;
|
|
227
|
+
border: 1px solid #f3f1b1;
|
|
228
|
+
padding: 2px;
|
|
229
|
+
margin: 0;
|
|
230
|
+
}
|
|
231
|
+
.re-yellowbox{
|
|
232
|
+
background: #fffef0;
|
|
233
|
+
border: 1px #f3f1b1 solid;
|
|
234
|
+
padding: 2px;
|
|
235
|
+
margin: 0;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.re-infobox {
|
|
239
|
+
font-size: 13px;
|
|
240
|
+
line-height: 16px;
|
|
241
|
+
padding: 5px 3px;
|
|
242
|
+
margin: 0 2px 0 15px;
|
|
243
|
+
border: solid #ddd 5px;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
/* @group BREADCRUMBS */
|
|
248
|
+
.re-breadcrumbs {
|
|
249
|
+
margin:0 0 5px 0;
|
|
250
|
+
padding:0 10px;
|
|
251
|
+
height:35px;
|
|
252
|
+
line-height:35px;
|
|
253
|
+
border-bottom:2px solid #ddd;
|
|
254
|
+
color: #222;
|
|
255
|
+
}
|
|
256
|
+
.re-breadcrumbs a {
|
|
257
|
+
float:left;
|
|
258
|
+
height:35px;
|
|
259
|
+
color: #222;
|
|
260
|
+
font-size: 18px;
|
|
261
|
+
text-decoration: none;
|
|
262
|
+
}
|
|
263
|
+
.re-breadcrumbs a:hover {
|
|
264
|
+
text-decoration: underline;
|
|
265
|
+
}
|
|
266
|
+
.re-breadcrumbs em {
|
|
267
|
+
float:left;
|
|
268
|
+
height:35px;
|
|
269
|
+
font-weight: normal;
|
|
270
|
+
font-size: 18px;
|
|
271
|
+
}
|
|
272
|
+
.re-breadcrumbs span {
|
|
273
|
+
float:left;
|
|
274
|
+
}
|
|
275
|
+
.re-breadcrumbs span.re-breadcrumbs-seperator {
|
|
276
|
+
background:url(./images/re_view_navigate/breadcrumb.png) no-repeat 5px center;
|
|
277
|
+
float:left;
|
|
278
|
+
overflow:hidden;
|
|
279
|
+
height:35px;
|
|
280
|
+
padding:0 0 0 20px;
|
|
281
|
+
width:0px;
|
|
282
|
+
filter:alpha(opacity=90);
|
|
283
|
+
opacity:0.9;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.re-breadcrumbs .re-breadcrumb-right {
|
|
287
|
+
float:right;
|
|
288
|
+
margin:0;
|
|
289
|
+
padding:0px;
|
|
290
|
+
text-align:left;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/* TABLES */
|
|
294
|
+
table{
|
|
295
|
+
margin:0;
|
|
296
|
+
padding:0;
|
|
297
|
+
}
|
|
298
|
+
table td h2,
|
|
299
|
+
table td h3,
|
|
300
|
+
table td h4,
|
|
301
|
+
table td h5,
|
|
302
|
+
table td h6{
|
|
303
|
+
padding: 0;
|
|
304
|
+
margin: 0;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
table.data {
|
|
308
|
+
border-collapse:collapse;
|
|
309
|
+
empty-cells:show;
|
|
310
|
+
margin-bottom:0;
|
|
311
|
+
width:100%;
|
|
312
|
+
}
|
|
313
|
+
table.data th, table.data td {
|
|
314
|
+
border:solid 1px #ccc;
|
|
315
|
+
padding: 4px 3px 4px 3px;
|
|
316
|
+
}
|
|
317
|
+
table.data th {
|
|
318
|
+
background-color: #D3E3B6;
|
|
319
|
+
font-weight:bold;
|
|
320
|
+
text-align:left;
|
|
321
|
+
}
|
|
322
|
+
table.data th.text-right,
|
|
323
|
+
table.data td.text-right {
|
|
324
|
+
text-align:right;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
table.data td {
|
|
328
|
+
background-color:#fff;
|
|
329
|
+
}
|
|
330
|
+
table.data tr.odd td {
|
|
331
|
+
background-color:#f2f2e5;
|
|
332
|
+
}
|
|
333
|
+
table.data td.highlight {
|
|
334
|
+
border:2px solid #E8DC24;
|
|
335
|
+
font-weight: bold;
|
|
336
|
+
}
|
|
337
|
+
table.data tr.border-top td, table.data tr.border-top th {
|
|
338
|
+
border-top: 2px solid #696969;
|
|
339
|
+
}
|
|
340
|
+
table.data tr.border-bottom td, table.data tr.border-bottom th {
|
|
341
|
+
border-bottom:2px solid #696969
|
|
342
|
+
}
|
|
343
|
+
table.data td.no-border {
|
|
344
|
+
background-color: #fff;
|
|
345
|
+
border:none;
|
|
346
|
+
}
|
|
347
|
+
table.data td.no-border-top, table.data th.no-border-top {
|
|
348
|
+
border-top:none;
|
|
349
|
+
}
|
|
350
|
+
table.data td.no-border-bottom, table.data th.no-border-bottom {
|
|
351
|
+
border-bottom:none;
|
|
352
|
+
}
|
|
353
|
+
table.data td.no-border-left, table.data th.no-border-left {
|
|
354
|
+
border-left:none;
|
|
355
|
+
}
|
|
356
|
+
table.data td.no-border-right, table.data th.no-border-right {
|
|
357
|
+
border-right:none;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
table.data-alternative {
|
|
361
|
+
border-collapse:collapse;
|
|
362
|
+
empty-cells:show;
|
|
363
|
+
margin-bottom:0;
|
|
364
|
+
width:100%;
|
|
365
|
+
}
|
|
366
|
+
table.data-alternative th, table.data-alternative td {
|
|
367
|
+
border:solid 1px #dedede;;
|
|
368
|
+
padding: 4px 3px 4px 3px;
|
|
369
|
+
}
|
|
370
|
+
table.data-alternative th {
|
|
371
|
+
background-color: #f2f2e5;
|
|
372
|
+
font-weight:bold;
|
|
373
|
+
}
|
|
374
|
+
table.data-alternative td {
|
|
375
|
+
background-color:#fff;
|
|
376
|
+
}
|
|
377
|
+
table.data-alternative tr.odd td {
|
|
378
|
+
background-color:#F1F1F1;
|
|
379
|
+
}
|
|
380
|
+
table.data-alternative td.highlight {
|
|
381
|
+
border:2px solid #E8DC24;
|
|
382
|
+
font-weight: bold;
|
|
383
|
+
}
|
|
384
|
+
table.data-alternative tr.border-top td, table.data-alternative tr.border-top th {
|
|
385
|
+
border-top: 2px solid #696969;
|
|
386
|
+
}
|
|
387
|
+
table.data-alternative tr.border-bottom td, table.data-alternative tr.border-bottom th {
|
|
388
|
+
border-bottom:2px solid #696969
|
|
389
|
+
}
|
|
390
|
+
table.data-alternative td.no-border {
|
|
391
|
+
background-color: #fff;
|
|
392
|
+
border:none;
|
|
393
|
+
}
|
|
394
|
+
table.data-alternative td.no-border-top, table.data-alternative th.no-border-top {
|
|
395
|
+
border-top:none;
|
|
396
|
+
}
|
|
397
|
+
table.data-alternative td.no-border-bottom, table.data-alternative th.no-border-bottom {
|
|
398
|
+
border-bottom:none;
|
|
399
|
+
}
|
|
400
|
+
table.data-alternative td.no-border-left, table.data-alternative th.no-border-left {
|
|
401
|
+
border-left:none;
|
|
402
|
+
}
|
|
403
|
+
table.data-alternative td.no-border-right, table.data-alternative th.no-border-right {
|
|
404
|
+
border-right:none;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
table.data-line {
|
|
408
|
+
border-collapse:collapse;
|
|
409
|
+
empty-cells:show;
|
|
410
|
+
margin-bottom:0;
|
|
411
|
+
width:100%;
|
|
412
|
+
}
|
|
413
|
+
table.data-line td {
|
|
414
|
+
border-bottom:solid 1px #ccc;
|
|
415
|
+
padding: 4px 3px 4px 3px;
|
|
416
|
+
}
|
|
417
|
+
table.data-line td {
|
|
418
|
+
background-color:#fff;
|
|
419
|
+
}
|
|
420
|
+
table.data-line tr.odd td {
|
|
421
|
+
background-color:#f2f2e5;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
/* FORMS */
|
|
426
|
+
.re-form-field {
|
|
427
|
+
margin: 0;
|
|
428
|
+
padding: 0;
|
|
429
|
+
border-bottom: 1px solid #EEE;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.re-form-label, .re-form-label-error{
|
|
433
|
+
color: #305267;
|
|
434
|
+
font-size: 14px;
|
|
435
|
+
margin-top: 6px;
|
|
436
|
+
}
|
|
437
|
+
.re-form-label-error{
|
|
438
|
+
color:#933;
|
|
439
|
+
}
|
|
440
|
+
.re-form-label .re-form-required,
|
|
441
|
+
.re-form-label-error .re-form-required {
|
|
442
|
+
padding-left: 3px;
|
|
443
|
+
color:#933;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.re-form-data, .re-form-data-error{
|
|
447
|
+
color: #305267;
|
|
448
|
+
font-size: 14px;
|
|
449
|
+
margin: 0;
|
|
450
|
+
padding: 0;
|
|
451
|
+
}
|
|
452
|
+
.re-form-data-error{
|
|
453
|
+
color:#933;
|
|
454
|
+
}
|
|
455
|
+
.re-form-data .form-hint,
|
|
456
|
+
.re-form-data-error .form-hint
|
|
457
|
+
{
|
|
458
|
+
display:inline-block;
|
|
459
|
+
font-size: 12px;
|
|
460
|
+
color: #305267;
|
|
461
|
+
padding: 3px 5px 0 5px;
|
|
462
|
+
}
|
|
463
|
+
.re-form-data .form-text{
|
|
464
|
+
display:inline-block;
|
|
465
|
+
font-size: 16px;
|
|
466
|
+
line-height: 20px;
|
|
467
|
+
color: #222;
|
|
468
|
+
padding: 6px 5px 0 5px;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.re-form-data .form-error-message,
|
|
472
|
+
.re-form-data-error .form-error-message {
|
|
473
|
+
display:inline-block;
|
|
474
|
+
font-size: 12px;
|
|
475
|
+
color:#933;
|
|
476
|
+
padding: 3px 5px 0 5px;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.re-form-disabled{
|
|
480
|
+
color: #CCC;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
/* overwrite bliueprint */
|
|
484
|
+
input[type=text], input[type=password], textarea, select {margin:4px 0 4px 0;padding:2px 3px;}
|
|
485
|
+
input[type=text], input[type=password], textarea, select {background-color:#fff; border:1px solid #bbb;}
|
|
486
|
+
|
|
487
|
+
label{
|
|
488
|
+
font-weight: normal;
|
|
489
|
+
}
|
|
490
|
+
input{
|
|
491
|
+
display:block;
|
|
492
|
+
float: left;
|
|
493
|
+
font-size: 14px;
|
|
494
|
+
}
|
|
495
|
+
textarea{
|
|
496
|
+
/* font-family: "Lucida Grande","Lucida Sans Unicode",verdana,arial,helvetica,sans-serif;*/
|
|
497
|
+
display:block;
|
|
498
|
+
float: left;
|
|
499
|
+
font-size: 14px;
|
|
500
|
+
}
|
|
501
|
+
select{
|
|
502
|
+
display:block;
|
|
503
|
+
float: left;
|
|
504
|
+
font-size: 14px;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.re-form-field-checkbox input[type=checkbox]{
|
|
508
|
+
display:block;
|
|
509
|
+
float:left;
|
|
510
|
+
}
|
|
511
|
+
.re-form-field-checkbox .form-text{
|
|
512
|
+
margin-top: 0px;
|
|
513
|
+
padding-top: 4px;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.re-form-field-checkbox .form-text .re-form-label,
|
|
517
|
+
.re-form-field-checkbox .form-text .re-form-label-error{
|
|
518
|
+
margin-top: 0px;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.fieldWithErrors{/* Override the Rails Field Error*/
|
|
522
|
+
display:block;
|
|
523
|
+
float: left;
|
|
524
|
+
color: #933;
|
|
525
|
+
font-size: 14px;
|
|
526
|
+
}
|
|
527
|
+
.fieldWithErrors input, .fieldWithErrors textarea,
|
|
528
|
+
.re-form-data-error input, .re-form-data-error textarea,
|
|
529
|
+
.form-text-error input, .form-text-error textarea
|
|
530
|
+
{
|
|
531
|
+
border-bottom:1px solid #933;
|
|
532
|
+
border-right:1px solid #933;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.re-form-disabled .re-form-required,
|
|
536
|
+
.re-form-disabled label,
|
|
537
|
+
.re-form-disabled .fieldWithErrors,
|
|
538
|
+
.re-form-disabled .formError
|
|
539
|
+
{
|
|
540
|
+
color: #CCC;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
/* generated from src/re_view_error.css */
|
|
544
|
+
.error, .notice, .success {
|
|
545
|
+
font-size:16px;
|
|
546
|
+
margin-bottom: 5px;
|
|
547
|
+
padding: 5px 15px;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
a.re-alert-close {
|
|
551
|
+
float: right;
|
|
552
|
+
text-decoration: none;
|
|
553
|
+
background: url('./images/re_view_error/re-alert-close.png') no-repeat 2px 2px;
|
|
554
|
+
height: 20px;
|
|
555
|
+
padding-left: 24px;
|
|
556
|
+
}
|
|
557
|
+
a.re-alert-close:hover {
|
|
558
|
+
/* color: #000;*/
|
|
559
|
+
color: #222;
|
|
560
|
+
text-decoration: underline;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.re-error {
|
|
564
|
+
background-color: #fcc;
|
|
565
|
+
/* margin: 10px 3px 5px 3px;*/
|
|
566
|
+
padding: 0;
|
|
567
|
+
text-align: left;
|
|
568
|
+
border: solid 1px #f66;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.re-error p {
|
|
572
|
+
background: #fcc;
|
|
573
|
+
color: #111;
|
|
574
|
+
font-size: 14px;
|
|
575
|
+
padding: 2px 5px;
|
|
576
|
+
margin: 5px 0px 5px 0px;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
/* generated from src/re_view_button.css */
|
|
580
|
+
div.re-form-button {
|
|
581
|
+
display: block;
|
|
582
|
+
float: right;
|
|
583
|
+
margin-top: 4px;
|
|
584
|
+
margin-bottom: 1px;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
a.re-form-button-gray,
|
|
588
|
+
a.re-form-button-blue,
|
|
589
|
+
a.re-form-button-green,
|
|
590
|
+
a.re-form-button-orange,
|
|
591
|
+
a.re-form-button-red
|
|
592
|
+
{
|
|
593
|
+
display: block;
|
|
594
|
+
font-size: 14px; /* Change 13px as desired */
|
|
595
|
+
font-weight: bold;
|
|
596
|
+
letter-spacing: -0.25px;
|
|
597
|
+
line-height: 16px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
|
|
598
|
+
height: 24px; /* Height of button background height */
|
|
599
|
+
padding-left: 11px; /* Width of left menu image */
|
|
600
|
+
padding-right: 0px;
|
|
601
|
+
margin-left: 5px;
|
|
602
|
+
text-decoration: none;
|
|
603
|
+
text-align: center;
|
|
604
|
+
/* margin-bottom: 5px;*/
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
a:link.re-form-button-gray, a:visited.re-form-button-gray, a:active.re-form-button-gray,
|
|
608
|
+
a:link.re-form-button-blue, a:visited.re-form-button-blue, a:active.re-form-button-blue,
|
|
609
|
+
a:link.re-form-button-green, a:visited.re-form-button-green, a:active.re-form-button-green,
|
|
610
|
+
a:link.re-form-button-orange, a:visited.re-form-button-orange, a:active.re-form-button-orange,
|
|
611
|
+
a:link.re-form-button-red, a:visited.re-form-button-red, a:active.re-form-button-red
|
|
612
|
+
{
|
|
613
|
+
color: #494949; /*button text color*/
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
a.re-form-button-gray span,
|
|
617
|
+
a.re-form-button-blue span,
|
|
618
|
+
a.re-form-button-green span,
|
|
619
|
+
a.re-form-button-orange span,
|
|
620
|
+
a.re-form-button-red span
|
|
621
|
+
{
|
|
622
|
+
display: block;
|
|
623
|
+
padding: 4px 11px 4px 0; /*Set 11px below to match value of 'padding-left' value above*/
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
a.re-form-button-gray:hover,
|
|
627
|
+
a.re-form-button-blue:hover,
|
|
628
|
+
a.re-form-button-green:hover,
|
|
629
|
+
a.re-form-button-orange:hover,
|
|
630
|
+
a.re-form-button-red:hover
|
|
631
|
+
{ /* Hover state CSS */
|
|
632
|
+
background-position: bottom left;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
a.re-form-button-gray:hover span,
|
|
636
|
+
a.re-form-button-blue:hover span,
|
|
637
|
+
a.re-form-button-green:hover span,
|
|
638
|
+
a.re-form-button-orange:hover span,
|
|
639
|
+
a.re-form-button-red:hover span
|
|
640
|
+
{ /* Hover state CSS */
|
|
641
|
+
background-position: bottom right;
|
|
642
|
+
color: black;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
a.re-form-button-gray{ background: transparent url('./images/re_view_button/oval-gray-left.gif') no-repeat top left;}
|
|
646
|
+
a.re-form-button-blue{ background: transparent url('./images/re_view_button/oval-blue-left.gif') no-repeat top left;}
|
|
647
|
+
a.re-form-button-green{ background: transparent url('./images/re_view_button/oval-green-left.gif') no-repeat top left;}
|
|
648
|
+
a.re-form-button-orange{ background: transparent url('./images/re_view_button/oval-orange-left.gif') no-repeat top left;}
|
|
649
|
+
a.re-form-button-red{ background: transparent url('./images/re_view_button/oval-red-left.gif') no-repeat top left;}
|
|
650
|
+
|
|
651
|
+
a.re-form-button-gray span{ background: transparent url('./images/re_view_button/oval-gray-right.gif') no-repeat top right;}
|
|
652
|
+
a.re-form-button-blue span{ background: transparent url('./images/re_view_button/oval-blue-right.gif') no-repeat top right;}
|
|
653
|
+
a.re-form-button-green span{ background: transparent url('./images/re_view_button/oval-green-right.gif') no-repeat top right;}
|
|
654
|
+
a.re-form-button-orange span{ background: transparent url('./images/re_view_button/oval-orange-right.gif') no-repeat top right;}
|
|
655
|
+
a.re-form-button-red span{ background: transparent url('./images/re_view_button/oval-red-right.gif') no-repeat top right;}
|
|
656
|
+
|
|
657
|
+
a.re-button-add{
|
|
658
|
+
background: transparent url('./images/re_view_button/list-add.png') no-repeat top left;
|
|
659
|
+
/* border: 1px solid #fff;*/
|
|
660
|
+
width: 16px;
|
|
661
|
+
height: 16px;
|
|
662
|
+
float: left;
|
|
663
|
+
padding: 0;
|
|
664
|
+
margin:0px 7px 0 0;
|
|
665
|
+
font-size: 0px;
|
|
666
|
+
color: #fff;
|
|
667
|
+
}
|
|
668
|
+
a.re-button-add:hover { background-color: #696969; }
|
|
669
|
+
|
|
670
|
+
a.re-button-remove{
|
|
671
|
+
background: transparent url('./images/re_view_button/list-remove.png') no-repeat top left;
|
|
672
|
+
/* border: 1px solid #fff;*/
|
|
673
|
+
width: 16px;
|
|
674
|
+
height: 16px;
|
|
675
|
+
float: left;
|
|
676
|
+
padding: 0;
|
|
677
|
+
margin:0px 2px 0 0;
|
|
678
|
+
font-size: 0px;
|
|
679
|
+
color: #fff;
|
|
680
|
+
}
|
|
681
|
+
a.re-button-remove:hover { background-color: #696969; }
|
|
682
|
+
|
|
683
|
+
a.re-button-select{
|
|
684
|
+
background: transparent url('./images/re_view_button/list-select.png') no-repeat top left;
|
|
685
|
+
/* border: 1px solid #fff;*/
|
|
686
|
+
width: 16px;
|
|
687
|
+
height: 16px;
|
|
688
|
+
float: left;
|
|
689
|
+
padding: 0;
|
|
690
|
+
margin:0px 7px 0 0;
|
|
691
|
+
font-size: 0px;
|
|
692
|
+
color: #fff;
|
|
693
|
+
}
|
|
694
|
+
a.re-button-select:hover { background-color: #696969; }
|
|
695
|
+
|
|
696
|
+
a.re-button-checked{
|
|
697
|
+
background: transparent url('./images/re_view_button/checked-on.gif') no-repeat top left;
|
|
698
|
+
/* border: 1px solid #fff;*/
|
|
699
|
+
width: 16px;
|
|
700
|
+
height: 16px;
|
|
701
|
+
float: left;
|
|
702
|
+
padding: 0;
|
|
703
|
+
margin: 0px 4px 0 0;
|
|
704
|
+
font-size: 0px;
|
|
705
|
+
color: #fff;
|
|
706
|
+
}
|
|
707
|
+
a.re-button-checked:hover { background-color: #696969; }
|
|
708
|
+
|
|
709
|
+
a.re-button-unchecked{
|
|
710
|
+
background: transparent url('./images/re_view_button/checked-off.gif') no-repeat top left;
|
|
711
|
+
/* border: 1px solid #fff;*/
|
|
712
|
+
width: 16px;
|
|
713
|
+
height: 16px;
|
|
714
|
+
float: left;
|
|
715
|
+
padding: 0;
|
|
716
|
+
margin: 0px 4px 0 0;
|
|
717
|
+
font-size: 0px;
|
|
718
|
+
color: #fff;
|
|
719
|
+
}
|
|
720
|
+
a.re-button-unchecked:hover { background-color: #696969; }
|
|
721
|
+
|
|
722
|
+
a.re-add-link {
|
|
723
|
+
display: block;
|
|
724
|
+
background: url(./images/re_view_button/icon-add.png) left 2px no-repeat;
|
|
725
|
+
text-decoration: none;
|
|
726
|
+
font-weight: normal;
|
|
727
|
+
padding: 0 0 2px 24px;
|
|
728
|
+
margin: 0;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
a.re-remove-link {
|
|
732
|
+
display: block;
|
|
733
|
+
background: url(./images/re_view_button/icon-delete.png) top left no-repeat;
|
|
734
|
+
text-decoration: none;
|
|
735
|
+
font-weight: normal;
|
|
736
|
+
padding: 2px 0 2px 24px;
|
|
737
|
+
margin: 0;
|
|
738
|
+
}
|
data/init.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "rules_view"
|