mitamirri 0.13.8 → 2.0.8
Sign up to get free protection for your applications and to get access to all the features.
- data/Capfile +4 -0
- data/Gemfile +29 -0
- data/README.rdoc +6 -55
- data/Rakefile +34 -21
- data/VERSION +1 -1
- data/app/controllers/admin/tracking/reports_controller.rb +78 -0
- data/app/controllers/admin/tracking/trackable_sessions_controller.rb +7 -0
- data/app/controllers/application_controller.rb +1 -8
- data/app/controllers/trackable_actions_controller.rb +0 -2
- data/app/helpers/application_helper.rb +21 -0
- data/app/helpers/layout_helper.rb +18 -0
- data/app/models/content_report.rb +35 -0
- data/app/models/content_stat.rb +4 -0
- data/app/models/destination.rb +4 -0
- data/app/models/intersite_traffic_report.rb +47 -0
- data/app/models/keyword_stat.rb +4 -0
- data/app/models/lead.rb +3 -0
- data/app/models/lead_stat.rb +5 -0
- data/app/models/leads_report.rb +32 -0
- data/app/models/location_stat.rb +37 -0
- data/app/models/referrer_stat.rb +4 -0
- data/app/models/report.rb +83 -0
- data/app/models/stat_base.rb +11 -0
- data/app/models/trackable_action.rb +114 -91
- data/app/models/trackable_base.rb +12 -0
- data/app/models/trackable_location.rb +7 -13
- data/app/models/trackable_session.rb +255 -171
- data/app/models/trackable_stat.rb +45 -27
- data/app/models/traffic_explorer_report.rb +92 -0
- data/app/models/traffic_summary_report.rb +142 -0
- data/app/models/user_agent_stat.rb +4 -0
- data/app/models/visit.rb +6 -0
- data/app/models/visit_stat.rb +5 -0
- data/app/models/visitor.rb +4 -0
- data/app/models/visitor_profile_report.rb +23 -0
- data/app/views/admin/tracking/reports/_content.html.erb +28 -0
- data/app/views/admin/tracking/reports/_conversion_rate.html.erb +30 -0
- data/app/views/admin/tracking/reports/_criteria.html.erb +33 -0
- data/app/views/admin/tracking/reports/_entrance_pages.html.erb +29 -0
- data/app/views/admin/tracking/reports/_exit_pages.html.erb +28 -0
- data/app/views/admin/tracking/reports/_explorer_criteria.html.erb +22 -0
- data/app/views/admin/tracking/reports/_explorer_summary.html.erb +22 -0
- data/app/views/admin/tracking/reports/_intersite_destinations.html.erb +28 -0
- data/app/views/admin/tracking/reports/_intersite_referrals.html.erb +30 -0
- data/app/views/admin/tracking/reports/_leads.html.erb +30 -0
- data/app/views/admin/tracking/reports/_locations.html.erb +47 -0
- data/app/views/admin/tracking/reports/_recent_visits.html.erb +33 -0
- data/app/views/admin/tracking/reports/_referring_keywords.html.erb +28 -0
- data/app/views/admin/tracking/reports/_referring_sites.html.erb +28 -0
- data/app/views/admin/tracking/reports/_traffic_summary.html.erb +26 -0
- data/app/views/admin/tracking/reports/_user_agents.html.erb +28 -0
- data/app/views/{trackable_sessions/_visits_graph.html.erb → admin/tracking/reports/_visits_by_kind.html.erb} +3 -3
- data/app/views/admin/tracking/reports/content.html.erb +12 -0
- data/app/views/admin/tracking/reports/explorer.html.erb +13 -0
- data/app/views/admin/tracking/reports/index.html.erb +16 -0
- data/app/views/admin/tracking/reports/intersite.html.erb +11 -0
- data/app/views/admin/tracking/reports/leads.html.erb +11 -0
- data/app/views/admin/tracking/reports/summary.html.erb +16 -0
- data/app/views/admin/tracking/reports/visitor_profile.html.erb +11 -0
- data/app/views/{trackable_sessions → admin/tracking/trackable_sessions}/show.html.erb +5 -4
- data/app/views/layouts/application.html.erb +51 -18
- data/config.ru +4 -0
- data/config/application.rb +13 -0
- data/config/boot.rb +13 -110
- data/config/cucumber.yml +10 -0
- data/config/deploy.rb +40 -0
- data/config/environment.rb +4 -23
- data/config/environments/development.rb +24 -13
- data/config/environments/production.rb +41 -20
- data/config/environments/test.rb +28 -24
- data/config/initializers/formats.rb +19 -0
- data/config/initializers/metric_fu.rb +9 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +3 -10
- data/config/locales/en.yml +1 -1
- data/config/mongoid.yml +19 -0
- data/config/routes.rb +16 -10
- data/features/access_reports.feature +26 -0
- data/features/step_definitions/reports_steps.rb +9 -0
- data/features/step_definitions/web_steps.rb +219 -0
- data/features/support/env.rb +32 -0
- data/features/support/hooks.rb +1 -0
- data/features/support/paths.rb +33 -0
- data/features/traffic_summary_report.feature +43 -0
- data/init.rb +0 -7
- data/lib/mitamirri.rb +9 -12
- data/lib/mitamirri/engine.rb +7 -0
- data/lib/mitamirri/helper.rb +13 -29
- data/lib/mitamirri/railtie.rb +10 -0
- data/lib/tasks/cucumber.rake +60 -0
- data/lib/tasks/rcov.rake +44 -0
- data/mitamirri.gemspec +228 -100
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/{config/database.yml → public/favicon.ico} +0 -0
- data/public/images/icons/add.png +0 -0
- data/public/images/icons/collapsed.gif +0 -0
- data/public/images/icons/delete.png +0 -0
- data/public/images/icons/drag.png +0 -0
- data/public/images/icons/edit.png +0 -0
- data/public/images/icons/expanded.gif +0 -0
- data/public/images/icons/help_icon.png +0 -0
- data/public/images/icons/link_icon.png +0 -0
- data/public/images/icons/move.png +0 -0
- data/public/images/icons/move_white.png +0 -0
- data/public/images/icons/note.png +0 -0
- data/public/images/icons/note_white.png +0 -0
- data/public/images/icons/notification_icon_sprite.png +0 -0
- data/public/images/icons/spinner.gif +0 -0
- data/public/images/icons/view.png +0 -0
- data/public/images/icons/warning.png +0 -0
- data/public/images/icons/warning_2.png +0 -0
- data/public/images/icons/warning_box.png +0 -0
- data/public/images/icons/warning_icon.png +0 -0
- data/public/images/icons/warning_white.png +0 -0
- data/public/images/layout/arrow_asc.png +0 -0
- data/public/images/layout/arrow_desc.png +0 -0
- data/public/images/layout/back.png +0 -0
- data/public/images/layout/black_bar.png +0 -0
- data/public/images/layout/branding.png +0 -0
- data/public/images/layout/breadcrumb_bg.png +0 -0
- data/public/images/layout/button_bg.png +0 -0
- data/public/images/layout/content_left_bg.png +0 -0
- data/public/images/layout/content_right_bg.png +0 -0
- data/public/images/layout/footer_bg.png +0 -0
- data/public/images/layout/h1_bg.png +0 -0
- data/public/images/layout/h2_bg.png +0 -0
- data/public/images/layout/h2_bg_for_table.png +0 -0
- data/public/images/layout/header_bg_grey.png +0 -0
- data/public/images/layout/header_bg_purple.png +0 -0
- data/public/images/layout/legend_bg.png +0 -0
- data/public/images/layout/menu_box_bg.png +0 -0
- data/public/images/layout/shadow_border.png +0 -0
- data/public/images/layout/shadow_border_2.png +0 -0
- data/public/images/layout/shadow_border_3.png +0 -0
- data/public/images/layout/shadow_border_4.png +0 -0
- data/public/images/layout/tab.png +0 -0
- data/public/images/layout/tab_active.png +0 -0
- data/public/images/layout/table_header.png +0 -0
- data/public/images/layout/text_field_bg.jpg +0 -0
- data/public/images/layout/text_field_error_bg.png +0 -0
- data/public/images/layout/th_bg.png +0 -0
- data/public/images/layout/th_bg_selected.png +0 -0
- data/public/images/menu_icons/content_report.png +0 -0
- data/public/images/menu_icons/content_report_on.png +0 -0
- data/public/images/menu_icons/funnel.png +0 -0
- data/public/images/menu_icons/funnel_on.png +0 -0
- data/public/images/menu_icons/intersite_traffic.png +0 -0
- data/public/images/menu_icons/intersite_traffic_on.png +0 -0
- data/public/images/menu_icons/leads.png +0 -0
- data/public/images/menu_icons/leads_on.png +0 -0
- data/public/images/menu_icons/traffic_explorer.png +0 -0
- data/public/images/menu_icons/traffic_explorer_on.png +0 -0
- data/public/images/menu_icons/traffic_summary.png +0 -0
- data/public/images/menu_icons/traffic_summary_on.png +0 -0
- data/public/images/menu_icons/visitor_profile.png +0 -0
- data/public/images/menu_icons/visitor_profile_on.png +0 -0
- data/public/index.html +8 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +965 -0
- data/public/javascripts/dragdrop.js +974 -0
- data/public/javascripts/effects.js +1123 -0
- data/public/javascripts/prototype.js +6001 -0
- data/public/javascripts/rails.js +175 -0
- data/public/robots.txt +5 -0
- data/public/stylesheets/.gitkeep +0 -0
- data/public/stylesheets/application.css +876 -0
- data/public/stylesheets/core.css +1146 -0
- data/public/stylesheets/core_ie.css +52 -0
- data/public/stylesheets/csshover3.htc +14 -0
- data/public/stylesheets/mitamirri.css +37 -724
- data/public/stylesheets/mitamirri_print.css +3 -0
- data/script/cucumber +10 -0
- data/script/rails +6 -0
- data/spec/blueprints.rb +13 -0
- data/spec/helpers/application_helper_spec.rb +23 -35
- data/spec/{lib → models}/content_report_spec.rb +12 -8
- data/spec/{lib → models}/intersite_traffic_report_spec.rb +6 -9
- data/spec/{lib → models}/leads_report_spec.rb +11 -12
- data/spec/models/location_stat_spec.rb +18 -0
- data/spec/models/trackable_action_spec.rb +46 -14
- data/spec/models/trackable_base_spec.rb +27 -0
- data/spec/models/trackable_session_spec.rb +181 -57
- data/spec/{lib/session_report_spec.rb → models/traffic_explorer_report_spec.rb} +8 -25
- data/spec/spec_helper.rb +8 -28
- data/{lib/mitamirri/tasks.rb → tasks/mitamirri.rake} +6 -7
- data/vendor/plugins/.gitkeep +0 -0
- metadata +316 -77
- data/.gitignore +0 -26
- data/app/controllers/trackable_sessions_controller.rb +0 -100
- data/app/views/trackable_sessions/_keywords_graph.html.erb +0 -24
- data/app/views/trackable_sessions/_print_buttons.html.erb +0 -3
- data/app/views/trackable_sessions/_sessions.html.erb +0 -26
- data/app/views/trackable_sessions/_top_referrers.html.erb +0 -24
- data/app/views/trackable_sessions/_traffic_summary_all.html.erb +0 -64
- data/app/views/trackable_sessions/_traffic_summary_by_kind.html.erb +0 -48
- data/app/views/trackable_sessions/content.html.erb +0 -119
- data/app/views/trackable_sessions/explorer.html.erb +0 -67
- data/app/views/trackable_sessions/export.xls.erb +0 -5
- data/app/views/trackable_sessions/index.html.erb +0 -47
- data/app/views/trackable_sessions/intersite.html.erb +0 -97
- data/app/views/trackable_sessions/leads.html.erb +0 -98
- data/app/views/trackable_sessions/visitor_profile.html.erb +0 -114
- data/config/initializers/backtrace_silencers.rb +0 -7
- data/config/initializers/database.rb +0 -1
- data/config/initializers/inflections.rb +0 -10
- data/config/initializers/mime_types.rb +0 -5
- data/config/initializers/new_rails_defaults.rb +0 -21
- data/db/development.sqlite3 +0 -0
- data/db/migrate/20100810173533_create_trackable_sessions.rb +0 -23
- data/db/migrate/20100810173605_create_trackable_actions.rb +0 -20
- data/db/test.sqlite3 +0 -1
- data/lib/mitamirri/content_report.rb +0 -75
- data/lib/mitamirri/intersite_traffic_report.rb +0 -122
- data/lib/mitamirri/leads_report.rb +0 -90
- data/lib/mitamirri/session_report.rb +0 -219
- data/lib/mitamirri/stat_report.rb +0 -216
- data/lib/mitamirri/visitor_profile_report.rb +0 -127
- data/script/about +0 -4
- data/script/console +0 -3
- data/script/dbconsole +0 -3
- data/script/destroy +0 -3
- data/script/generate +0 -3
- data/script/performance/benchmarker +0 -3
- data/script/performance/profiler +0 -3
- data/script/plugin +0 -3
- data/script/runner +0 -3
- data/script/server +0 -3
- data/spec/controllers/trackable_actions_controller_spec.rb +0 -5
- data/spec/controllers/trackable_sessions_controller_spec.rb +0 -5
- data/spec/custom_matchers.rb +0 -23
- data/spec/lib/stat_report_spec.rb +0 -106
- data/spec/rcov.opts +0 -4
- data/spec/schema.rb +0 -34
- data/spec/spec.opts +0 -4
@@ -0,0 +1,52 @@
|
|
1
|
+
/* @group General IE Workarounds */
|
2
|
+
|
3
|
+
fieldset.form_container {
|
4
|
+
clear: both;
|
5
|
+
width: 96%;
|
6
|
+
z-index: 0;
|
7
|
+
}
|
8
|
+
|
9
|
+
legend {
|
10
|
+
display: none;
|
11
|
+
}
|
12
|
+
|
13
|
+
.faux_legend {
|
14
|
+
border: 1px solid #999999;
|
15
|
+
padding: .5em;
|
16
|
+
background-color: #79984c;
|
17
|
+
color: #ffffff;
|
18
|
+
margin-top: -2.5em;
|
19
|
+
margin-left: -1.4em;
|
20
|
+
width: 26.5em;
|
21
|
+
font-weight: bold;
|
22
|
+
font-size: .8em;
|
23
|
+
text-transform: uppercase;
|
24
|
+
padding-left: 1em;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* @end */
|
28
|
+
|
29
|
+
/* @group IE6 Workarounds */
|
30
|
+
|
31
|
+
/* Add support for hover, for nav menu */
|
32
|
+
*html body {
|
33
|
+
behavior:url("/stylesheets/csshover3.htc");
|
34
|
+
}
|
35
|
+
|
36
|
+
* html fieldset.form_container {
|
37
|
+
width: 92%;
|
38
|
+
margin-top: 20px !important;
|
39
|
+
z-index: 0;
|
40
|
+
}
|
41
|
+
|
42
|
+
* html p {
|
43
|
+
margin-bottom: 1.5em;
|
44
|
+
}
|
45
|
+
|
46
|
+
* html .faux_legend {
|
47
|
+
margin-top: -12px;
|
48
|
+
}
|
49
|
+
|
50
|
+
|
51
|
+
/* @end */
|
52
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<public:attach event="ondocumentready" onevent="CSSHover()" />
|
2
|
+
<script>
|
3
|
+
/**
|
4
|
+
* Whatever:hover - V3.00.081222
|
5
|
+
* --------------------------------------------------------
|
6
|
+
* Author - Peter Nederlof, http://www.xs4all.nl/~peterned
|
7
|
+
* License - http://creativecommons.org/licenses/LGPL/2.1
|
8
|
+
* Packed - http://dean.edwards.name/packer
|
9
|
+
*
|
10
|
+
* howto: body { behavior:url("csshover3.htc"); }
|
11
|
+
*/
|
12
|
+
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('r.R=(8(){4 f=/(^|\\s)((([^a]([^ ]+)?)|(a([^#.][^ ]+)+)):(C|D|E))/i,S=/(.*?)\\:(C|D|E)/i,T=/[^:]+:([a-z-]+).*/i,U=/(\\.([a-V-W-]+):[a-z]+)|(:[a-z]+)/1c,X=/\\.([a-V-W-]*Y(C|D|E))/i,Z=/1d (5|6|7)/i,10=/1e/i;4 g=\'1f-\';4 h={p:[],t:{},11:8(){n(!Z.F(1g.1h)&&!10.F(r.12.1i))u;4 a=r.12.1j,l=a.v;w(4 i=0;i<l;i++){3.G(a[i])}},G:8(a){n(a.H){I{4 b=a.H,l=b.v;w(4 i=0;i<l;i++){3.G(a.H[i])}}J(13){}}I{4 c=a.1k,l=c.v;w(4 j=0;j<l;j++){3.14(c[j],a)}}J(13){}},14:8(a,b){4 c=a.1l;n(f.F(c)){4 d=a.K.1m,L=S.15(c)[1],M=c.N(T,\'Y$1\'),O=c.N(U,\'.$2\'+M),o=X.15(O)[1];4 e=L+o;n(!3.t[e]){b.16(L,g+o+\':1n(R(3, "\'+M+\'", "\'+o+\'"))\');3.t[e]=17}b.16(O,d)}},18:8(a,b,c){4 d=g+c;n(a.K[d]){a.K[d]=q}n(!a.x)a.x=[];n(!a.x[c]){a.x[c]=17;4 e=19 P(a,b,c);3.p.1o(e)}u b},y:8(){I{4 l=3.p.v;w(4 i=0;i<l;i++){3.p[i].y()}3.p=[];3.t={}}J(e){}}};r.Q(\'1p\',8(){h.y()});4 k={1q:{9:\'1r\',m:\'1s\'},1t:{9:\'1u\',m:\'1v\'},1a:{9:\'1a\',m:\'1w\'}};8 P(a,b,c){3.A=a;3.B=b;4 d=19 1x(\'(^|\\\\s)\'+c+\'(\\\\s|$)\',\'g\');3.9=8(){a.o+=\' \'+c};3.m=8(){a.o=a.o.N(d,\' \')};a.Q(k[b].9,3.9);a.Q(k[b].m,3.m)}P.1y={y:8(){3.A.1b(k[3.B].9,3.9);3.A.1b(k[3.B].m,3.m);3.9=q;3.m=q;3.A=q;3.B=q}};u 8(a,b,c){n(a){u h.18(a,b,c)}1z{h.11()}}})();',62,98,'|||this|var||||function|activator|||||||||||||deactivator|if|className|elements|null|window||callbacks|return|length|for|csshover|unload||node|type|hover|active|focus|test|parseStylesheet|imports|try|catch|style|affected|pseudo|replace|newSelect|CSSHoverElement|attachEvent|CSSHover|REG_AFFECTED|REG_PSEUDO|REG_SELECT|z0|9_|REG_CLASS|on|REG_MSIE|REG_COMPAT|init|document|securityException|parseCSSRule|exec|addRule|true|patch|new|onfocus|detachEvent|gi|msie|backcompat|csh|navigator|userAgent|compatMode|styleSheets|rules|selectorText|cssText|expression|push|onbeforeunload|onhover|onmouseenter|onmouseleave|onactive|onmousedown|onmouseup|onblur|RegExp|prototype|else'.split('|'),0,{}));
|
13
|
+
|
14
|
+
</script>
|
@@ -1,736 +1,49 @@
|
|
1
|
-
|
1
|
+
div.menu_icon#traffic_summary {
|
2
|
+
background: url(/images/menu_icons/traffic_summary.png) no-repeat center top;
|
3
|
+
}
|
2
4
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
}
|
7
|
-
|
8
|
-
h1, h2, h3, h4, h5, h6 {
|
9
|
-
font-size: 100%;
|
10
|
-
margin: .67em 0;
|
11
|
-
}
|
12
|
-
|
13
|
-
ol, ul {
|
14
|
-
list-style: none;
|
15
|
-
margin-top: 1em;
|
16
|
-
}
|
17
|
-
|
18
|
-
ol li, ul li {
|
19
|
-
font-size: .9em;
|
20
|
-
margin-bottom: 1em;
|
21
|
-
}
|
22
|
-
|
23
|
-
ol.numbered {
|
24
|
-
list-style-type: decimal;
|
25
|
-
margin-left: 1.5em;
|
26
|
-
}
|
27
|
-
|
28
|
-
address, caption, cite, code, dfn, em, strong, th, var {
|
29
|
-
font-style: normal;
|
30
|
-
font-weight: normal;
|
31
|
-
}
|
32
|
-
|
33
|
-
table {
|
34
|
-
border-collapse: collapse;
|
35
|
-
border-spacing: 0;
|
36
|
-
}
|
37
|
-
|
38
|
-
table td {
|
39
|
-
vertical-align: top;
|
40
|
-
padding: .5em;
|
41
|
-
}
|
42
|
-
|
43
|
-
fieldset, img {
|
44
|
-
border: 0;
|
45
|
-
}
|
46
|
-
|
47
|
-
caption, th {
|
48
|
-
text-align: left;
|
49
|
-
}
|
50
|
-
|
51
|
-
q:before, q:after {
|
52
|
-
content: '';
|
53
|
-
}
|
5
|
+
div.menu_icon#traffic_summary:hover {
|
6
|
+
background: url(/images/menu_icons/traffic_summary_on.png) no-repeat center top;
|
7
|
+
}
|
54
8
|
|
9
|
+
div.menu_icon#traffic_explorer {
|
10
|
+
background: url(/images/menu_icons/traffic_explorer.png) no-repeat center top;
|
11
|
+
}
|
55
12
|
|
56
|
-
|
13
|
+
div.menu_icon#traffic_explorer:hover {
|
14
|
+
background: url(/images/menu_icons/traffic_explorer_on.png) no-repeat center top;
|
15
|
+
}
|
57
16
|
|
58
|
-
|
17
|
+
div.menu_icon#top_content {
|
18
|
+
background: url(/images/menu_icons/content_report.png) no-repeat center top;
|
19
|
+
}
|
59
20
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
body {
|
64
|
-
position: relative;
|
65
|
-
width: auto;
|
66
|
-
margin: 0em 1em 1em 1em;
|
67
|
-
background-color: #ffffff;
|
68
|
-
}
|
69
|
-
|
70
|
-
/* @end */
|
21
|
+
div.menu_icon#top_content:hover {
|
22
|
+
background: url(/images/menu_icons/content_report_on.png) no-repeat center top;
|
23
|
+
}
|
71
24
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
color: #ffffff !important;
|
76
|
-
text-decoration: none;
|
77
|
-
background-color: #6f637b;
|
78
|
-
font-size: .8em;
|
79
|
-
font-weight: normal !important;
|
80
|
-
margin: 2em 1.5em 1.5em 0em;
|
81
|
-
border: 1px solid #666666;
|
82
|
-
padding: .5em;
|
83
|
-
}
|
84
|
-
|
85
|
-
a:link {
|
86
|
-
color: #6f637b;
|
87
|
-
}
|
88
|
-
|
89
|
-
a:hover {
|
90
|
-
color: #6f637b;
|
91
|
-
}
|
92
|
-
|
93
|
-
a:active {
|
94
|
-
color: #6f637b;
|
95
|
-
}
|
96
|
-
|
97
|
-
a:visited {
|
98
|
-
color: #6f637b;
|
99
|
-
}
|
100
|
-
|
101
|
-
.align_left {
|
102
|
-
text-align: left !important;
|
103
|
-
}
|
104
|
-
|
105
|
-
.align_right {
|
106
|
-
text-align: right !important;
|
107
|
-
}
|
108
|
-
|
109
|
-
body {
|
110
|
-
font-family: Verdana, Arial, Sans-Serif;
|
111
|
-
font-size: .8em;
|
112
|
-
text-align: left;
|
113
|
-
}
|
114
|
-
|
115
|
-
h1 {
|
116
|
-
font-size: 1.5em;
|
117
|
-
font-weight: bold;
|
118
|
-
padding: 0em;
|
119
|
-
color: #ffffff;
|
120
|
-
margin: 0em 0em 1em 0em;
|
121
|
-
padding: .5em;
|
122
|
-
border: 1px solid #000000;
|
123
|
-
background-color: #222222;
|
124
|
-
}
|
125
|
-
|
126
|
-
h2 {
|
127
|
-
color: #ffffff;
|
128
|
-
font-weight: bold;
|
129
|
-
font-size: 1.1em;
|
130
|
-
margin: 1em 0em 1em 0em;
|
131
|
-
padding: .25em .5em;
|
132
|
-
border: 1px solid #444444;
|
133
|
-
background-color: #444444;
|
134
|
-
}
|
135
|
-
|
136
|
-
h2 a:link {
|
137
|
-
color: #333333;
|
138
|
-
}
|
139
|
-
|
140
|
-
h2 a:hover {
|
141
|
-
color: #333333;
|
142
|
-
}
|
143
|
-
|
144
|
-
h2 a:active {
|
145
|
-
color: #333333;
|
146
|
-
}
|
147
|
-
|
148
|
-
h2 a:visited {
|
149
|
-
color: #333333;
|
150
|
-
}
|
151
|
-
|
152
|
-
h3 {
|
153
|
-
color: #333333;
|
154
|
-
font-weight: bold;
|
155
|
-
font-size: 1em;
|
156
|
-
margin: 1.5em 0em .5em 0em;
|
157
|
-
}
|
158
|
-
|
159
|
-
p {
|
160
|
-
margin-bottom: 1.5em;
|
161
|
-
}
|
25
|
+
div.menu_icon#leads {
|
26
|
+
background: url(/images/menu_icons/leads.png) no-repeat center top;
|
27
|
+
}
|
162
28
|
|
29
|
+
div.menu_icon#leads:hover {
|
30
|
+
background: url(/images/menu_icons/leads_on.png) no-repeat center top;
|
31
|
+
}
|
163
32
|
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
}
|
168
|
-
|
169
|
-
dd {
|
170
|
-
display: block;
|
171
|
-
margin: .5em 0em .5em 1em;
|
172
|
-
}
|
33
|
+
div.menu_icon#visitor_profile {
|
34
|
+
background: url(/images/menu_icons/visitor_profile.png) no-repeat center top;
|
35
|
+
}
|
173
36
|
|
174
|
-
|
175
|
-
|
176
|
-
|
37
|
+
div.menu_icon#visitor_profile:hover {
|
38
|
+
background: url(/images/menu_icons/visitor_profile_on.png) no-repeat center top;
|
39
|
+
}
|
177
40
|
|
178
|
-
|
179
|
-
|
180
|
-
|
41
|
+
div.menu_icon#intersite_traffic {
|
42
|
+
background: url(/images/menu_icons/intersite_traffic.png) no-repeat center top;
|
43
|
+
}
|
181
44
|
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
ul.indented li {
|
187
|
-
margin-left: 1em;
|
188
|
-
}
|
189
|
-
|
190
|
-
ul.bulleted {
|
191
|
-
list-style-type: bullet;
|
192
|
-
}
|
193
|
-
|
194
|
-
.inactive {
|
195
|
-
color: #aaaaaa;
|
196
|
-
font-style: italic;
|
197
|
-
}
|
198
|
-
|
199
|
-
.inactive a:link, .inactive a:hover, .inactive a:visited {
|
200
|
-
color: #aaaaaa !important;
|
201
|
-
font-style: italic;
|
202
|
-
text-decoration: none;
|
203
|
-
}
|
204
|
-
|
205
|
-
pre {
|
206
|
-
font-family: Verdana, Arial, Sans-Serif;
|
207
|
-
font-size: .9em;
|
208
|
-
text-align: left;
|
209
|
-
}
|
210
|
-
|
211
|
-
.two_column{
|
212
|
-
float: left;
|
213
|
-
width: 40%;
|
214
|
-
margin-right: 1em;
|
215
|
-
}
|
216
|
-
|
217
|
-
.three_column{
|
218
|
-
float: left;
|
219
|
-
width: 30%;
|
220
|
-
margin-right: 1em;
|
221
|
-
}
|
222
|
-
|
223
|
-
.four_column{
|
224
|
-
float: left;
|
225
|
-
width: 20%;
|
226
|
-
margin-right: 1em;
|
227
|
-
}
|
228
|
-
|
229
|
-
div.column_left {
|
230
|
-
float: left;
|
231
|
-
width: 350px;
|
232
|
-
margin-right: 5%;
|
233
|
-
}
|
234
|
-
|
235
|
-
div.column_right {
|
236
|
-
float: left;
|
237
|
-
width: 400px;
|
238
|
-
}
|
239
|
-
|
240
|
-
/* @end */
|
241
|
-
|
242
|
-
/* @group Component Typography */
|
243
|
-
|
244
|
-
.graph {
|
245
|
-
border: 1px solid #999999;
|
246
|
-
}
|
247
|
-
|
248
|
-
p.footer {
|
249
|
-
border-top: 1px solid #999999;
|
250
|
-
font-size: .8em;
|
251
|
-
line-height: 150%;
|
252
|
-
padding: 1em 0em 1em 0em;
|
253
|
-
margin-top: 3em;
|
254
|
-
margin-bottom: 3em;
|
255
|
-
}
|
256
|
-
|
257
|
-
p.footer a:link {
|
258
|
-
color: #444444;
|
259
|
-
background: none;
|
260
|
-
border: none;
|
261
|
-
padding: 0em;
|
262
|
-
text-transform: none;
|
263
|
-
text-decoration: underline;
|
264
|
-
}
|
265
|
-
|
266
|
-
p.footer a:visited {
|
267
|
-
color: #444444;
|
268
|
-
}
|
269
|
-
|
270
|
-
table.results {
|
271
|
-
width: 100%;
|
272
|
-
margin-top: 0px;
|
273
|
-
margin-bottom: .5em;
|
274
|
-
padding: 0px;
|
275
|
-
border-collapse: collapse;
|
276
|
-
border: 1px solid #888888;
|
277
|
-
}
|
278
|
-
|
279
|
-
table.results thead tr {
|
280
|
-
border: 1px solid #888888;
|
281
|
-
}
|
282
|
-
|
283
|
-
table.results tr.odd {
|
284
|
-
background-color: #eeeeee;
|
285
|
-
}
|
286
|
-
|
287
|
-
table.results tr.even {
|
288
|
-
background-color: #ffffff;
|
289
|
-
}
|
290
|
-
|
291
|
-
table.results tfoot tr {
|
292
|
-
border: 1px solid #888888;
|
293
|
-
}
|
294
|
-
|
295
|
-
table.results th {
|
296
|
-
vertical-align: middle;
|
297
|
-
text-align: left;
|
298
|
-
font-size: .7em;
|
299
|
-
background-color: #888888;
|
300
|
-
color: #ffffff;
|
301
|
-
padding: 3px;
|
302
|
-
margin: 0px;
|
303
|
-
text-transform: uppercase;
|
304
|
-
}
|
305
|
-
|
306
|
-
table.results th a:link, table.results th a:visited {
|
307
|
-
text-decoration: none !important;
|
308
|
-
color: #ffffff;
|
309
|
-
}
|
310
|
-
|
311
|
-
table.results th a:hover {
|
312
|
-
text-decoration: underline !important;
|
313
|
-
color: #ffffff;
|
314
|
-
}
|
315
|
-
|
316
|
-
table th div.sort_link {
|
317
|
-
padding-bottom: 1em;
|
318
|
-
}
|
319
|
-
|
320
|
-
table tr th div.sort_link.sort_desc {
|
321
|
-
background: url(../images/layout/arrow_desc.png) no-repeat right bottom;
|
322
|
-
}
|
323
|
-
|
324
|
-
table tr th div.sort_link.sort_asc {
|
325
|
-
background: url(../images/layout/arrow_asc.png) no-repeat right bottom;
|
326
|
-
}
|
327
|
-
|
328
|
-
table.results tfoot td {
|
329
|
-
text-align: left;
|
330
|
-
font-size: .7em;
|
331
|
-
background-color: #888888;
|
332
|
-
color: #ffffff;
|
333
|
-
padding: 3px;
|
334
|
-
margin: 0px;
|
335
|
-
text-transform: uppercase;
|
336
|
-
}
|
337
|
-
|
338
|
-
table.results tfoot td a {
|
339
|
-
color: #ffffff !important;
|
340
|
-
}
|
341
|
-
|
342
|
-
table.results td {
|
343
|
-
text-align: left;
|
344
|
-
font-size: .75em;
|
345
|
-
padding: 6px 6px 6px 6px;
|
346
|
-
margin: 0px;
|
347
|
-
vertical-align: top;
|
348
|
-
}
|
349
|
-
|
350
|
-
/* @end */
|
351
|
-
|
352
|
-
|
353
|
-
/* @group Forms */
|
354
|
-
|
355
|
-
.button {
|
356
|
-
display: block;
|
357
|
-
float: left;
|
358
|
-
color: #ffffff;
|
359
|
-
text-transform: uppercase;
|
360
|
-
font-size: .8em;
|
361
|
-
font-weight: normal !important;
|
362
|
-
margin: 2em 1.5em 1.5em 0em;
|
363
|
-
border: 1px solid #666666;
|
364
|
-
padding: .5em;
|
365
|
-
cursor: pointer;
|
366
|
-
background-color: #6f637b;
|
367
|
-
text-decoration: none !important;
|
368
|
-
min-width: 5em;
|
369
|
-
text-align: center;
|
370
|
-
}
|
371
|
-
|
372
|
-
.faux_field {
|
373
|
-
display: block;
|
374
|
-
color: #666666;
|
375
|
-
width: 1em;
|
376
|
-
padding: .5em;
|
377
|
-
border: 1px solid #cccccc;
|
378
|
-
background-color: #ffffff;
|
379
|
-
width: 21.5em;
|
380
|
-
min-height: 1em;
|
381
|
-
margin: .25em 0em 1em 0em;
|
382
|
-
font-size: .8em;
|
383
|
-
text-align: left;
|
384
|
-
overflow: auto;
|
385
|
-
}
|
386
|
-
|
387
|
-
div.fieldWithErrors input {
|
388
|
-
background: #ffdddd !important;
|
389
|
-
color: #ff0000;
|
390
|
-
}
|
391
|
-
|
392
|
-
.form_container {
|
393
|
-
background-color: #eeeeee;
|
394
|
-
padding: 1em;
|
395
|
-
border: 1px solid #999999;
|
396
|
-
margin-top: 1.5em;
|
397
|
-
}
|
398
|
-
|
399
|
-
fieldset {
|
400
|
-
margin: .5em 0em .5em 0em;
|
401
|
-
}
|
402
|
-
|
403
|
-
fieldset.inline_label {
|
404
|
-
margin-bottom: 1.5em;
|
405
|
-
}
|
406
|
-
|
407
|
-
fieldset p {
|
408
|
-
color: #333333;
|
409
|
-
}
|
410
|
-
|
411
|
-
.form_column {
|
412
|
-
float: left;
|
413
|
-
width: 45%;
|
414
|
-
margin-right: 5%;
|
415
|
-
}
|
416
|
-
|
417
|
-
.inline_help p {
|
418
|
-
font-size: 9px;
|
419
|
-
color: #666666;
|
420
|
-
width: 275px;
|
421
|
-
}
|
422
|
-
|
423
|
-
input[type="text"] {
|
424
|
-
color: #666666;
|
425
|
-
margin: 0em 0em 1em 0em;
|
426
|
-
padding: 3px;
|
427
|
-
width: 23.75em;
|
428
|
-
background: #ffffff url(/images/layout/text_field_bg.jpg) repeat-x;
|
429
|
-
height: auto;
|
430
|
-
}
|
431
|
-
|
432
|
-
input[type="text"].short {
|
433
|
-
width: 3em;
|
434
|
-
}
|
435
|
-
|
436
|
-
input[type="password"] {
|
437
|
-
color: #666666;
|
438
|
-
margin: 0em 0em 1em 0em;
|
439
|
-
padding: 3px;
|
440
|
-
width: 23.75em;
|
441
|
-
background: #ffffff url(/images/layout/text_field_bg.jpg) repeat-x;
|
442
|
-
height: auto;
|
443
|
-
|
444
|
-
}
|
445
|
-
|
446
|
-
input[type="radio"] {
|
447
|
-
margin: .5em;
|
448
|
-
}
|
449
|
-
|
450
|
-
textarea {
|
451
|
-
background: #ffffff url(/images/layout/text_field_bg.jpg) repeat-x;
|
452
|
-
font-size: 1em;
|
453
|
-
}
|
454
|
-
|
455
|
-
legend {
|
456
|
-
padding: .5em;
|
457
|
-
background-color: #444444;
|
458
|
-
color: #ffffff;
|
459
|
-
margin-left: -.95em;
|
460
|
-
font-weight: bold;
|
461
|
-
font-size: 1.1em;
|
462
|
-
padding-left: 1em;
|
463
|
-
padding-right: 1.75em;
|
464
|
-
}
|
465
|
-
|
466
|
-
.faux_legend .show_link {
|
467
|
-
float: right;
|
468
|
-
margin-top: 0px;
|
469
|
-
margin-right: 25px;
|
470
|
-
}
|
471
|
-
|
472
|
-
.faux_legend .hide_link {
|
473
|
-
float: right;
|
474
|
-
margin-top: 0px;
|
475
|
-
margin-right: 25px;
|
476
|
-
}
|
477
|
-
|
478
|
-
label {
|
479
|
-
display: block;
|
480
|
-
font-weight: bold;
|
481
|
-
color: #333333;
|
482
|
-
margin: 0em 0em -1em 0em;
|
483
|
-
font-size: .8em;
|
484
|
-
}
|
485
|
-
|
486
|
-
label.inline {
|
487
|
-
display: inline;
|
488
|
-
margin-left: .5em;
|
489
|
-
font-size: .8em;
|
490
|
-
font-weight: normal;
|
491
|
-
}
|
492
|
-
|
493
|
-
label span.instructions {
|
494
|
-
font-weight: normal;
|
495
|
-
display: block;
|
496
|
-
}
|
497
|
-
|
498
|
-
select {
|
499
|
-
color: #666666;
|
500
|
-
margin: 0em 0em 1em 0em;
|
501
|
-
}
|
502
|
-
|
503
|
-
textarea {
|
504
|
-
color: #666666;
|
505
|
-
padding: .5em;
|
506
|
-
margin: 0em 0em 1em 0em;
|
507
|
-
height: 10em;
|
508
|
-
width: 23.75em;
|
509
|
-
font-family: Verdana, Arial, Sans-Serif;
|
510
|
-
color: #666666;
|
511
|
-
}
|
512
|
-
|
513
|
-
textarea.long {
|
514
|
-
height: 25em;
|
515
|
-
}
|
516
|
-
|
517
|
-
textarea.wide {
|
518
|
-
width: 70em;
|
519
|
-
}
|
520
|
-
|
521
|
-
/* @end */
|
522
|
-
|
523
|
-
/* @group Tables */
|
524
|
-
|
525
|
-
tr.odd {
|
526
|
-
background-color: #dddddd;
|
527
|
-
}
|
528
|
-
|
529
|
-
table.results {
|
530
|
-
width: 100%;
|
531
|
-
margin-top: 1em;
|
532
|
-
margin-bottom: 20px;
|
533
|
-
padding: 0px;
|
534
|
-
border-collapse: collapse;
|
535
|
-
border: 1px solid #888888;
|
536
|
-
}
|
537
|
-
|
538
|
-
table.results thead tr {
|
539
|
-
border: 1px solid #888888;
|
540
|
-
}
|
541
|
-
|
542
|
-
table.results tr.even {
|
543
|
-
background-color: #ffffff;
|
544
|
-
}
|
545
|
-
|
546
|
-
table.results tfoot tr {
|
547
|
-
border: 1px solid #888888;
|
548
|
-
}
|
549
|
-
|
550
|
-
table.results th {
|
551
|
-
vertical-align: middle;
|
552
|
-
text-align: left;
|
553
|
-
font-size: .75em;
|
554
|
-
background-color: #888888;
|
555
|
-
color: #ffffff;
|
556
|
-
padding: 1em .5em 1em .5em;
|
557
|
-
margin: 0px;
|
558
|
-
text-transform: uppercase;
|
559
|
-
}
|
560
|
-
|
561
|
-
table.results tfoot td {
|
562
|
-
text-align: left;
|
563
|
-
font-size: .7em;
|
564
|
-
background-color: #888888;
|
565
|
-
color: #ffffff;
|
566
|
-
padding: 3px;
|
567
|
-
margin: 0px;
|
568
|
-
text-transform: uppercase;
|
569
|
-
}
|
570
|
-
|
571
|
-
table.results tfoot td a {
|
572
|
-
color: #ffffff !important;
|
573
|
-
}
|
574
|
-
|
575
|
-
table.results td {
|
576
|
-
text-align: left;
|
577
|
-
font-size: .9em !important;
|
578
|
-
padding: 6px 6px 6px 6px;
|
579
|
-
height: auto !important;
|
580
|
-
margin: 0px;
|
581
|
-
vertical-align: top;
|
582
|
-
}
|
583
|
-
|
584
|
-
table.results td.crud_links {
|
585
|
-
text-align: right;
|
586
|
-
}
|
587
|
-
|
588
|
-
table.standard {
|
589
|
-
width: 100%;
|
590
|
-
text-align: left;
|
591
|
-
margin-top: 1em;
|
592
|
-
margin-bottom: 20px;
|
593
|
-
border: 1px solid #999999;
|
594
|
-
}
|
595
|
-
|
596
|
-
table.standard th {
|
597
|
-
text-align: left;
|
598
|
-
border: 1px solid #666666;
|
599
|
-
background-color: #666666;
|
600
|
-
color: #ffffff;
|
601
|
-
text-transform: uppercase;
|
602
|
-
font-size: .8em;
|
603
|
-
padding: 1em .5em 1em .5em;
|
604
|
-
}
|
605
|
-
|
606
|
-
table.standard th a {
|
607
|
-
text-decoration: none !important;
|
608
|
-
}
|
609
|
-
|
610
|
-
table.standard th a.arrow-desc:after{
|
611
|
-
content: "\25BC";
|
612
|
-
margin-left: 1em;
|
613
|
-
}
|
614
|
-
|
615
|
-
table.standard th a.arrow-asc:after {
|
616
|
-
content: "\25B2";
|
617
|
-
margin-left: 1em;
|
618
|
-
}
|
619
|
-
|
620
|
-
table.standard td.crud_links {
|
621
|
-
text-align: right;
|
622
|
-
}
|
623
|
-
|
624
|
-
table.standard td.nowrap {
|
625
|
-
white-space: nowrap;
|
626
|
-
}
|
627
|
-
|
628
|
-
table.standard tr.muted th {
|
629
|
-
border: 1px solid #999999;
|
630
|
-
background-color: #999999;
|
631
|
-
}
|
632
|
-
|
633
|
-
table.standard tr.summary {
|
634
|
-
background-color: #cccccc;
|
635
|
-
border-top: 1px solid #999999;
|
636
|
-
}
|
637
|
-
|
638
|
-
table.standard tr.odd {
|
639
|
-
background-color: #ffffff;
|
640
|
-
}
|
641
|
-
|
642
|
-
table.standard tr.even {
|
643
|
-
background-color: #dddddd;
|
644
|
-
}
|
645
|
-
|
646
|
-
table.standard tr:hover {
|
647
|
-
background-color: #aaaaaa;
|
648
|
-
}
|
649
|
-
|
650
|
-
table.standard td {
|
651
|
-
padding: .5em;
|
652
|
-
text-align: left;
|
653
|
-
font-size: .9em;
|
654
|
-
}
|
655
|
-
|
656
|
-
table.standard td span.emphasis {
|
657
|
-
font-weight: bold;
|
658
|
-
}
|
659
|
-
|
660
|
-
table.standard td.nowrap {
|
661
|
-
white-space: nowrap;
|
662
|
-
}
|
663
|
-
|
664
|
-
/* @end */
|
665
|
-
|
666
|
-
/* @group Pagination */
|
667
|
-
|
668
|
-
.pagination {
|
669
|
-
font-size: 10px;
|
670
|
-
padding: 3px;
|
671
|
-
margin: 10px;
|
672
|
-
text-align: right;
|
673
|
-
white-space: nowrap;
|
674
|
-
}
|
675
|
-
|
676
|
-
.pagination_label {
|
677
|
-
float: left;
|
678
|
-
width: 30%;
|
679
|
-
font-size: 10px;
|
680
|
-
padding-top: 1em;
|
681
|
-
}
|
682
|
-
|
683
|
-
.pagination_controls {
|
684
|
-
float: right;
|
685
|
-
width: 60%;
|
686
|
-
}
|
687
|
-
|
688
|
-
.pagination a {
|
689
|
-
padding: 2px 5px 2px 5px;
|
690
|
-
margin: 2px;
|
691
|
-
border: 1px solid #999999;
|
692
|
-
color: #666666;
|
693
|
-
}
|
694
|
-
|
695
|
-
.pagination a:hover, .pagination a:active {
|
696
|
-
border: 1px solid #999999;
|
697
|
-
background-color: #eeeeee;
|
698
|
-
color: #000;
|
699
|
-
}
|
700
|
-
|
701
|
-
.pagination span.current {
|
702
|
-
padding: 2px 5px 2px 5px;
|
703
|
-
margin: 2px;
|
704
|
-
border: 1px solid #999999;
|
705
|
-
font-weight: bold;
|
706
|
-
background-color: #eeeeee;
|
707
|
-
color: #000000;
|
708
|
-
}
|
709
|
-
|
710
|
-
.pagination span.disabled {
|
711
|
-
padding: 2px 5px 2px 5px;
|
712
|
-
margin: 2px;
|
713
|
-
border: 1px solid #999999;
|
714
|
-
color: #cccccc;
|
715
|
-
}
|
716
|
-
|
717
|
-
/* @end */
|
718
|
-
|
719
|
-
/* @group Workarounds */
|
720
|
-
|
721
|
-
.clearfix:after {
|
722
|
-
content: ".";
|
723
|
-
display: block;
|
724
|
-
height: 0;
|
725
|
-
clear: both;
|
726
|
-
visibility: hidden;
|
727
|
-
}
|
728
|
-
|
729
|
-
/* Hides from IE-mac \*/
|
730
|
-
* html .clearfix {height: 1%;}
|
731
|
-
/* End hide from IE-mac */
|
732
|
-
|
733
|
-
#preload { height: 0; overflow: hidden; }
|
734
|
-
|
735
|
-
/* @end */
|
45
|
+
div.menu_icon#intersite_traffic:hover {
|
46
|
+
background: url(/images/menu_icons/intersite_traffic_on.png) no-repeat center top;
|
47
|
+
}
|
736
48
|
|
49
|
+
.page_break { display: none; }
|