refinerycms-whatson 1.8.0
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/.gitignore +48 -0
- data/.tork.rb +2 -0
- data/.travis.yml +2 -0
- data/Gemfile +7 -0
- data/Rakefile +3 -0
- data/app/controllers/admin/whatson/categories_controller.rb +11 -0
- data/app/controllers/admin/whatson/comments_controller.rb +40 -0
- data/app/controllers/admin/whatson/posts_controller.rb +97 -0
- data/app/controllers/admin/whatson/settings_controller.rb +53 -0
- data/app/controllers/whatson/categories_controller.rb +13 -0
- data/app/controllers/whatson/posts_controller.rb +109 -0
- data/app/controllers/whatson_controller.rb +16 -0
- data/app/helpers/whatson_posts_helper.rb +56 -0
- data/app/mailers/whatson/comment_mailer.rb +13 -0
- data/app/models/categorization.rb +7 -0
- data/app/models/whatson/comment_mailer.rb +1 -0
- data/app/models/whatson_category.rb +19 -0
- data/app/models/whatson_comment.rb +137 -0
- data/app/models/whatson_post.rb +114 -0
- data/app/views/admin/whatson/_submenu.html.erb +96 -0
- data/app/views/admin/whatson/categories/_category.html.erb +16 -0
- data/app/views/admin/whatson/categories/_form.html.erb +19 -0
- data/app/views/admin/whatson/categories/_sortable_list.html.erb +7 -0
- data/app/views/admin/whatson/categories/edit.html.erb +1 -0
- data/app/views/admin/whatson/categories/index.html.erb +26 -0
- data/app/views/admin/whatson/categories/new.html.erb +1 -0
- data/app/views/admin/whatson/comments/_comment.html.erb +20 -0
- data/app/views/admin/whatson/comments/_sortable_list.html.erb +7 -0
- data/app/views/admin/whatson/comments/index.html.erb +35 -0
- data/app/views/admin/whatson/comments/show.html.erb +63 -0
- data/app/views/admin/whatson/posts/_form.css.erb +20 -0
- data/app/views/admin/whatson/posts/_form.html.erb +110 -0
- data/app/views/admin/whatson/posts/_form.js.erb +23 -0
- data/app/views/admin/whatson/posts/_form_part.html.erb +3 -0
- data/app/views/admin/whatson/posts/_post.html.erb +24 -0
- data/app/views/admin/whatson/posts/_sortable_list.html.erb +7 -0
- data/app/views/admin/whatson/posts/_teaser_part.html.erb +11 -0
- data/app/views/admin/whatson/posts/edit.html.erb +1 -0
- data/app/views/admin/whatson/posts/index.html.erb +28 -0
- data/app/views/admin/whatson/posts/new.html.erb +1 -0
- data/app/views/admin/whatson/posts/uncategorized.html.erb +26 -0
- data/app/views/admin/whatson/settings/notification_recipients.html.erb +24 -0
- data/app/views/shared/admin/_autocomplete.html.erb +55 -0
- data/app/views/whatson/categories/show.html.erb +21 -0
- data/app/views/whatson/comment_mailer/notification.html.erb +17 -0
- data/app/views/whatson/posts/_comment.html.erb +10 -0
- data/app/views/whatson/posts/_nav.html.erb +11 -0
- data/app/views/whatson/posts/archive.html.erb +20 -0
- data/app/views/whatson/posts/index.html.erb +24 -0
- data/app/views/whatson/posts/index.rss.builder +17 -0
- data/app/views/whatson/posts/show.html.erb +98 -0
- data/app/views/whatson/posts/tagged.html.erb +22 -0
- data/app/views/whatson/shared/_archive_list.html.erb +9 -0
- data/app/views/whatson/shared/_categories.html.erb +10 -0
- data/app/views/whatson/shared/_post.html.erb +46 -0
- data/app/views/whatson/shared/_related_posts.html.erb +10 -0
- data/app/views/whatson/shared/_rss_feed.html.erb +2 -0
- data/app/views/whatson/shared/_tags.html.erb +8 -0
- data/config/locales/bg.yml +158 -0
- data/config/locales/cs.yml +128 -0
- data/config/locales/de.yml +130 -0
- data/config/locales/en.yml +159 -0
- data/config/locales/es.yml +159 -0
- data/config/locales/fr.yml +154 -0
- data/config/locales/it.yml +156 -0
- data/config/locales/ja.yml +159 -0
- data/config/locales/nb.yml +30 -0
- data/config/locales/nl.yml +134 -0
- data/config/locales/pl.yml +134 -0
- data/config/locales/pt-BR.yml +143 -0
- data/config/locales/ru.yml +135 -0
- data/config/locales/sk.yml +128 -0
- data/config/locales/zh-CN.yml +128 -0
- data/config/routes.rb +47 -0
- data/db/migrate/1_create_whatson_structure.rb +54 -0
- data/db/migrate/2_add_user_id_to_whatson_posts.rb +11 -0
- data/db/migrate/3_acts_as_taggable_on_migration.rb +28 -0
- data/db/migrate/4_create_seo_meta_for_whatson.rb +25 -0
- data/db/migrate/5_add_cached_slugs.rb +11 -0
- data/db/migrate/6_add_custom_url_field_to_whatson_posts.rb +9 -0
- data/db/migrate/7_add_custom_teaser_field_to_whatson_posts.rb +10 -0
- data/db/migrate/8_add_primary_key_to_categorizations.rb +12 -0
- data/db/seeds/refinerycms_whatson.rb +20 -0
- data/features/authors.feature +15 -0
- data/features/category.feature +23 -0
- data/features/support/factories/whatson_categories.rb +5 -0
- data/features/support/factories/whatson_comments.rb +8 -0
- data/features/support/factories/whatson_posts.rb +9 -0
- data/features/support/paths.rb +24 -0
- data/features/support/step_definitions/authors_steps.rb +7 -0
- data/features/support/step_definitions/category_steps.rb +11 -0
- data/features/support/step_definitions/tags_steps.rb +13 -0
- data/features/tags.feature +26 -0
- data/lib/gemspec.rb +37 -0
- data/lib/generators/refinerycms_whatson_generator.rb +8 -0
- data/lib/refinery/whatson/tabs.rb +28 -0
- data/lib/refinery/whatson/version.rb +17 -0
- data/lib/refinerycms-whatson.rb +41 -0
- data/public/images/refinerycms-whatson/icons/cog.png +0 -0
- data/public/images/refinerycms-whatson/icons/comment.png +0 -0
- data/public/images/refinerycms-whatson/icons/comment_cross.png +0 -0
- data/public/images/refinerycms-whatson/icons/comment_tick.png +0 -0
- data/public/images/refinerycms-whatson/icons/comments.png +0 -0
- data/public/images/refinerycms-whatson/icons/down.gif +0 -0
- data/public/images/refinerycms-whatson/icons/folder.png +0 -0
- data/public/images/refinerycms-whatson/icons/folder_add.png +0 -0
- data/public/images/refinerycms-whatson/icons/folder_edit.png +0 -0
- data/public/images/refinerycms-whatson/icons/page.png +0 -0
- data/public/images/refinerycms-whatson/icons/page_add.png +0 -0
- data/public/images/refinerycms-whatson/icons/page_copy.png +0 -0
- data/public/images/refinerycms-whatson/icons/up.gif +0 -0
- data/public/images/refinerycms-whatson/rss-feed.png +0 -0
- data/public/javascripts/refinery/refinerycms-whatson.js +50 -0
- data/public/javascripts/refinerycms-whatson.js +25 -0
- data/public/stylesheets/refinery/refinerycms-whatson.css +57 -0
- data/public/stylesheets/refinerycms-whatson.css +93 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/public/stylesheets/ui-lightness/jquery-ui-1.8.13.custom.css +330 -0
- data/readme.md +41 -0
- data/refinerycms-whatson.gemspec +18 -0
- data/spec/models/whatson_category_spec.rb +41 -0
- data/spec/models/whatson_comment_spec.rb +21 -0
- data/spec/models/whatson_post_spec.rb +217 -0
- metadata +235 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.comments_icon {
|
|
2
|
+
background-image: url('/images/refinerycms-whatson/icons/comments.png');
|
|
3
|
+
}
|
|
4
|
+
.comment_icon {
|
|
5
|
+
background-image: url('/images/refinerycms-whatson/icons/comment.png');
|
|
6
|
+
}
|
|
7
|
+
.comment_cross_icon {
|
|
8
|
+
background-image: url('/images/refinerycms-whatson/icons/comment_cross.png');
|
|
9
|
+
}
|
|
10
|
+
.comment_tick_icon {
|
|
11
|
+
background-image: url('/images/refinerycms-whatson/icons/comment_tick.png');
|
|
12
|
+
}
|
|
13
|
+
.folder_icon {
|
|
14
|
+
background-image: url('/images/refinerycms-whatson/icons/folder.png');
|
|
15
|
+
}
|
|
16
|
+
.folder_add_icon {
|
|
17
|
+
background-image: url('/images/refinerycms-whatson/icons/folder_add.png');
|
|
18
|
+
}
|
|
19
|
+
.folder_edit_icon {
|
|
20
|
+
background-image: url('/images/refinerycms-whatson/icons/folder_edit.png');
|
|
21
|
+
}
|
|
22
|
+
.settings_icon {
|
|
23
|
+
background-image: url('/images/refinerycms-whatson/icons/cog.png');
|
|
24
|
+
}
|
|
25
|
+
.page_icon {
|
|
26
|
+
background-image: url('/images/refinerycms-whatson/icons/page.png');
|
|
27
|
+
}
|
|
28
|
+
.page_copy_icon {
|
|
29
|
+
background-image: url('/images/refinerycms-whatson/icons/page_copy.png');
|
|
30
|
+
}
|
|
31
|
+
.page_add_icon {
|
|
32
|
+
background-image: url('/images/refinerycms-whatson/icons/page_add.png');
|
|
33
|
+
}
|
|
34
|
+
ul.collapsible_menu li {
|
|
35
|
+
position: relative;
|
|
36
|
+
}
|
|
37
|
+
ul.collapsible_menu li span.arrow {
|
|
38
|
+
background-repeat: no-repeat;
|
|
39
|
+
position: absolute;
|
|
40
|
+
right: 10px;
|
|
41
|
+
top: 13px;
|
|
42
|
+
width: 11px;
|
|
43
|
+
height: 7px;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
}
|
|
46
|
+
ul.collapsible_menu li span.arrow {
|
|
47
|
+
background-image: url('/images/refinerycms-whatson/icons/up.gif');
|
|
48
|
+
}
|
|
49
|
+
ul.collapsible_menu li.closed span.arrow {
|
|
50
|
+
background-image: url('/images/refinerycms-whatson/icons/down.gif');
|
|
51
|
+
}
|
|
52
|
+
ul.collapsible_menu > div {
|
|
53
|
+
width: 93%;
|
|
54
|
+
margin: 0px auto;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
#records > ul li {padding:0 84px 0 5px;}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
.whatson_post header, .whatson_post footer {
|
|
2
|
+
width: auto;
|
|
3
|
+
}
|
|
4
|
+
.whatson_post .posted_at{
|
|
5
|
+
}
|
|
6
|
+
.post_categories .filed_in {
|
|
7
|
+
display: inline;
|
|
8
|
+
}
|
|
9
|
+
.post_categories ul {
|
|
10
|
+
margin: 0px 0px 0px 6px;
|
|
11
|
+
padding: 0px;
|
|
12
|
+
display: inline;
|
|
13
|
+
}
|
|
14
|
+
.post_categories ul li {
|
|
15
|
+
margin: 0px;
|
|
16
|
+
padding: 0px;
|
|
17
|
+
display: inline;
|
|
18
|
+
}
|
|
19
|
+
.field.message_field label {
|
|
20
|
+
vertical-align: top;
|
|
21
|
+
}
|
|
22
|
+
#rss_feed_subscribe {
|
|
23
|
+
display: block;
|
|
24
|
+
padding-left: 25px;
|
|
25
|
+
background: url('/images/refinerycms-whatson/rss-feed.png') no-repeat;
|
|
26
|
+
}
|
|
27
|
+
#next_prev_article{
|
|
28
|
+
overflow:hidden;
|
|
29
|
+
margin:10px 0;
|
|
30
|
+
position:relative;
|
|
31
|
+
height:30px;
|
|
32
|
+
}
|
|
33
|
+
#next_prev_article a{
|
|
34
|
+
display:block;
|
|
35
|
+
width:33%;
|
|
36
|
+
height:30px;
|
|
37
|
+
line-height:30px;
|
|
38
|
+
position:absolute;
|
|
39
|
+
top:0;
|
|
40
|
+
}
|
|
41
|
+
#next_prev_article a.prev{
|
|
42
|
+
left:0;
|
|
43
|
+
}
|
|
44
|
+
#next_prev_article a.home{
|
|
45
|
+
left:33%;
|
|
46
|
+
text-align:center;
|
|
47
|
+
}
|
|
48
|
+
#next_prev_article a.next{
|
|
49
|
+
text-align:right;
|
|
50
|
+
right:0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
#message, .flash {
|
|
54
|
+
padding: 8px 8px 8px 30px;
|
|
55
|
+
margin-bottom: 15px;
|
|
56
|
+
position: relative;
|
|
57
|
+
}
|
|
58
|
+
.flash_notice, .flash_message {
|
|
59
|
+
border: 1px solid #00A017;
|
|
60
|
+
color: #00A017;
|
|
61
|
+
background: 7px 7px no-repeat url('/images/refinery/icons/accept.png') #E0F5E0;
|
|
62
|
+
}
|
|
63
|
+
.flash_notice, .flash_notice * {
|
|
64
|
+
color: #00A017;
|
|
65
|
+
}
|
|
66
|
+
.flash_error {
|
|
67
|
+
border: 1px solid #A00027;
|
|
68
|
+
color: #A00027;
|
|
69
|
+
background: 7px 7px no-repeat url('/images/refinery/icons/cancel.png') #FFB1B1;
|
|
70
|
+
}
|
|
71
|
+
.flash.flash_notice #flash_close, .flash.flash_error #flash_close {
|
|
72
|
+
text-transform: lowercase;
|
|
73
|
+
}
|
|
74
|
+
.flash.flash_message {
|
|
75
|
+
background: #E0F5E0;
|
|
76
|
+
padding: 9px;
|
|
77
|
+
position: relative;
|
|
78
|
+
margin-bottom: 32px;
|
|
79
|
+
}
|
|
80
|
+
.flash.flash_message h2 {
|
|
81
|
+
margin-top: 12px;
|
|
82
|
+
}
|
|
83
|
+
.flash_message, .flash_message * {
|
|
84
|
+
color: #262719;
|
|
85
|
+
font-size: 14px;
|
|
86
|
+
}
|
|
87
|
+
.flash a, .flash a:hover {
|
|
88
|
+
color: #e20003;
|
|
89
|
+
border-bottom-color: #e20003;
|
|
90
|
+
}
|
|
91
|
+
.flash.flash_error a, .flash.flash_error a:hover {
|
|
92
|
+
display: none;
|
|
93
|
+
} /* FLASH MESSAGES */
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* jQuery UI CSS Framework 1.8.13
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
5
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
6
|
+
* http://jquery.org/license
|
|
7
|
+
*
|
|
8
|
+
* http://docs.jquery.com/UI/Theming/API
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/* Layout helpers
|
|
12
|
+
----------------------------------*/
|
|
13
|
+
.ui-helper-hidden { display: none; }
|
|
14
|
+
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
|
15
|
+
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
|
16
|
+
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
|
17
|
+
.ui-helper-clearfix { display: inline-block; }
|
|
18
|
+
/* required comment for clearfix to work in Opera \*/
|
|
19
|
+
* html .ui-helper-clearfix { height:1%; }
|
|
20
|
+
.ui-helper-clearfix { display:block; }
|
|
21
|
+
/* end clearfix */
|
|
22
|
+
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
/* Interaction Cues
|
|
26
|
+
----------------------------------*/
|
|
27
|
+
.ui-state-disabled { cursor: default !important; }
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
/* Icons
|
|
31
|
+
----------------------------------*/
|
|
32
|
+
|
|
33
|
+
/* states and images */
|
|
34
|
+
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
/* Misc visuals
|
|
38
|
+
----------------------------------*/
|
|
39
|
+
|
|
40
|
+
/* Overlays */
|
|
41
|
+
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
|
42
|
+
.ui-autocomplete{ background:#fff; border:solid #ccc; border-width:0 1px 1px; }
|
|
43
|
+
|
|
44
|
+
/*
|
|
45
|
+
* jQuery UI CSS Framework 1.8.13
|
|
46
|
+
*
|
|
47
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
48
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
49
|
+
* http://jquery.org/license
|
|
50
|
+
*
|
|
51
|
+
* http://docs.jquery.com/UI/Theming/API
|
|
52
|
+
*
|
|
53
|
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS,%20Tahoma,%20Verdana,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=03_highlight_soft.png&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=02_glass.png&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=03_highlight_soft.png&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=08_diagonals_thick.png&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=08_diagonals_thick.png&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=01_flat.png&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px
|
|
54
|
+
*/
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
/* Interaction states
|
|
58
|
+
----------------------------------*/
|
|
59
|
+
|
|
60
|
+
/* Interaction Cues
|
|
61
|
+
----------------------------------*/
|
|
62
|
+
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fed22f; background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x; color: #363636; }
|
|
63
|
+
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
|
64
|
+
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat; color: #ffffff; }
|
|
65
|
+
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
|
|
66
|
+
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
|
|
67
|
+
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
|
68
|
+
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
|
69
|
+
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
|
70
|
+
|
|
71
|
+
/* Icons
|
|
72
|
+
----------------------------------*/
|
|
73
|
+
|
|
74
|
+
/* states and images */
|
|
75
|
+
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
|
|
76
|
+
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
|
|
77
|
+
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
|
|
78
|
+
.ui-state-default .ui-icon { background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
|
79
|
+
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
|
80
|
+
.ui-state-active .ui-icon {background-image: url(images/ui-icons_ef8c08_256x240.png); }
|
|
81
|
+
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_228ef1_256x240.png); }
|
|
82
|
+
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffd27a_256x240.png); }
|
|
83
|
+
|
|
84
|
+
/* positioning */
|
|
85
|
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
|
86
|
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
|
87
|
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
|
88
|
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
|
89
|
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
|
90
|
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
|
91
|
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
|
92
|
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
|
93
|
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
|
94
|
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
|
95
|
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
|
96
|
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
|
97
|
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
|
98
|
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
|
99
|
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
|
100
|
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
|
101
|
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
|
102
|
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
|
103
|
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
|
104
|
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
|
105
|
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
|
106
|
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
|
107
|
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
|
108
|
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
|
109
|
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
|
110
|
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
|
111
|
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
|
112
|
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
|
113
|
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
|
114
|
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
|
115
|
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
|
116
|
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
|
117
|
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
|
118
|
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
|
119
|
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
|
120
|
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
|
121
|
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
|
122
|
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
|
123
|
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
|
124
|
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
|
125
|
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
|
126
|
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
|
127
|
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
|
128
|
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
|
129
|
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
|
130
|
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
|
131
|
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
|
132
|
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
|
133
|
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
|
134
|
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
|
135
|
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
|
136
|
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
|
137
|
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
|
138
|
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
|
139
|
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
|
140
|
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
|
141
|
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
|
142
|
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
|
143
|
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
|
144
|
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
|
145
|
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
|
146
|
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
|
147
|
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
|
148
|
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
|
149
|
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
|
150
|
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
|
151
|
+
.ui-icon-extlink { background-position: -32px -80px; }
|
|
152
|
+
.ui-icon-newwin { background-position: -48px -80px; }
|
|
153
|
+
.ui-icon-refresh { background-position: -64px -80px; }
|
|
154
|
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
|
155
|
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
|
156
|
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
|
157
|
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
|
158
|
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
|
159
|
+
.ui-icon-document { background-position: -32px -96px; }
|
|
160
|
+
.ui-icon-document-b { background-position: -48px -96px; }
|
|
161
|
+
.ui-icon-note { background-position: -64px -96px; }
|
|
162
|
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
|
163
|
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
|
164
|
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
|
165
|
+
.ui-icon-comment { background-position: -128px -96px; }
|
|
166
|
+
.ui-icon-person { background-position: -144px -96px; }
|
|
167
|
+
.ui-icon-print { background-position: -160px -96px; }
|
|
168
|
+
.ui-icon-trash { background-position: -176px -96px; }
|
|
169
|
+
.ui-icon-locked { background-position: -192px -96px; }
|
|
170
|
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
|
171
|
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
|
172
|
+
.ui-icon-tag { background-position: -240px -96px; }
|
|
173
|
+
.ui-icon-home { background-position: 0 -112px; }
|
|
174
|
+
.ui-icon-flag { background-position: -16px -112px; }
|
|
175
|
+
.ui-icon-calendar { background-position: -32px -112px; }
|
|
176
|
+
.ui-icon-cart { background-position: -48px -112px; }
|
|
177
|
+
.ui-icon-pencil { background-position: -64px -112px; }
|
|
178
|
+
.ui-icon-clock { background-position: -80px -112px; }
|
|
179
|
+
.ui-icon-disk { background-position: -96px -112px; }
|
|
180
|
+
.ui-icon-calculator { background-position: -112px -112px; }
|
|
181
|
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
|
182
|
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
|
183
|
+
.ui-icon-search { background-position: -160px -112px; }
|
|
184
|
+
.ui-icon-wrench { background-position: -176px -112px; }
|
|
185
|
+
.ui-icon-gear { background-position: -192px -112px; }
|
|
186
|
+
.ui-icon-heart { background-position: -208px -112px; }
|
|
187
|
+
.ui-icon-star { background-position: -224px -112px; }
|
|
188
|
+
.ui-icon-link { background-position: -240px -112px; }
|
|
189
|
+
.ui-icon-cancel { background-position: 0 -128px; }
|
|
190
|
+
.ui-icon-plus { background-position: -16px -128px; }
|
|
191
|
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
|
192
|
+
.ui-icon-minus { background-position: -48px -128px; }
|
|
193
|
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
|
194
|
+
.ui-icon-close { background-position: -80px -128px; }
|
|
195
|
+
.ui-icon-closethick { background-position: -96px -128px; }
|
|
196
|
+
.ui-icon-key { background-position: -112px -128px; }
|
|
197
|
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
|
198
|
+
.ui-icon-scissors { background-position: -144px -128px; }
|
|
199
|
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
|
200
|
+
.ui-icon-copy { background-position: -176px -128px; }
|
|
201
|
+
.ui-icon-contact { background-position: -192px -128px; }
|
|
202
|
+
.ui-icon-image { background-position: -208px -128px; }
|
|
203
|
+
.ui-icon-video { background-position: -224px -128px; }
|
|
204
|
+
.ui-icon-script { background-position: -240px -128px; }
|
|
205
|
+
.ui-icon-alert { background-position: 0 -144px; }
|
|
206
|
+
.ui-icon-info { background-position: -16px -144px; }
|
|
207
|
+
.ui-icon-notice { background-position: -32px -144px; }
|
|
208
|
+
.ui-icon-help { background-position: -48px -144px; }
|
|
209
|
+
.ui-icon-check { background-position: -64px -144px; }
|
|
210
|
+
.ui-icon-bullet { background-position: -80px -144px; }
|
|
211
|
+
.ui-icon-radio-off { background-position: -96px -144px; }
|
|
212
|
+
.ui-icon-radio-on { background-position: -112px -144px; }
|
|
213
|
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
|
214
|
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
|
215
|
+
.ui-icon-play { background-position: 0 -160px; }
|
|
216
|
+
.ui-icon-pause { background-position: -16px -160px; }
|
|
217
|
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
|
218
|
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
|
219
|
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
|
220
|
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
|
221
|
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
|
222
|
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
|
223
|
+
.ui-icon-stop { background-position: -96px -160px; }
|
|
224
|
+
.ui-icon-eject { background-position: -112px -160px; }
|
|
225
|
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
|
226
|
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
|
227
|
+
.ui-icon-power { background-position: 0 -176px; }
|
|
228
|
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
|
229
|
+
.ui-icon-signal { background-position: -32px -176px; }
|
|
230
|
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
|
231
|
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
|
232
|
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
|
233
|
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
|
234
|
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
|
235
|
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
|
236
|
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
|
237
|
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
|
238
|
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
|
239
|
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
|
240
|
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
|
241
|
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
|
242
|
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
|
243
|
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
|
244
|
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
|
245
|
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
|
246
|
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
|
247
|
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
|
248
|
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
|
249
|
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
|
250
|
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
|
251
|
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
|
252
|
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
|
253
|
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
|
254
|
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
|
255
|
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
|
256
|
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
|
257
|
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
|
258
|
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
|
259
|
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
/* Misc visuals
|
|
263
|
+
----------------------------------*/
|
|
264
|
+
|
|
265
|
+
/* Corner radius */
|
|
266
|
+
.ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
|
|
267
|
+
.ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
|
|
268
|
+
.ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
|
|
269
|
+
.ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
|
|
270
|
+
.ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
|
|
271
|
+
.ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
|
|
272
|
+
.ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
|
|
273
|
+
.ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
|
|
274
|
+
|
|
275
|
+
/* Overlays */
|
|
276
|
+
.ui-widget-overlay { background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat; opacity: .50;filter:Alpha(Opacity=50); }
|
|
277
|
+
.ui-widget-shadow { margin: -5px 0 0 -5px; padding: 5px; background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x; opacity: .20;filter:Alpha(Opacity=20); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }/*
|
|
278
|
+
* jQuery UI Autocomplete 1.8.13
|
|
279
|
+
*
|
|
280
|
+
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
|
281
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
282
|
+
* http://jquery.org/license
|
|
283
|
+
*
|
|
284
|
+
* http://docs.jquery.com/UI/Autocomplete#theming
|
|
285
|
+
*/
|
|
286
|
+
.ui-autocomplete { position: absolute; cursor: default; }
|
|
287
|
+
|
|
288
|
+
/* workarounds */
|
|
289
|
+
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
|
290
|
+
|
|
291
|
+
/*
|
|
292
|
+
* jQuery UI Menu 1.8.13
|
|
293
|
+
*
|
|
294
|
+
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
|
295
|
+
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
296
|
+
* http://jquery.org/license
|
|
297
|
+
*
|
|
298
|
+
* http://docs.jquery.com/UI/Menu#theming
|
|
299
|
+
*/
|
|
300
|
+
.ui-menu {
|
|
301
|
+
list-style:none;
|
|
302
|
+
padding: 2px;
|
|
303
|
+
margin: 0;
|
|
304
|
+
display:block;
|
|
305
|
+
float: left;
|
|
306
|
+
}
|
|
307
|
+
.ui-menu .ui-menu {
|
|
308
|
+
margin-top: -3px;
|
|
309
|
+
}
|
|
310
|
+
.ui-menu .ui-menu-item {
|
|
311
|
+
margin:0;
|
|
312
|
+
padding: 0;
|
|
313
|
+
zoom: 1;
|
|
314
|
+
float: left;
|
|
315
|
+
clear: left;
|
|
316
|
+
width: 100%;
|
|
317
|
+
}
|
|
318
|
+
.ui-menu .ui-menu-item a {
|
|
319
|
+
text-decoration:none;
|
|
320
|
+
display:block;
|
|
321
|
+
padding:.2em .4em;
|
|
322
|
+
line-height:1.5;
|
|
323
|
+
zoom:1;
|
|
324
|
+
}
|
|
325
|
+
.ui-menu .ui-menu-item a.ui-state-hover,
|
|
326
|
+
.ui-menu .ui-menu-item a.ui-state-active {
|
|
327
|
+
font-weight: normal;
|
|
328
|
+
margin: -1px;
|
|
329
|
+
}
|
|
330
|
+
|