the_jobbook_admin_data 1.3.0a
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +19 -0
- data/CHANGELOG.rdoc +284 -0
- data/Gemfile +22 -0
- data/Gemfile.lock +121 -0
- data/Guardfile +14 -0
- data/MIT-LICENSE +20 -0
- data/README.md +37 -0
- data/README.rdoc +3 -0
- data/Rakefile +40 -0
- data/admin_data.gemspec +23 -0
- data/app/assets/images/add.png +0 -0
- data/app/assets/images/admin_data/.gitkeep +0 -0
- data/app/assets/images/no.png +0 -0
- data/app/assets/images/site.png +0 -0
- data/app/assets/images/sort_by_asc.jpg +0 -0
- data/app/assets/images/sort_by_desc.jpg +0 -0
- data/app/assets/images/sort_by_nothing.jpg +0 -0
- data/app/assets/javascripts/admin_data.js +18 -0
- data/app/assets/javascripts/admin_data/application.js +15 -0
- data/app/assets/javascripts/advance_search/act_on_result.js +45 -0
- data/app/assets/javascripts/advance_search/advance_search.js +83 -0
- data/app/assets/javascripts/advance_search/advance_search_structure.js +79 -0
- data/app/assets/javascripts/advance_search/ajaxify_advance_search.js +28 -0
- data/app/assets/javascripts/advance_search/build_first_row.js +8 -0
- data/app/assets/javascripts/advance_search/event_bindings.js +76 -0
- data/app/assets/javascripts/advance_search/global_ajax_setting.js +10 -0
- data/app/assets/javascripts/advance_search/sortby.js +14 -0
- data/app/assets/javascripts/advance_search/trigger_submit_on_domready.js +6 -0
- data/app/assets/javascripts/analytics/report.js +7 -0
- data/app/assets/javascripts/misc/drop_down_change.js +8 -0
- data/app/assets/javascripts/misc/js_util.js +58 -0
- data/app/assets/javascripts/misc/quick_search_input_focus.js +6 -0
- data/app/assets/javascripts/vendor/jquery-1.4.2.js +6240 -0
- data/app/assets/javascripts/vendor/jquery-ui-1.7.2.custom.min.js +298 -0
- data/app/assets/javascripts/vendor/jquery.ba-isjquery.js +21 -0
- data/app/assets/javascripts/vendor/jquery_form.js +814 -0
- data/app/assets/javascripts/vendor/log.js +9 -0
- data/app/assets/javascripts/vendor/rails.js +132 -0
- data/app/assets/stylesheets/admin_data.css +1141 -0
- data/app/assets/stylesheets/admin_data/application.css +13 -0
- data/app/assets/stylesheets/vendor/jquery-ui-1.7.2.custom.css +406 -0
- data/app/controllers/admin_data/application_controller.rb +107 -0
- data/app/controllers/admin_data/crud_controller.rb +100 -0
- data/app/controllers/admin_data/feed_controller.rb +48 -0
- data/app/controllers/admin_data/home_controller.rb +8 -0
- data/app/controllers/admin_data/migration_controller.rb +18 -0
- data/app/controllers/admin_data/public_controller.rb +28 -0
- data/app/controllers/admin_data/search_controller.rb +143 -0
- data/app/controllers/admin_data/table_structure_controller.rb +25 -0
- data/app/helpers/admin_data/application_helper.rb +320 -0
- data/app/views/admin_data/crud/association/_association_info.html.erb +11 -0
- data/app/views/admin_data/crud/association/_belongs_to_info.html.erb +7 -0
- data/app/views/admin_data/crud/association/_habtm_info.html.erb +7 -0
- data/app/views/admin_data/crud/association/_has_many_info.html.erb +7 -0
- data/app/views/admin_data/crud/association/_has_one_info.html.erb +6 -0
- data/app/views/admin_data/crud/edit.html.erb +36 -0
- data/app/views/admin_data/crud/misc/_form.html.erb +38 -0
- data/app/views/admin_data/crud/misc/_modify_record.html.erb +18 -0
- data/app/views/admin_data/crud/new.html.erb +25 -0
- data/app/views/admin_data/crud/show.html.erb +42 -0
- data/app/views/admin_data/feed/index.rss.builder +25 -0
- data/app/views/admin_data/home/index.html.erb +21 -0
- data/app/views/admin_data/migration/index.html.erb +18 -0
- data/app/views/admin_data/migration/jstest.html.erb +51 -0
- data/app/views/admin_data/search/advance_search.html.erb +1 -0
- data/app/views/admin_data/search/quick_search.html.erb +1 -0
- data/app/views/admin_data/search/search/_advance_search_form.html.erb +52 -0
- data/app/views/admin_data/search/search/_errors.html.erb +5 -0
- data/app/views/admin_data/search/search/_listing.html.erb +43 -0
- data/app/views/admin_data/search/search/_search_form.html.erb +27 -0
- data/app/views/admin_data/search/search/_title.html.erb +34 -0
- data/app/views/admin_data/shared/_breadcrum.html.erb +16 -0
- data/app/views/admin_data/shared/_drop_down_klasses.html.erb +4 -0
- data/app/views/admin_data/shared/_flash_message.html.erb +13 -0
- data/app/views/admin_data/shared/_header.html.erb +20 -0
- data/app/views/admin_data/shared/_powered_by.html.erb +6 -0
- data/app/views/admin_data/shared/_secondary_navigation.html.erb +26 -0
- data/app/views/admin_data/table_structure/index.html.erb +54 -0
- data/app/views/layouts/admin_data.html.erb +34 -0
- data/app/views/layouts/admin_data/application.html.erb +14 -0
- data/app/views/layouts/search.html.erb +71 -0
- data/config/routes.rb +32 -0
- data/lib/admin_data.rb +27 -0
- data/lib/admin_data/active_record_util.rb +102 -0
- data/lib/admin_data/analytics.rb +176 -0
- data/lib/admin_data/authenticator.rb +15 -0
- data/lib/admin_data/config.rb +38 -0
- data/lib/admin_data/configuration.rb +127 -0
- data/lib/admin_data/date_util.rb +58 -0
- data/lib/admin_data/engine.rb +17 -0
- data/lib/admin_data/model_finder.rb +15 -0
- data/lib/admin_data/rails_version_check.rb +8 -0
- data/lib/admin_data/search.rb +188 -0
- data/lib/admin_data/setup_config.rb +24 -0
- data/lib/admin_data/util.rb +102 -0
- data/lib/admin_data/version.rb +3 -0
- data/lib/tasks/admin_data_tasks.rake +4 -0
- data/script/rails +8 -0
- data/test/admin_data_test.rb +7 -0
- data/test/dummy/README.md +19 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +5 -0
- data/test/dummy/app/models/user.rb +3 -0
- data/test/dummy/app/models/user/student.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +15 -0
- data/test/dummy/config/boot.rb +13 -0
- data/test/dummy/config/cucumber.yml +9 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/database.yml.mysql +22 -0
- data/test/dummy/config/database.yml.pg +15 -0
- data/test/dummy/config/database.yml.sqlite3 +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +22 -0
- data/test/dummy/config/environments/production.rb +49 -0
- data/test/dummy/config/environments/test.rb +35 -0
- data/test/dummy/config/initializers/admin_data.rb +15 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/empty_spaces_to_nil.rb +10 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +9 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20091030202259_create_tables.rb +72 -0
- data/test/dummy/db/production.sqlite3 +1 -0
- data/test/dummy/db/schema.rb +23 -0
- data/test/dummy/db/seeds.rb +40 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/features/advance_search/boolean.feature +74 -0
- data/test/dummy/features/advance_search/datetime.feature +101 -0
- data/test/dummy/features/advance_search/delete_all.feature +20 -0
- data/test/dummy/features/advance_search/destroy_all.feature +20 -0
- data/test/dummy/features/advance_search/integer.feature +69 -0
- data/test/dummy/features/advance_search/multiple_rows.feature +87 -0
- data/test/dummy/features/advance_search/string.feature +130 -0
- data/test/dummy/features/crud.feature +50 -0
- data/test/dummy/features/crud_show.feature +56 -0
- data/test/dummy/features/feed.feature +13 -0
- data/test/dummy/features/home.feature +42 -0
- data/test/dummy/features/migration.feature +7 -0
- data/test/dummy/features/quick_search.feature +113 -0
- data/test/dummy/features/step_definitions/advance_search_steps.rb +13 -0
- data/test/dummy/features/step_definitions/app_steps.rb +36 -0
- data/test/dummy/features/step_definitions/async.rb +18 -0
- data/test/dummy/features/step_definitions/configuration_steps.rb +61 -0
- data/test/dummy/features/step_definitions/crud_show_steps.rb +37 -0
- data/test/dummy/features/step_definitions/feed_steps.rb +24 -0
- data/test/dummy/features/step_definitions/quick_search_steps.rb +68 -0
- data/test/dummy/features/step_definitions/util.rb +90 -0
- data/test/dummy/features/step_definitions/web_steps.rb +219 -0
- data/test/dummy/features/support/env.rb +66 -0
- data/test/dummy/features/support/hooks.rb +9 -0
- data/test/dummy/features/support/paths.rb +33 -0
- data/test/dummy/features/table_structure.feature +18 -0
- data/test/dummy/lib/tasks/.gitkeep +0 -0
- data/test/dummy/lib/tasks/cucumber.rake +53 -0
- data/test/dummy/lib/tasks/dbs.rake +30 -0
- data/test/dummy/lib/tasks/sample_cars.rake +18 -0
- data/test/dummy/public/.gitkeep +0 -0
- data/test/dummy/script/cucumber +10 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/factories.rb +30 -0
- data/test/dummy/test/test_helper.rb +7 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/admin_data/model_finder_test.rb +16 -0
- data/test/unit/car_test.rb +96 -0
- data/test/unit/user_phone_test.rb +19 -0
- metadata +253 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
@@ -0,0 +1,406 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery UI CSS Framework
|
3
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
4
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
5
|
+
*/
|
6
|
+
|
7
|
+
/* Layout helpers
|
8
|
+
----------------------------------*/
|
9
|
+
.ui-helper-hidden { display: none; }
|
10
|
+
.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
|
11
|
+
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
12
|
+
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
13
|
+
.ui-helper-clearfix { display: inline-block; }
|
14
|
+
/* required comment for clearfix to work in Opera \*/
|
15
|
+
* html .ui-helper-clearfix { height:1%; }
|
16
|
+
.ui-helper-clearfix { display:block; }
|
17
|
+
/* end clearfix */
|
18
|
+
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
19
|
+
|
20
|
+
|
21
|
+
/* Interaction Cues
|
22
|
+
----------------------------------*/
|
23
|
+
.ui-state-disabled { cursor: default !important; }
|
24
|
+
|
25
|
+
|
26
|
+
/* Icons
|
27
|
+
----------------------------------*/
|
28
|
+
|
29
|
+
/* states and images */
|
30
|
+
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
31
|
+
|
32
|
+
|
33
|
+
/* Misc visuals
|
34
|
+
----------------------------------*/
|
35
|
+
|
36
|
+
/* Overlays */
|
37
|
+
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
/*
|
42
|
+
* jQuery UI CSS Framework
|
43
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
44
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
|
45
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial,sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=6px&bgColorHeader=cc0000&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=15&borderColorHeader=e3a1a1&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=eeeeee&fcContent=333333&iconColorContent=cc0000&bgColorDefault=eeeeee&bgTextureDefault=04_highlight_hard.png&bgImgOpacityDefault=100&borderColorDefault=d8dcdf&fcDefault=004276&iconColorDefault=cc0000&bgColorHover=f6f6f6&bgTextureHover=04_highlight_hard.png&bgImgOpacityHover=100&borderColorHover=cdd5da&fcHover=111111&iconColorHover=cc0000&bgColorActive=ffffff&bgTextureActive=01_flat.png&bgImgOpacityActive=65&borderColorActive=eeeeee&fcActive=cc0000&iconColorActive=cc0000&bgColorHighlight=fbf8ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcd3a1&fcHighlight=444444&iconColorHighlight=004276&bgColorError=f3d8d8&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=75&borderColorError=cc0000&fcError=2e2e2e&iconColorError=cc0000&bgColorOverlay=a6a6a6&bgTextureOverlay=09_dots_small.png&bgImgOpacityOverlay=65&opacityOverlay=40&bgColorShadow=333333&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=10&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
46
|
+
*/
|
47
|
+
|
48
|
+
|
49
|
+
/* Component containers
|
50
|
+
----------------------------------*/
|
51
|
+
.ui-widget { font-family: Arial,sans-serif; font-size: 1.1em; }
|
52
|
+
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
|
53
|
+
.ui-widget-content { border: 1px solid #eeeeee; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #333333; }
|
54
|
+
.ui-widget-content a { color: #333333; }
|
55
|
+
.ui-widget-header { border: 1px solid #e3a1a1; background: #cc0000 url(images/ui-bg_highlight-soft_15_cc0000_1x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
|
56
|
+
.ui-widget-header a { color: #ffffff; }
|
57
|
+
|
58
|
+
/* Interaction states
|
59
|
+
----------------------------------*/
|
60
|
+
.ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d8dcdf; background: #eeeeee url(images/ui-bg_highlight-hard_100_eeeeee_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #004276; outline: none; }
|
61
|
+
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #004276; text-decoration: none; outline: none; }
|
62
|
+
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #cdd5da; background: #f6f6f6 url(images/ui-bg_highlight-hard_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #111111; outline: none; }
|
63
|
+
.ui-state-hover a, .ui-state-hover a:hover { color: #111111; text-decoration: none; outline: none; }
|
64
|
+
.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #eeeeee; background: #ffffff url(images/ui-bg_flat_65_ffffff_40x100.png) 50% 50% repeat-x; font-weight: bold; color: #cc0000; outline: none; }
|
65
|
+
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #cc0000; outline: none; text-decoration: none; }
|
66
|
+
|
67
|
+
/* Interaction Cues
|
68
|
+
----------------------------------*/
|
69
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcd3a1; background: #fbf8ee url(images/ui-bg_glass_55_fbf8ee_1x400.png) 50% 50% repeat-x; color: #444444; }
|
70
|
+
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #444444; }
|
71
|
+
.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cc0000; background: #f3d8d8 url(images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png) 50% 50% repeat; color: #2e2e2e; }
|
72
|
+
.ui-state-error a, .ui-widget-content .ui-state-error a { color: #2e2e2e; }
|
73
|
+
.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #2e2e2e; }
|
74
|
+
.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
75
|
+
.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; }
|
76
|
+
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
77
|
+
|
78
|
+
/* Icons
|
79
|
+
----------------------------------*/
|
80
|
+
|
81
|
+
/* states and images */
|
82
|
+
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_cc0000_256x240.png); }
|
83
|
+
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_cc0000_256x240.png); }
|
84
|
+
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
85
|
+
.ui-state-default .ui-icon { background-image: url(images/ui-icons_cc0000_256x240.png); }
|
86
|
+
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_cc0000_256x240.png); }
|
87
|
+
.ui-state-active .ui-icon {background-image: url(images/ui-icons_cc0000_256x240.png); }
|
88
|
+
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_004276_256x240.png); }
|
89
|
+
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cc0000_256x240.png); }
|
90
|
+
|
91
|
+
/* positioning */
|
92
|
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
93
|
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
94
|
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
95
|
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
96
|
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
97
|
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
98
|
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
99
|
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
100
|
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
101
|
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
102
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
103
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
104
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
105
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
106
|
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
107
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
108
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
109
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
110
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
111
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
112
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
113
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
114
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
115
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
116
|
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
117
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
118
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
119
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
120
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
121
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
122
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
123
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
124
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
125
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
126
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
127
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
128
|
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
129
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
130
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
131
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
132
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
133
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
134
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
135
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
136
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
137
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
138
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
139
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
140
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
141
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
142
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
143
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
144
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
145
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
146
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
147
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
148
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
149
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
150
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
151
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
152
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
153
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
154
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
155
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
156
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
157
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
158
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
159
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
160
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
161
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
162
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
163
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
164
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
165
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
166
|
+
.ui-icon-document { background-position: -32px -96px; }
|
167
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
168
|
+
.ui-icon-note { background-position: -64px -96px; }
|
169
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
170
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
171
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
172
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
173
|
+
.ui-icon-person { background-position: -144px -96px; }
|
174
|
+
.ui-icon-print { background-position: -160px -96px; }
|
175
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
176
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
177
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
178
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
179
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
180
|
+
.ui-icon-home { background-position: 0 -112px; }
|
181
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
182
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
183
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
184
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
185
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
186
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
187
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
188
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
189
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
190
|
+
.ui-icon-search { background-position: -160px -112px; }
|
191
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
192
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
193
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
194
|
+
.ui-icon-star { background-position: -224px -112px; }
|
195
|
+
.ui-icon-link { background-position: -240px -112px; }
|
196
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
197
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
198
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
199
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
200
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
201
|
+
.ui-icon-close { background-position: -80px -128px; }
|
202
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
203
|
+
.ui-icon-key { background-position: -112px -128px; }
|
204
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
205
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
206
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
207
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
208
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
209
|
+
.ui-icon-image { background-position: -208px -128px; }
|
210
|
+
.ui-icon-video { background-position: -224px -128px; }
|
211
|
+
.ui-icon-script { background-position: -240px -128px; }
|
212
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
213
|
+
.ui-icon-info { background-position: -16px -144px; }
|
214
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
215
|
+
.ui-icon-help { background-position: -48px -144px; }
|
216
|
+
.ui-icon-check { background-position: -64px -144px; }
|
217
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
218
|
+
.ui-icon-radio-off { background-position: -96px -144px; }
|
219
|
+
.ui-icon-radio-on { background-position: -112px -144px; }
|
220
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
221
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
222
|
+
.ui-icon-play { background-position: 0 -160px; }
|
223
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
224
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
225
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
226
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
227
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
228
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
229
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
230
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
231
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
232
|
+
.ui-icon-power { background-position: 0 -176px; }
|
233
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
234
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
235
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
236
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
237
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
238
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
239
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
240
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
241
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
242
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
243
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
244
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
245
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
246
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
247
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
248
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
249
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
250
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
251
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
252
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
253
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
254
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
255
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
256
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
257
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
258
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
259
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
260
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
261
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
262
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
263
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
264
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
265
|
+
|
266
|
+
|
267
|
+
/* Misc visuals
|
268
|
+
----------------------------------*/
|
269
|
+
|
270
|
+
/* Corner radius */
|
271
|
+
.ui-corner-tl { -moz-border-radius-topleft: 6px; -webkit-border-top-left-radius: 6px; }
|
272
|
+
.ui-corner-tr { -moz-border-radius-topright: 6px; -webkit-border-top-right-radius: 6px; }
|
273
|
+
.ui-corner-bl { -moz-border-radius-bottomleft: 6px; -webkit-border-bottom-left-radius: 6px; }
|
274
|
+
.ui-corner-br { -moz-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: 6px; }
|
275
|
+
.ui-corner-top { -moz-border-radius-topleft: 6px; -webkit-border-top-left-radius: 6px; -moz-border-radius-topright: 6px; -webkit-border-top-right-radius: 6px; }
|
276
|
+
.ui-corner-bottom { -moz-border-radius-bottomleft: 6px; -webkit-border-bottom-left-radius: 6px; -moz-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: 6px; }
|
277
|
+
.ui-corner-right { -moz-border-radius-topright: 6px; -webkit-border-top-right-radius: 6px; -moz-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: 6px; }
|
278
|
+
.ui-corner-left { -moz-border-radius-topleft: 6px; -webkit-border-top-left-radius: 6px; -moz-border-radius-bottomleft: 6px; -webkit-border-bottom-left-radius: 6px; }
|
279
|
+
.ui-corner-all { -moz-border-radius: 6px; -webkit-border-radius: 6px; }
|
280
|
+
|
281
|
+
/* Overlays */
|
282
|
+
.ui-widget-overlay { background: #a6a6a6 url(images/ui-bg_dots-small_65_a6a6a6_2x2.png) 50% 50% repeat; opacity: .40;filter:Alpha(Opacity=40); }
|
283
|
+
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #333333 url(images/ui-bg_flat_0_333333_40x100.png) 50% 50% repeat-x; opacity: .10;filter:Alpha(Opacity=10); -moz-border-radius: 8px; -webkit-border-radius: 8px; }/* Accordion
|
284
|
+
----------------------------------*/
|
285
|
+
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
|
286
|
+
.ui-accordion .ui-accordion-li-fix { display: inline; }
|
287
|
+
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
|
288
|
+
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; }
|
289
|
+
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
|
290
|
+
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; }
|
291
|
+
.ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker
|
292
|
+
----------------------------------*/
|
293
|
+
.ui-datepicker { width: 17em; padding: .2em .2em 0; }
|
294
|
+
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
295
|
+
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
296
|
+
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
297
|
+
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
298
|
+
.ui-datepicker .ui-datepicker-next { right:2px; }
|
299
|
+
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
300
|
+
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
301
|
+
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
|
302
|
+
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
303
|
+
.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
|
304
|
+
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
305
|
+
.ui-datepicker select.ui-datepicker-month,
|
306
|
+
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
307
|
+
.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
|
308
|
+
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
309
|
+
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
310
|
+
.ui-datepicker td { border: 0; padding: 1px; }
|
311
|
+
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
312
|
+
.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
|
313
|
+
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
314
|
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
315
|
+
|
316
|
+
/* with multiple calendars */
|
317
|
+
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
318
|
+
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
319
|
+
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
320
|
+
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
321
|
+
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
322
|
+
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
323
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
324
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
325
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
326
|
+
.ui-datepicker-row-break { clear:both; width:100%; }
|
327
|
+
|
328
|
+
/* RTL support */
|
329
|
+
.ui-datepicker-rtl { direction: rtl; }
|
330
|
+
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
331
|
+
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
332
|
+
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
333
|
+
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
334
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
335
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
336
|
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
337
|
+
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
338
|
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
339
|
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
340
|
+
|
341
|
+
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
342
|
+
.ui-datepicker-cover {
|
343
|
+
display: none; /*sorry for IE5*/
|
344
|
+
display/**/: block; /*sorry for IE5*/
|
345
|
+
position: absolute; /*must have*/
|
346
|
+
z-index: -1; /*must have*/
|
347
|
+
filter: mask(); /*must have*/
|
348
|
+
top: -4px; /*must have*/
|
349
|
+
left: -4px; /*must have*/
|
350
|
+
width: 200px; /*must have*/
|
351
|
+
height: 200px; /*must have*/
|
352
|
+
}/* Dialog
|
353
|
+
----------------------------------*/
|
354
|
+
.ui-dialog { position: relative; padding: .2em; width: 300px; }
|
355
|
+
.ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; }
|
356
|
+
.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; }
|
357
|
+
.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
|
358
|
+
.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
|
359
|
+
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
|
360
|
+
.ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
|
361
|
+
.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
|
362
|
+
.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
|
363
|
+
.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
364
|
+
.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
365
|
+
/* Progressbar
|
366
|
+
----------------------------------*/
|
367
|
+
.ui-progressbar { height:2em; text-align: left; }
|
368
|
+
.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable
|
369
|
+
----------------------------------*/
|
370
|
+
.ui-resizable { position: relative;}
|
371
|
+
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
|
372
|
+
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
|
373
|
+
.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
|
374
|
+
.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
|
375
|
+
.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
|
376
|
+
.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
|
377
|
+
.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
|
378
|
+
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
|
379
|
+
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
|
380
|
+
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider
|
381
|
+
----------------------------------*/
|
382
|
+
.ui-slider { position: relative; text-align: left; }
|
383
|
+
.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
|
384
|
+
.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
|
385
|
+
|
386
|
+
.ui-slider-horizontal { height: .8em; }
|
387
|
+
.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
|
388
|
+
.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
|
389
|
+
.ui-slider-horizontal .ui-slider-range-min { left: 0; }
|
390
|
+
.ui-slider-horizontal .ui-slider-range-max { right: 0; }
|
391
|
+
|
392
|
+
.ui-slider-vertical { width: .8em; height: 100px; }
|
393
|
+
.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
|
394
|
+
.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
|
395
|
+
.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
|
396
|
+
.ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs
|
397
|
+
----------------------------------*/
|
398
|
+
.ui-tabs { padding: .2em; zoom: 1; }
|
399
|
+
.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
|
400
|
+
.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
|
401
|
+
.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
|
402
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
|
403
|
+
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
|
404
|
+
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
|
405
|
+
.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
|
406
|
+
.ui-tabs .ui-tabs-hide { display: none !important; }
|
@@ -0,0 +1,107 @@
|
|
1
|
+
module AdminData
|
2
|
+
class ApplicationController < ::ApplicationController
|
3
|
+
|
4
|
+
layout 'admin_data'
|
5
|
+
|
6
|
+
before_filter :ensure_is_allowed_to_view
|
7
|
+
|
8
|
+
helper_method :is_allowed_to_update?
|
9
|
+
|
10
|
+
|
11
|
+
before_filter :build_klasses,
|
12
|
+
:build_drop_down_for_klasses,
|
13
|
+
:check_page_parameter,
|
14
|
+
:prepare_drop_down_klasses
|
15
|
+
|
16
|
+
attr_reader :klass
|
17
|
+
|
18
|
+
protected
|
19
|
+
|
20
|
+
self.config.asset_path = lambda {|asset| "/admin_data/public#{asset}"}
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def prepare_drop_down_klasses
|
25
|
+
k = params[:klass] || ''
|
26
|
+
@drop_down_url = "http://#{request.host_with_port}/admin_data/quick_search/#{CGI.escape(k)}"
|
27
|
+
end
|
28
|
+
|
29
|
+
def ensure_is_allowed_to_view
|
30
|
+
render :text => 'not authorized' unless is_allowed_to_view?
|
31
|
+
end
|
32
|
+
|
33
|
+
def ensure_is_allowed_to_update
|
34
|
+
render :text => 'not authorized' unless is_allowed_to_update?
|
35
|
+
end
|
36
|
+
|
37
|
+
def get_class_from_params
|
38
|
+
begin
|
39
|
+
@klass = Util.camelize_constantize(params[:klass])
|
40
|
+
rescue TypeError => e # in case no params[:klass] is supplied
|
41
|
+
render :text => 'wrong params[:klass] was supplied' and return
|
42
|
+
rescue NameError # in case wrong params[:klass] is supplied
|
43
|
+
render :text => 'wrong params[:klass] was supplied' and return
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def build_klasses
|
48
|
+
@klasses = _build_all_klasses
|
49
|
+
end
|
50
|
+
|
51
|
+
def _build_all_klasses
|
52
|
+
if defined? $admin_data_all_klasses
|
53
|
+
return $admin_data_all_klasses
|
54
|
+
else
|
55
|
+
model_dir = File.join(Rails.root, 'app', 'models')
|
56
|
+
model_names = Dir.chdir(model_dir) { Dir["*.rb"] }
|
57
|
+
klasses = get_klass_names(model_names)
|
58
|
+
$admin_data_all_klasses = remove_klasses_without_table(klasses).sort_by {|r| r.name.underscore}
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def remove_klasses_without_table(klasses)
|
63
|
+
klasses.select { |k| k.ancestors.include?(ActiveRecord::Base) && k.connection.table_exists?(k.table_name) }
|
64
|
+
end
|
65
|
+
|
66
|
+
def get_klass_names(model_names)
|
67
|
+
model_names.inject([]) do |output, model_name|
|
68
|
+
klass_name = model_name.sub(/\.rb$/,'').camelize
|
69
|
+
begin
|
70
|
+
output << Util.constantize_klass(klass_name)
|
71
|
+
rescue Exception => e
|
72
|
+
Rails.logger.debug e.message
|
73
|
+
end
|
74
|
+
output
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def build_drop_down_for_klasses
|
79
|
+
@drop_down_for_klasses = ModelFinder.models.inject([]) do |result, klass|
|
80
|
+
result << [klass, search_url(:klass => klass)]
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def check_page_parameter
|
85
|
+
# Got hoptoad error because of url like
|
86
|
+
# http://localhost:3000/admin_data/User/advance_search?page=http://201.134.249.164/intranet/on.txt?
|
87
|
+
if params[:page].blank? || (params[:page] =~ /\A\d+\z/)
|
88
|
+
# proceed
|
89
|
+
else
|
90
|
+
render :text => 'Invalid params[:page]', :status => :unprocessable_entity
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
def per_page
|
95
|
+
AdminData.config.number_of_records_per_page
|
96
|
+
end
|
97
|
+
|
98
|
+
def is_allowed_to_view?
|
99
|
+
AdminData.config.is_allowed_to_view.call(self)
|
100
|
+
end
|
101
|
+
|
102
|
+
def is_allowed_to_update?
|
103
|
+
AdminData.config.is_allowed_to_update.call(self)
|
104
|
+
end
|
105
|
+
|
106
|
+
end
|
107
|
+
end
|