community_engine 2.3.2 → 3.0.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.
- checksums.yaml +13 -5
- data/.travis.yml +5 -4
- data/CHANGELOG +43 -5
- data/Gemfile +1 -16
- data/README.markdown +22 -19
- data/UPGRADING.markdown +10 -0
- data/about.yml +1 -1
- data/app/assets/javascripts/community_engine.js +187 -18
- data/app/assets/javascripts/cropper.js +86 -565
- data/app/assets/javascripts/forum.js +26 -71
- data/app/assets/javascripts/jquery.migrate.js +521 -0
- data/app/assets/stylesheets/_colors.css.scss +100 -0
- data/app/assets/stylesheets/_font.css.scss +17 -0
- data/app/assets/stylesheets/_forms.css.scss +20 -0
- data/app/assets/stylesheets/_forum.css.scss +0 -0
- data/app/assets/stylesheets/_grid.css.scss +7 -0
- data/app/assets/stylesheets/_layers.css.scss +7 -0
- data/app/assets/stylesheets/_layout.css.scss +28 -0
- data/app/assets/stylesheets/community_engine.css.scss +18 -0
- data/app/assets/stylesheets/cropper.css +6 -182
- data/app/controllers/activities_controller.rb +10 -10
- data/app/controllers/admin_controller.rb +23 -23
- data/app/controllers/ads_controller.rb +16 -5
- data/app/controllers/albums_controller.rb +11 -5
- data/app/controllers/base_controller.rb +5 -8
- data/app/controllers/categories_controller.rb +31 -31
- data/app/controllers/clippings_controller.rb +18 -12
- data/app/controllers/comments_controller.rb +17 -8
- data/app/controllers/events_controller.rb +25 -21
- data/app/controllers/favorites_controller.rb +12 -12
- data/app/controllers/forums_controller.rb +20 -9
- data/app/controllers/friendships_controller.rb +41 -48
- data/app/controllers/homepage_features_controller.rb +11 -5
- data/app/controllers/invitations_controller.rb +15 -9
- data/app/controllers/messages_controller.rb +25 -19
- data/app/controllers/metro_areas_controller.rb +9 -3
- data/app/controllers/moderators_controller.rb +1 -1
- data/app/controllers/monitorships_controller.rb +2 -2
- data/app/controllers/pages_controller.rb +16 -4
- data/app/controllers/password_resets_controller.rb +0 -1
- data/app/controllers/photos_controller.rb +32 -30
- data/app/controllers/posts_controller.rb +33 -17
- data/app/controllers/rsvps_controller.rb +8 -4
- data/app/controllers/sb_posts_controller.rb +22 -18
- data/app/controllers/sessions_controller.rb +2 -1
- data/app/controllers/sitemap_controller.rb +8 -8
- data/app/controllers/statistics_controller.rb +9 -8
- data/app/controllers/tags_controller.rb +26 -24
- data/app/controllers/topics_controller.rb +10 -6
- data/app/controllers/users_controller.rb +63 -34
- data/app/helpers/base_helper.rb +119 -29
- data/app/helpers/friendships_helper.rb +3 -3
- data/app/helpers/posts_helper.rb +5 -7
- data/app/models/acts_as_taggable_on/tag.rb +12 -13
- data/app/models/ad.rb +2 -5
- data/app/models/album.rb +0 -2
- data/app/models/category.rb +6 -7
- data/app/models/clipping.rb +2 -5
- data/app/models/clipping_image.rb +5 -5
- data/app/models/comment.rb +4 -5
- data/app/models/country.rb +2 -4
- data/app/models/event.rb +1 -2
- data/app/models/favorite.rb +5 -10
- data/app/models/forum.rb +0 -2
- data/app/models/friendship.rb +3 -5
- data/app/models/friendship_status.rb +0 -2
- data/app/models/homepage_feature.rb +4 -6
- data/app/models/invitation.rb +6 -8
- data/app/models/message.rb +25 -26
- data/app/models/message_thread.rb +1 -1
- data/app/models/metro_area.rb +0 -2
- data/app/models/page.rb +0 -2
- data/app/models/photo.rb +8 -8
- data/app/models/poll.rb +7 -9
- data/app/models/post.rb +11 -15
- data/app/models/role.rb +1 -2
- data/app/models/rsvp.rb +0 -3
- data/app/models/sb_post.rb +14 -9
- data/app/models/state.rb +0 -2
- data/app/models/topic.rb +5 -6
- data/app/models/user.rb +50 -63
- data/app/models/vote.rb +1 -1
- data/app/views/activities/_activity.html.haml +9 -9
- data/app/views/activities/destroy.js.erb +1 -0
- data/app/views/activities/index.html.haml +13 -13
- data/app/views/activities/network.html.haml +10 -13
- data/app/views/admin/comments.html.haml +48 -70
- data/app/views/admin/events.html.haml +20 -27
- data/app/views/admin/messages.html.haml +2 -3
- data/app/views/admin/update.js.erb +1 -0
- data/app/views/admin/users.html.haml +51 -66
- data/app/views/ads/_form.html.haml +21 -0
- data/app/views/ads/edit.html.haml +6 -46
- data/app/views/ads/index.html.haml +25 -39
- data/app/views/ads/new.html.haml +4 -43
- data/app/views/ads/show.html.haml +18 -35
- data/app/views/albums/_form.html.haml +17 -12
- data/app/views/albums/edit.html.haml +12 -14
- data/app/views/albums/new.html.haml +8 -13
- data/app/views/albums/show.html.haml +25 -32
- data/app/views/base/_homepage_banner_message.html.haml +5 -19
- data/app/views/base/advertise.html.haml +5 -8
- data/app/views/base/site_index.html.haml +25 -27
- data/app/views/categories/_form.html.haml +8 -0
- data/app/views/categories/_menu_item.html.haml +13 -0
- data/app/views/categories/_tips.html.haml +2 -2
- data/app/views/categories/edit.html.haml +3 -33
- data/app/views/categories/index.html.haml +18 -28
- data/app/views/categories/new.html.haml +3 -8
- data/app/views/categories/show.html.haml +33 -36
- data/app/views/clippings/_clipping.html.haml +10 -17
- data/app/views/clippings/_favorite.html.haml +14 -0
- data/app/views/clippings/_form.html.haml +15 -0
- data/app/views/clippings/_images.html.haml +1 -1
- data/app/views/clippings/_menu_item.html.haml +6 -0
- data/app/views/clippings/edit.html.haml +12 -23
- data/app/views/clippings/index.html.haml +29 -30
- data/app/views/clippings/load_images_from_uri.js.erb +1 -0
- data/app/views/clippings/new.html.haml +9 -26
- data/app/views/clippings/new_clipping.html.haml +30 -77
- data/app/views/clippings/show.html.haml +48 -53
- data/app/views/clippings/site_index.html.haml +19 -32
- data/app/views/comments/_comment.html.haml +40 -40
- data/app/views/comments/_comment_form.html.haml +22 -46
- data/app/views/comments/_edit_form.html.haml +13 -28
- data/app/views/comments/create.js.erb +25 -0
- data/app/views/comments/destroy.js.erb +3 -0
- data/app/views/comments/edit.js.erb +11 -0
- data/app/views/comments/index.html.haml +12 -22
- data/app/views/comments/update.js.erb +14 -0
- data/app/views/events/_event.html.haml +26 -24
- data/app/views/events/_form.html.haml +18 -0
- data/app/views/events/_menu_item.html.haml +6 -0
- data/app/views/events/_subscribe.html.haml +1 -1
- data/app/views/events/edit.html.haml +7 -32
- data/app/views/events/index.html.haml +11 -19
- data/app/views/events/new.html.haml +2 -31
- data/app/views/events/show.html.haml +54 -24
- data/app/views/favorites/create.js.erb +10 -0
- data/app/views/favorites/destroy.js.erb +6 -0
- data/app/views/favorites/index.html.haml +6 -8
- data/app/views/forums/_form.html.haml +10 -20
- data/app/views/forums/_menu_item.html.haml +6 -0
- data/app/views/forums/edit.html.haml +8 -10
- data/app/views/forums/index.html.haml +56 -64
- data/app/views/forums/new.html.haml +5 -8
- data/app/views/forums/show.html.haml +65 -72
- data/app/views/friendships/_friendship.html.haml +14 -16
- data/app/views/friendships/accepted.html.haml +7 -11
- data/app/views/friendships/create.js.haml +1 -0
- data/app/views/friendships/denied.html.haml +4 -8
- data/app/views/friendships/pending.html.haml +4 -6
- data/app/views/friendships/show.html.haml +10 -11
- data/app/views/homepage_features/_form.html.haml +6 -0
- data/app/views/homepage_features/edit.html.haml +5 -30
- data/app/views/homepage_features/index.html.haml +22 -28
- data/app/views/homepage_features/new.html.haml +2 -30
- data/app/views/homepage_features/show.html.haml +27 -29
- data/app/views/invitations/index.html.haml +8 -0
- data/app/views/invitations/new.html.haml +21 -30
- data/app/views/kaminari/bootstrap/_first_page.html.erb +13 -0
- data/app/views/kaminari/bootstrap/_gap.html.erb +8 -0
- data/app/views/kaminari/bootstrap/_last_page.html.erb +13 -0
- data/app/views/kaminari/bootstrap/_next_page.html.erb +13 -0
- data/app/views/kaminari/bootstrap/_page.html.erb +12 -0
- data/app/views/kaminari/bootstrap/_paginator.html.erb +25 -0
- data/app/views/kaminari/bootstrap/_prev_page.html.erb +13 -0
- data/app/views/layouts/application.html.haml +26 -37
- data/app/views/messages/_form.html.haml +6 -12
- data/app/views/messages/_inbox.html.haml +34 -39
- data/app/views/messages/_menu_item.html.haml +11 -0
- data/app/views/messages/_sent.html.haml +22 -33
- data/app/views/messages/_sidebar_nav.html.haml +12 -9
- data/app/views/messages/index.html.haml +2 -2
- data/app/views/messages/new.html.haml +2 -9
- data/app/views/messages/show.html.haml +28 -36
- data/app/views/metro_areas/_form.html.haml +6 -0
- data/app/views/metro_areas/edit.html.haml +6 -14
- data/app/views/metro_areas/index.html.haml +19 -26
- data/app/views/metro_areas/new.html.haml +4 -14
- data/app/views/metro_areas/show.html.haml +13 -21
- data/app/views/moderators/_toggle.html.haml +6 -0
- data/app/views/moderators/create.js.erb +5 -0
- data/app/views/moderators/destroy.js.erb +1 -0
- data/app/views/monitorships/create.js.erb +1 -0
- data/app/views/monitorships/destroy.js.erb +1 -0
- data/app/views/pages/_form.html.haml +16 -23
- data/app/views/pages/edit.html.haml +2 -14
- data/app/views/pages/index.html.haml +32 -32
- data/app/views/pages/new.html.haml +5 -12
- data/app/views/pages/show.html.haml +4 -8
- data/app/views/password_resets/edit.html.haml +6 -14
- data/app/views/password_resets/new.html.haml +7 -11
- data/app/views/photo_manager/index.html.haml +45 -43
- data/app/views/photos/_form.html.haml +24 -0
- data/app/views/photos/_manage_photos.html.haml +14 -6
- data/app/views/photos/_show_image_list.html.haml +2 -2
- data/app/views/photos/create.js.erb +1 -0
- data/app/views/photos/edit.html.haml +10 -38
- data/app/views/photos/index.html.haml +20 -20
- data/app/views/photos/manage_photos.js.erb +5 -0
- data/app/views/photos/new.html.haml +11 -49
- data/app/views/photos/recent.html.haml +6 -6
- data/app/views/photos/show.html.haml +48 -52
- data/app/views/polls/_edit.html.haml +6 -10
- data/app/views/polls/_excerpt.html.haml +3 -4
- data/app/views/polls/_new.html.haml +10 -9
- data/app/views/polls/_poll_ui.html.haml +30 -34
- data/app/views/posts/_author_profile.html.haml +12 -11
- data/app/views/posts/_favorited_post.html.haml +8 -10
- data/app/views/posts/_form.html.haml +40 -0
- data/app/views/posts/_menu_item.html.haml +6 -0
- data/app/views/posts/_post.html.haml +27 -24
- data/app/views/posts/_send_to_friend.html.haml +26 -0
- data/app/views/posts/edit.html.haml +11 -48
- data/app/views/posts/featured.html.haml +7 -12
- data/app/views/posts/index.html.haml +14 -18
- data/app/views/posts/manage.html.haml +44 -59
- data/app/views/posts/new.html.haml +9 -64
- data/app/views/posts/popular.html.haml +25 -30
- data/app/views/posts/preview.html.haml +27 -26
- data/app/views/posts/recent.html.haml +20 -27
- data/app/views/posts/send_to_friend.js.erb +3 -0
- data/app/views/posts/show.html.haml +67 -76
- data/app/views/rsvps/_form.html.haml +3 -0
- data/app/views/rsvps/edit.html.haml +3 -9
- data/app/views/rsvps/new.html.haml +3 -9
- data/app/views/sb_posts/_dummy_forum_post.html.haml +13 -0
- data/app/views/sb_posts/_edit.html.haml +6 -0
- data/app/views/sb_posts/_edit_script.js.erb +14 -0
- data/app/views/sb_posts/_reply_form.html.haml +14 -35
- data/app/views/sb_posts/_reply_script.js.erb +13 -0
- data/app/views/sb_posts/_sb_post.html.haml +31 -33
- data/app/views/sb_posts/create.js.erb +30 -0
- data/app/views/sb_posts/destroy.js.erb +2 -0
- data/app/views/sb_posts/edit.html.erb +4 -4
- data/app/views/sb_posts/edit.js.erb +14 -0
- data/app/views/sb_posts/index.html.haml +3 -16
- data/app/views/sb_posts/monitored.html.erb +3 -9
- data/app/views/sb_posts/update.js.erb +11 -0
- data/app/views/sessions/_menu_item.html.haml +28 -0
- data/app/views/sessions/new.html.haml +19 -24
- data/app/views/shared/_add_friend_link.html.haml +9 -0
- data/app/views/shared/_admin_nav.html.haml +6 -8
- data/app/views/shared/_contact.html.haml +1 -1
- data/app/views/shared/_end_javascript.html.haml +4 -4
- data/app/views/shared/_explore.html.haml +7 -6
- data/app/views/shared/_footer_content.html.haml +12 -10
- data/app/views/shared/_footer_links.html.haml +18 -0
- data/app/views/shared/_friend_link.html.haml +25 -0
- data/app/views/shared/_header.html.haml +22 -42
- data/app/views/shared/_jumbotron.html.haml +3 -0
- data/app/views/shared/_load_tinymce.js.erb +15 -0
- data/app/views/shared/_location_chooser.html.haml +26 -17
- data/app/views/shared/_login_sidebar.html.haml +6 -5
- data/app/views/shared/_messages.html.haml +6 -8
- data/app/views/shared/_scripts_and_styles.html.haml +1 -2
- data/app/views/shared/_sidebar.html.haml +1 -0
- data/app/views/shared/_tag_auto_complete.html.haml +19 -0
- data/app/views/shared/_widget.html.haml +3 -0
- data/app/views/sitemap/index.html.haml +15 -20
- data/app/views/statistics/index.html.haml +32 -40
- data/app/views/tags/edit.html.haml +12 -19
- data/app/views/tags/index.html.haml +16 -25
- data/app/views/tags/manage.html.haml +24 -33
- data/app/views/tags/show.html.haml +52 -58
- data/app/views/topics/_form.html.haml +23 -25
- data/app/views/topics/_recent_topics_sidebar.haml +1 -1
- data/app/views/topics/edit.html.haml +7 -9
- data/app/views/topics/new.html.haml +6 -21
- data/app/views/topics/show.html.haml +48 -106
- data/app/views/user_notifier/follow_up_comment_notice.text.erb +1 -1
- data/app/views/user_notifier/message_notification.text.erb +1 -1
- data/app/views/user_notifier/new_forum_post_notice.text.erb +1 -1
- data/app/views/users/_dashboard_nav.html.haml +36 -39
- data/app/views/users/_menu_item.html.haml +6 -0
- data/app/views/users/_omniauth_connect.html.haml +4 -4
- data/app/views/users/_profile_completeness.html.haml +3 -3
- data/app/views/users/_profile_user_info_sidebar.html.haml +40 -43
- data/app/views/users/_search_options.html.haml +9 -7
- data/app/views/users/_sidebar_user.html.haml +1 -1
- data/app/views/users/_user.html.haml +27 -28
- data/app/views/users/crop_profile_photo.html.haml +30 -37
- data/app/views/users/dashboard.html.haml +37 -41
- data/app/views/users/edit.html.haml +53 -71
- data/app/views/users/edit_account.html.haml +44 -64
- data/app/views/users/forgot_username.html.haml +6 -12
- data/app/views/users/index.html.haml +4 -14
- data/app/views/users/invite.html.haml +14 -25
- data/app/views/users/new.html.haml +27 -48
- data/app/views/users/resend_activation.html.haml +7 -12
- data/app/views/users/show.html.haml +88 -90
- data/app/views/users/signup_completed.html.haml +7 -7
- data/app/views/users/statistics.html.haml +17 -18
- data/app/views/users/update.js.erb +1 -0
- data/app/views/users/upload_profile_photo.html.haml +10 -15
- data/app/views/users/welcome_about.html.haml +54 -61
- data/app/views/users/welcome_invite.html.haml +16 -25
- data/app/views/users/welcome_photo.html.haml +18 -27
- data/app/views/votes/create.js.erb +5 -0
- data/community_engine.gemspec +49 -41
- data/config/application_config.rb +13 -16
- data/config/initializers/mce_options.rb +9 -32
- data/config/initializers/recaptcha_constants.rb +2 -2
- data/config/locales/de-DE.yml +1 -17
- data/config/locales/en.yml +18 -32
- data/config/locales/es-AR.yml +2 -14
- data/config/locales/es-ES.yml +0 -6
- data/config/locales/es-MX.yml +1 -9
- data/config/locales/fr-FR.yml +3 -17
- data/config/locales/ja-JP.yml +2 -18
- data/config/locales/ru-RU.yml +3 -21
- data/config/locales/sr-CP.yml +0 -4
- data/config/locales/sv-SE.yml +3 -20
- data/config/routes.rb +37 -42
- data/db/migrate/016_add_metro_areas.rb +2 -2
- data/db/migrate/039_create_activities_table.rb +2 -2
- data/db/migrate/056_create_roles.rb +8 -6
- data/db/migrate/069_create_pages.rb +3 -3
- data/db/migrate/081_upgrade_to_friendly_id_5x.rb +25 -0
- data/db/migrate/082_upgrade_to_acts_as_commentable_4x.rb +29 -0
- data/lib/activity_tracker.rb +3 -0
- data/{vendor/plugins/activity_tracker/lib → lib/activity_tracker}/activity.rb +6 -6
- data/{vendor/plugins/activity_tracker/lib → lib/activity_tracker}/activity_tracker.rb +0 -0
- data/{vendor/plugins/acts_as_publishable/init.rb → lib/acts_as_publishable.rb} +1 -1
- data/{vendor/plugins/acts_as_publishable/lib → lib/acts_as_publishable}/acts_as_publishable.rb +3 -3
- data/lib/community_engine.rb +31 -9
- data/lib/community_engine/engine.rb +17 -1
- data/lib/community_engine/engines_extensions.rb +1 -3
- data/lib/community_engine/version.rb +3 -3
- data/{config/initializers → lib/paperclip_processors}/cropper.rb +3 -3
- data/lib/resource_feeder.rb +3 -0
- data/{vendor/plugins/resource_feeder/lib → lib}/resource_feeder/atom.rb +0 -0
- data/{vendor/plugins/resource_feeder/lib → lib}/resource_feeder/rss.rb +0 -0
- data/{vendor/plugins/white_list/init.rb → lib/white_list.rb} +1 -1
- data/{vendor/plugins/white_list/lib → lib/white_list}/white_list_helper.rb +0 -0
- data/test/fixtures/messages.yml +2 -2
- data/test/functional/admin_controller_test.rb +11 -11
- data/test/functional/ads_controller_test.rb +11 -11
- data/test/functional/albums_controller_test.rb +4 -4
- data/test/functional/categories_controller_test.rb +4 -4
- data/test/functional/clippings_controller_test.rb +4 -4
- data/test/functional/comments_controller_test.rb +20 -16
- data/test/functional/events_controller_test.rb +6 -6
- data/test/functional/forums_controller_test.rb +8 -8
- data/test/functional/friendships_controller_test.rb +13 -18
- data/test/functional/homepage_features_controller_test.rb +5 -5
- data/test/functional/messages_controller_test.rb +6 -2
- data/test/functional/metro_areas_controller_test.rb +7 -7
- data/test/functional/moderators_controller_test.rb +1 -1
- data/test/functional/pages_controller_test.rb +2 -2
- data/test/functional/password_reset_controller_test.rb +2 -2
- data/test/functional/photos_controller_test.rb +16 -15
- data/test/functional/posts_controller_test.rb +4 -4
- data/test/functional/rsvps_controller_test.rb +6 -6
- data/test/functional/sb_posts_controller_test.rb +53 -50
- data/test/functional/sessions_controller_test.rb +4 -1
- data/test/functional/tags_controller_test.rb +1 -1
- data/test/functional/topics_controller_test.rb +10 -10
- data/test/functional/users_controller_test.rb +32 -19
- data/test/functional/votes_controller_test.rb +1 -1
- data/test/test_helper.rb +3 -1
- data/test/testapp/config/application.rb +1 -9
- data/test/testapp/config/environments/development.rb +1 -2
- data/test/testapp/config/environments/production.rb +2 -0
- data/test/testapp/config/environments/test.rb +1 -2
- data/test/testapp/config/initializers/omniauth.rb +3 -3
- data/test/testapp/config/initializers/secret_token.rb +1 -0
- data/test/testapp/db/schema.rb +143 -152
- data/test/unit/category_test.rb +2 -2
- data/test/unit/comment_test.rb +64 -53
- data/test/unit/event_test.rb +4 -4
- data/test/unit/forum_test.rb +1 -1
- data/test/unit/message_test.rb +7 -1
- data/test/unit/page_test.rb +2 -2
- data/test/unit/post_test.rb +47 -47
- data/test/unit/sb_post_test.rb +24 -20
- data/test/unit/topic_test.rb +7 -6
- data/test/unit/user_test.rb +75 -52
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/javascripts/jcrop/jquery.Jcrop.js +1699 -0
- data/vendor/assets/javascripts/jcrop/jquery.color.js +661 -0
- data/vendor/assets/javascripts/tag-it/tag-it.js +597 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/assets/stylesheets/jcrop/Jcrop.gif +0 -0
- data/vendor/assets/stylesheets/jcrop/jquery.Jcrop.min.css +28 -0
- data/vendor/assets/stylesheets/tag-it/tag-it.css +69 -0
- data/vendor/assets/stylesheets/tag-it/tagit.ui-zendesk.css +107 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/README +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/Rakefile +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/generators/publishing/publishing_generator.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/generators/publishing/templates/migration.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/install.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/acts_as_publishable/test/acts_as_publishable_test.rb +0 -0
- data/vendor/{plugins/activity_tracker → converted2.3plugins_to_lib_leftovers/acts_as_publishable}/uninstall.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/README +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/Rakefile +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/test/atom_feed_test.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/test/rss_feed_test.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/resource_feeder/test/test_helper.rb +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/white_list/README +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/white_list/Rakefile +0 -0
- data/vendor/{plugins → converted2.3plugins_to_lib_leftovers}/white_list/test/white_list_test.rb +0 -0
- metadata +348 -302
- data/app/assets/images/bg_h6btn.gif +0 -0
- data/app/assets/images/bg_navbar.gif +0 -0
- data/app/assets/images/clearbits/bg_rounded.gif +0 -0
- data/app/assets/images/clearbits/comment.gif +0 -0
- data/app/assets/images/clearbits/lock.gif +0 -0
- data/app/assets/images/clearbits/smile.gif +0 -0
- data/app/assets/images/close.gif +0 -0
- data/app/assets/images/cropper/marqueeHoriz.gif +0 -0
- data/app/assets/images/cropper/marqueeVert.gif +0 -0
- data/app/assets/images/feed.png +0 -0
- data/app/assets/images/icons/31.png +0 -0
- data/app/assets/images/icons/52.png +0 -0
- data/app/assets/images/icons/accept.png +0 -0
- data/app/assets/images/icons/activity_default.png +0 -0
- data/app/assets/images/icons/add.png +0 -0
- data/app/assets/images/icons/book.png +0 -0
- data/app/assets/images/icons/bullet_arrow_down.png +0 -0
- data/app/assets/images/icons/bullet_arrow_down_50.png +0 -0
- data/app/assets/images/icons/clipping.png +0 -0
- data/app/assets/images/icons/comment.png +0 -0
- data/app/assets/images/icons/comments.png +0 -0
- data/app/assets/images/icons/date.png +0 -0
- data/app/assets/images/icons/delete.png +0 -0
- data/app/assets/images/icons/email.png +0 -0
- data/app/assets/images/icons/email_edit.png +0 -0
- data/app/assets/images/icons/email_go.png +0 -0
- data/app/assets/images/icons/email_open.png +0 -0
- data/app/assets/images/icons/group_go.png +0 -0
- data/app/assets/images/icons/heart.png +0 -0
- data/app/assets/images/icons/heart_add.png +0 -0
- data/app/assets/images/icons/heart_off.png +0 -0
- data/app/assets/images/icons/page_white.png +0 -0
- data/app/assets/images/icons/page_white_magnify.png +0 -0
- data/app/assets/images/icons/picture.png +0 -0
- data/app/assets/images/icons/poll.png +0 -0
- data/app/assets/images/icons/post.png +0 -0
- data/app/assets/images/icons/printer.png +0 -0
- data/app/assets/images/icons/rss.png +0 -0
- data/app/assets/images/icons/slides.png +0 -0
- data/app/assets/images/icons/tag_blue.png +0 -0
- data/app/assets/images/icons/user.png +0 -0
- data/app/assets/images/icons/user_add.png +0 -0
- data/app/assets/images/icons/user_edit.png +0 -0
- data/app/assets/images/icons/user_go.png +0 -0
- data/app/assets/images/icons/vote.png +0 -0
- data/app/assets/images/icons/world.png +0 -0
- data/app/assets/images/icons/wrench.png +0 -0
- data/app/assets/images/logo.gif +0 -0
- data/app/assets/images/reply_background.png +0 -0
- data/app/assets/images/search.gif +0 -0
- data/app/assets/images/thumb.gif +0 -0
- data/app/assets/javascripts/builder.js +0 -136
- data/app/assets/javascripts/calendarview.js +0 -839
- data/app/assets/javascripts/lightbox.js +0 -151
- data/app/assets/javascripts/prototip-min.js +0 -27
- data/app/assets/javascripts/rails.js +0 -202
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/css/advimage.css +0 -84
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/editor_plugin.js +0 -52
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/editor_plugin_src.js +0 -45
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/image.htm +0 -180
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/img/sample.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/js/functions.js +0 -508
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/langs/en.js +0 -3
- data/app/assets/javascripts/tinymce/plugins/curblyadvimage/langs/en_dlg.js +0 -43
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/editor_plugin.js +0 -8
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/editor_plugin_src.js +0 -1001
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress10.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress11.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress12.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress2.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress3.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress4.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress5.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress6.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress7.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress8.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress9.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/restore.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/restore.png +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/langs/da.js +0 -5
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/langs/en.js +0 -5
- data/app/assets/stylesheets/community_engine.css +0 -6
- data/app/assets/stylesheets/forum.css +0 -605
- data/app/assets/stylesheets/prototip.css +0 -73
- data/app/assets/stylesheets/reset-fonts-grids.css +0 -8
- data/app/assets/stylesheets/screen.css +0 -977
- data/app/helpers/monitorships_helper.rb +0 -2
- data/app/views/activities/_icon.html.haml +0 -14
- data/app/views/activities/destroy.js.rjs +0 -1
- data/app/views/clippings/_meta.html.haml +0 -26
- data/app/views/clippings/load_images_from_uri.js.rjs +0 -1
- data/app/views/comments/create.js.rjs +0 -20
- data/app/views/comments/edit.js.rjs +0 -7
- data/app/views/comments/update.js.rjs +0 -9
- data/app/views/favorites/create.js.rjs +0 -17
- data/app/views/favorites/destroy.js.rjs +0 -14
- data/app/views/favorites/show.html.haml +0 -13
- data/app/views/friendships/_friendships.html.erb +0 -14
- data/app/views/friendships/index.html.erb +0 -3
- data/app/views/friendships/index.xml.builder +0 -29
- data/app/views/invitations/index.html.erb +0 -16
- data/app/views/moderators/_toggle.html.erb +0 -14
- data/app/views/moderators/create.js.rjs +0 -5
- data/app/views/moderators/destroy.js.rjs +0 -1
- data/app/views/monitorships/create.js.rjs +0 -4
- data/app/views/monitorships/destroy.js.rjs +0 -4
- data/app/views/photos/manage_photos.js.rjs +0 -5
- data/app/views/polls/_polls_sidebar.html.haml +0 -8
- data/app/views/posts/_send_to_friend.html.erb +0 -29
- data/app/views/sb_posts/_dummy_forum_post.html.erb +0 -13
- data/app/views/sb_posts/_edit.html.erb +0 -31
- data/app/views/sb_posts/create.js.rjs +0 -16
- data/app/views/sb_posts/edit.js.rjs +0 -6
- data/app/views/sb_posts/update.js.rjs +0 -5
- data/app/views/shared/_user_menu.html.haml +0 -21
- data/app/views/votes/create.js.rjs +0 -6
- data/db/migrate/090_add_comment_role.rb +0 -15
- data/vendor/plugins/activity_tracker/README +0 -4
- data/vendor/plugins/activity_tracker/Rakefile +0 -22
- data/vendor/plugins/activity_tracker/generators/activity_migration/USAGE +0 -13
- data/vendor/plugins/activity_tracker/generators/activity_migration/activity_migration_generator.rb +0 -11
- data/vendor/plugins/activity_tracker/generators/activity_migration/templates/migration.rb +0 -17
- data/vendor/plugins/activity_tracker/init.rb +0 -1
- data/vendor/plugins/activity_tracker/install.rb +0 -1
- data/vendor/plugins/activity_tracker/tasks/activity_tracker_tasks.rake +0 -4
- data/vendor/plugins/activity_tracker/test/abstract_unit.rb +0 -47
- data/vendor/plugins/activity_tracker/test/activity_tracker_test.rb +0 -48
- data/vendor/plugins/activity_tracker/test/database.yml +0 -18
- data/vendor/plugins/activity_tracker/test/debug.log +0 -3329
- data/vendor/plugins/activity_tracker/test/fixtures/test_post.rb +0 -5
- data/vendor/plugins/activity_tracker/test/fixtures/test_posts.yml +0 -3
- data/vendor/plugins/activity_tracker/test/fixtures/test_user.rb +0 -4
- data/vendor/plugins/activity_tracker/test/fixtures/test_users.yml +0 -6
- data/vendor/plugins/activity_tracker/test/schema.rb +0 -21
- data/vendor/plugins/acts_as_list/README +0 -23
- data/vendor/plugins/acts_as_list/init.rb +0 -3
- data/vendor/plugins/acts_as_list/lib/active_record/acts/list.rb +0 -256
- data/vendor/plugins/acts_as_list/test/list_test.rb +0 -332
- data/vendor/plugins/acts_as_publishable/uninstall.rb +0 -1
- data/vendor/plugins/auto_complete/README +0 -23
- data/vendor/plugins/auto_complete/Rakefile +0 -22
- data/vendor/plugins/auto_complete/init.rb +0 -2
- data/vendor/plugins/auto_complete/lib/auto_complete.rb +0 -47
- data/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +0 -143
- data/vendor/plugins/auto_complete/test/auto_complete_test.rb +0 -67
- data/vendor/plugins/enumerations_mixin/.gitignore +0 -1
- data/vendor/plugins/enumerations_mixin/Gemfile +0 -1
- data/vendor/plugins/enumerations_mixin/LICENSE +0 -20
- data/vendor/plugins/enumerations_mixin/README.md +0 -120
- data/vendor/plugins/enumerations_mixin/README_ENUMERATIONS +0 -163
- data/vendor/plugins/enumerations_mixin/Rakefile +0 -14
- data/vendor/plugins/enumerations_mixin/VERSION +0 -1
- data/vendor/plugins/enumerations_mixin/enumerations_mixin.gemspec +0 -44
- data/vendor/plugins/enumerations_mixin/examples/virtual_enumerations_sample.rb +0 -76
- data/vendor/plugins/enumerations_mixin/init.rb +0 -21
- data/vendor/plugins/enumerations_mixin/lib/active_record/acts/enumerated.rb +0 -180
- data/vendor/plugins/enumerations_mixin/lib/active_record/aggregations/has_enumerated.rb +0 -60
- data/vendor/plugins/enumerations_mixin/lib/active_record/virtual_enumerations.rb +0 -68
- data/vendor/plugins/enumerations_mixin/lib/enumerations_mixin.rb +0 -12
- data/vendor/plugins/enumerations_mixin/virtual_enumerations_sample.rb +0 -76
- data/vendor/plugins/prototype_legacy_helper/README.markdown +0 -13
- data/vendor/plugins/prototype_legacy_helper/init.rb +0 -1
- data/vendor/plugins/prototype_legacy_helper/lib/prototype_legacy_helper.rb +0 -432
- data/vendor/plugins/prototype_legacy_helper/test/test_prototype_helper.rb +0 -297
- data/vendor/plugins/resource_feeder/init.rb +0 -2
- data/vendor/plugins/resource_feeder/lib/resource_feeder.rb +0 -2
- data/vendor/plugins/respond_to_parent/MIT-LICENSE +0 -20
- data/vendor/plugins/respond_to_parent/README +0 -47
- data/vendor/plugins/respond_to_parent/Rakefile +0 -22
- data/vendor/plugins/respond_to_parent/init.rb +0 -1
- data/vendor/plugins/respond_to_parent/install.rb +0 -1
- data/vendor/plugins/respond_to_parent/lib/responds_to_parent.rb +0 -70
- data/vendor/plugins/respond_to_parent/test/responds_to_parent_test.rb +0 -10
- data/vendor/plugins/respond_to_parent/test/test_helper.rb +0 -6
- data/vendor/plugins/respond_to_parent/uninstall.rb +0 -1
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
/* prototip.css : http://www.nickstakenburg.com/projects/prototip */
|
|
2
|
-
.prototip { position: absolute; }
|
|
3
|
-
.prototip .effectWrapper { position: relative; }
|
|
4
|
-
.prototip .tooltip { position: relative; }
|
|
5
|
-
.prototip .toolbar {
|
|
6
|
-
position: relative;
|
|
7
|
-
display: block;
|
|
8
|
-
}
|
|
9
|
-
.prototip .toolbar .title {
|
|
10
|
-
display: block;
|
|
11
|
-
position: relative;
|
|
12
|
-
}
|
|
13
|
-
.prototip .content { clear: both; }
|
|
14
|
-
.prototip .toolbar a.close {
|
|
15
|
-
position: relative;
|
|
16
|
-
text-decoration: none;
|
|
17
|
-
float: right;
|
|
18
|
-
width: 15px;
|
|
19
|
-
height: 15px;
|
|
20
|
-
background: transparent url(close.gif);
|
|
21
|
-
display: block;
|
|
22
|
-
line-height: 0;
|
|
23
|
-
font-size: 0px;
|
|
24
|
-
border: 0;
|
|
25
|
-
}
|
|
26
|
-
.prototip .toolbar a.close:hover { background: transparent url(close_hover.gif); }
|
|
27
|
-
|
|
28
|
-
.iframeShim {
|
|
29
|
-
position: absolute;
|
|
30
|
-
border: 0;
|
|
31
|
-
margin: 0;
|
|
32
|
-
padding: 0;
|
|
33
|
-
background: none;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/* Tooltip styles */
|
|
37
|
-
.prototip .default { width: 150px; color: #fff; }
|
|
38
|
-
.prototip .default .toolbar { background: #0F6788; font: italic 17px Georgia, serif; }
|
|
39
|
-
.prototip .default .title { padding: 5px; }
|
|
40
|
-
.prototip .default .content { background: dodgerblue; font: 11px Arial, Helvetica, sans-serif; padding: 5px;}
|
|
41
|
-
|
|
42
|
-
.prototip .pinktip { border: 5px solid #a1a1a1; }
|
|
43
|
-
.prototip .pinktip .toolbar { background: #ff1e53; color: #fff; font: italic 17px Georgia, serif; }
|
|
44
|
-
.prototip .pinktip .title { padding: 5px; }
|
|
45
|
-
.prototip .pinktip .content { background: #fff; color: #555555; font: 11px Arial, Helvetica, sans-serif; padding: 5px; }
|
|
46
|
-
|
|
47
|
-
.prototip .darktip { width: 250px; border: 5px solid #a1a1a1; }
|
|
48
|
-
.prototip .darktip .toolbar { background: #606060; color: #fff; font: italic 17px Georgia, serif; }
|
|
49
|
-
.prototip .darktip .toolbar a.close { background: url(close_hover.gif);}
|
|
50
|
-
.prototip .darktip .toolbar a.close:hover { background: url(close.gif);}
|
|
51
|
-
.prototip .darktip .title { padding: 5px;}
|
|
52
|
-
.prototip .darktip .content { background: #808080; color: #fff; font: 11px Arial, Helvetica, sans-serif; padding: 5px; }
|
|
53
|
-
|
|
54
|
-
.prototip .silver {
|
|
55
|
-
margin:0 10px 0 10px;
|
|
56
|
-
border: 2px solid #2a1301;
|
|
57
|
-
color: #fff;
|
|
58
|
-
font: 12px Verdana, sans-serif;
|
|
59
|
-
border-top: none;
|
|
60
|
-
*width:150px;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.prototip .silver ul li { list-style-type: none;}
|
|
64
|
-
.prototip .silver .toolbar { background: #2e2e2e; color: #fff; font-weight: bold; }
|
|
65
|
-
.prototip .silver .toolbar a.close:hover { background: url(close_hover_red.gif);}
|
|
66
|
-
.prototip .silver .title { padding: 5px; }
|
|
67
|
-
.prototip .silver .content { background: #fff; color: #666666; padding: 5px;}
|
|
68
|
-
|
|
69
|
-
.protoClassic { width: 300px; border: 5px solid #8c939c; }
|
|
70
|
-
.protoClassic .toolbar { background: #96b8e2 url(classic_toolbar.gif) top left repeat-y; font-weight: bold; color: #fff;}
|
|
71
|
-
.protoClassic .toolbar a.close:hover { background: url(close_hover_red.gif);}
|
|
72
|
-
.protoClassic .title { padding: 5px; }
|
|
73
|
-
.protoClassic .content { background: #fff; color: #333333; font: 11px Arial, Helvetica, sans-serif; padding: 5px; }
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
|
|
3
|
-
Code licensed under the BSD License:
|
|
4
|
-
http://developer.yahoo.net/yui/license.txt
|
|
5
|
-
version: 2.5.1
|
|
6
|
-
*/
|
|
7
|
-
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym {border:0;font-variant:normal;}sup {vertical-align:text-top;}sub {vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}body {font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
|
|
8
|
-
body{text-align:center;}#ft{clear:both;}#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.25em;min-width:750px;}#doc2{width:73.076em;*width:71.25em;}#doc3{margin:auto 10px;width:auto;}#doc4{width:74.923em;*width:73.05em;}.yui-b{position:relative;}.yui-b{_position:static;}#yui-main .yui-b{position:static;}#yui-main{width:100%;}.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}.yui-t1 #yui-main .yui-b{margin-left:13.30769em;*margin-left:13.05em;}.yui-t2 .yui-b{float:left;width:13.8461em;*width:13.50em;}.yui-t2 #yui-main .yui-b{margin-left:14.8461em;*margin-left:14.55em;}.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}.yui-t3 #yui-main .yui-b{margin-left:24.0769em;*margin-left:23.62em;}.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.55em;}.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}.yui-t5 #yui-main .yui-b{margin-right:19.4615em;*margin-right:19.125em;}.yui-t6 .yui-b{float:right;width:23.0769em;*width:22.50em;}.yui-t6 #yui-main .yui-b{margin-right:24.0769em;*margin-right:23.62em;}.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}#yui-main .yui-b{float:none;width:auto;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:49.1%;}.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}.yui-gc div.first,.yui-gd .yui-u{width:66%;}.yui-gd div.first{width:32%;}.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}.yui-ge .yui-u,.yui-gf div.first{width:24%;}.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}.yui-g .yui-gb .yui-u{_margin-left:1.0%;}.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}.yui-gb .yui-gb .yui-u{_margin-left:.7%;}.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}s .yui-gb .yui-gd div.first{width:32%;}.yui-g .yui-gd div.first{_width:29.9%;}.yui-ge .yui-g{width:24%;}.yui-gf .yui-g{width:74.2%;}.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}.yui-ge div.first .yui-gd .yui-u{width:65%;}.yui-ge div.first .yui-gd div.first{width:32%;}#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}
|
|
@@ -1,977 +0,0 @@
|
|
|
1
|
-
/*========================================================*/
|
|
2
|
-
/* COLOR GUIDE */
|
|
3
|
-
/*========================================================*/
|
|
4
|
-
/*
|
|
5
|
-
dark grey #464337
|
|
6
|
-
light grey #a2a19b
|
|
7
|
-
|
|
8
|
-
blue link #06f
|
|
9
|
-
|
|
10
|
-
h3 yellow border #ffd735
|
|
11
|
-
|
|
12
|
-
alt blue light #e1ecff
|
|
13
|
-
|
|
14
|
-
alt blue dark #94beff
|
|
15
|
-
|
|
16
|
-
========================================================= */
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
/*========================================================*/
|
|
20
|
-
/* Cascading Style Sheet for the Community Engine */
|
|
21
|
-
/*========================================================*/
|
|
22
|
-
|
|
23
|
-
/*========================================================*/
|
|
24
|
-
/* Table of Contents */
|
|
25
|
-
/*========================================================*/
|
|
26
|
-
/* 1. UNIVERSAL THINGS */
|
|
27
|
-
/* 2. HEADER */
|
|
28
|
-
/* 3. WELCOME */
|
|
29
|
-
/* 4. BOX and ALTBOX */
|
|
30
|
-
/* 5. BODY */
|
|
31
|
-
/* 6. SIDEBAR */
|
|
32
|
-
/* 7. FOOTER */
|
|
33
|
-
/* 8. COMMUNITY FOOTER */
|
|
34
|
-
/* 9. CLEARFIX */
|
|
35
|
-
/* 10. SORTABLES */
|
|
36
|
-
/* 11. PAGINTATION */
|
|
37
|
-
/* 12. CLIPPINGS */
|
|
38
|
-
/* 13. TAG CLOUDS */
|
|
39
|
-
/* 14. USER LIST */
|
|
40
|
-
/*========================================================*/
|
|
41
|
-
|
|
42
|
-
span.localized {
|
|
43
|
-
font-style: italic;
|
|
44
|
-
color: red;
|
|
45
|
-
}
|
|
46
|
-
/* =============================================== */
|
|
47
|
-
/* 1. UNIVERSAL THINGS */
|
|
48
|
-
/* =============================================== */
|
|
49
|
-
#doc2{
|
|
50
|
-
color: #464337;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
a{color: #06f;}
|
|
54
|
-
|
|
55
|
-
a:hover{color: #06f;
|
|
56
|
-
text-decoration: none;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
p{margin: 0 0 1em 0;}
|
|
60
|
-
|
|
61
|
-
div.auto_complete {
|
|
62
|
-
width: 350px;
|
|
63
|
-
background: #ffffff; }
|
|
64
|
-
div.auto_complete ul {
|
|
65
|
-
border: 1px solid #888888;
|
|
66
|
-
list-style-type: none;
|
|
67
|
-
margin: 0;
|
|
68
|
-
padding: 0;
|
|
69
|
-
width: auto; }
|
|
70
|
-
div.auto_complete ul li {
|
|
71
|
-
margin: 0;
|
|
72
|
-
padding: 3px; }
|
|
73
|
-
div.auto_complete ul li.selected {
|
|
74
|
-
background-color: #FFFDC0; }
|
|
75
|
-
.clear {
|
|
76
|
-
clear: both;}
|
|
77
|
-
.right {
|
|
78
|
-
float: right;}
|
|
79
|
-
.left {
|
|
80
|
-
float:left;}
|
|
81
|
-
.centered {
|
|
82
|
-
text-align:center; }
|
|
83
|
-
img.polaroid {
|
|
84
|
-
padding:5px;
|
|
85
|
-
border: 1px solid #A2A19B;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
/* =============================================== */
|
|
90
|
-
/* 2. HEADER */
|
|
91
|
-
/* =============================================== */
|
|
92
|
-
|
|
93
|
-
#hd{border-top: 4px solid #780000;}
|
|
94
|
-
|
|
95
|
-
#hd h1{float: left;}
|
|
96
|
-
|
|
97
|
-
#hd h1 a{
|
|
98
|
-
font-size: 182%;
|
|
99
|
-
font-weight: bold;
|
|
100
|
-
text-transform: uppercase;
|
|
101
|
-
text-decoration: none;
|
|
102
|
-
display: block;
|
|
103
|
-
margin: 20px 0 10px 0;
|
|
104
|
-
color: #464337;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
#hd h1 a:hover{text-decoration: underline;}
|
|
108
|
-
|
|
109
|
-
#hd h2{
|
|
110
|
-
float: right;
|
|
111
|
-
font-size: 138.5%;
|
|
112
|
-
margin-top: 25px;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
#hd h2#newmail{
|
|
116
|
-
float: right;
|
|
117
|
-
padding-left: 20px;
|
|
118
|
-
margin-right: 20px;
|
|
119
|
-
background-color: transparent;
|
|
120
|
-
background-image: url(/assets/icons/email_open.png);
|
|
121
|
-
background-repeat: no-repeat;
|
|
122
|
-
background-position: left center;
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
/* Navbar */
|
|
126
|
-
|
|
127
|
-
#NavBar{
|
|
128
|
-
background: #aba8a3 url(/assets/bg_navbar.gif) repeat-x 0 0;
|
|
129
|
-
border-top: 1px solid #d9d6d3;
|
|
130
|
-
clear: both;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
#NavBar ul, #NavBar ul li{float: left;}
|
|
134
|
-
|
|
135
|
-
#NavBar ul li a{
|
|
136
|
-
display: block;
|
|
137
|
-
font-size: 108%;
|
|
138
|
-
padding: 15px 10px;
|
|
139
|
-
text-transform: uppercase;
|
|
140
|
-
font-weight: bold;
|
|
141
|
-
border-right: 1px solid #fff;
|
|
142
|
-
color: #464337;
|
|
143
|
-
text-decoration: none;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
#NavBar ul li#active a, #NavBar ul li.current a{
|
|
147
|
-
background: #fff;
|
|
148
|
-
text-decoration: none !important;
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
#NavBar ul li a:hover{text-decoration: underline;}
|
|
152
|
-
|
|
153
|
-
#NavBar form{float: right;}
|
|
154
|
-
|
|
155
|
-
#NavBar form label{display: none;}
|
|
156
|
-
|
|
157
|
-
#NavBar form input{
|
|
158
|
-
font-size: 108%;
|
|
159
|
-
padding: 4px 15px 4px 5px;
|
|
160
|
-
margin: 11px 10px 0 0;
|
|
161
|
-
background: #fff url(/assets/search.gif) no-repeat right center;
|
|
162
|
-
border: none;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
/* =============================================== */
|
|
167
|
-
/* 3. WELCOME */
|
|
168
|
-
/* =============================================== */
|
|
169
|
-
|
|
170
|
-
#welcome .box{
|
|
171
|
-
background: #fff1b2;
|
|
172
|
-
margin-top: 1em;
|
|
173
|
-
padding: 1em;
|
|
174
|
-
border-bottom: 2px solid #ffd735;
|
|
175
|
-
border-top: 1px solid #ffd735;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
#welcome .box h2{
|
|
179
|
-
font-size: 197%;
|
|
180
|
-
margin-bottom:.5em;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
#welcome .box h2 a{color: #464337;}
|
|
184
|
-
|
|
185
|
-
#welcome .box p{
|
|
186
|
-
font-size: 108%;}
|
|
187
|
-
|
|
188
|
-
#welcome .box h4{
|
|
189
|
-
background:url(/assets/bg_h6btn.gif) repeat-x left center;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
#welcome .box h4 a{
|
|
193
|
-
background-color: transparent;
|
|
194
|
-
background-image: url(/assets/icons/52.png);
|
|
195
|
-
background-repeat: no-repeat;
|
|
196
|
-
background-position: .5em center;
|
|
197
|
-
display: block;
|
|
198
|
-
padding: 1em 1em 1em 3.5em;
|
|
199
|
-
font-size: 138.5%;
|
|
200
|
-
text-decoration: none;
|
|
201
|
-
text-transform: uppercase;
|
|
202
|
-
color: #384016;
|
|
203
|
-
font-weight: bold;
|
|
204
|
-
border: 1px solid #9ec500;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
#welcome .first .box h4 a{
|
|
208
|
-
background-image: url(/assets/icons/31.png);
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
#welcome .box h4 a:hover{
|
|
212
|
-
background-color: #9ec500;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
/* =============================================== */
|
|
216
|
-
/* 4. BOX and ALTBOX */
|
|
217
|
-
/* =============================================== */
|
|
218
|
-
|
|
219
|
-
.box{
|
|
220
|
-
margin-bottom: 1em;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.box h2{
|
|
224
|
-
margin-bottom: .5em;
|
|
225
|
-
font-weight: bold;
|
|
226
|
-
font-size: 153.9%;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
.box h3{
|
|
230
|
-
font-size: 123.1%;
|
|
231
|
-
font-weight: bold;
|
|
232
|
-
text-transform: uppercase;
|
|
233
|
-
border-bottom: 1px solid #ffd735;
|
|
234
|
-
margin:1.5em 0 1em 0;
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
.alt{
|
|
238
|
-
border: 1px solid #94beff;
|
|
239
|
-
background: #e1ecff;
|
|
240
|
-
padding: 1em;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.alt h3{
|
|
244
|
-
border: none;
|
|
245
|
-
margin: 0 0 .5em 0;
|
|
246
|
-
padding: .5em;
|
|
247
|
-
background: #94beff;
|
|
248
|
-
color: #38465b;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.first_alt {
|
|
252
|
-
margin-top:3.25em;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
/* =============================================== */
|
|
257
|
-
/* 5. BODY */
|
|
258
|
-
/* =============================================== */
|
|
259
|
-
|
|
260
|
-
/* blog entry */
|
|
261
|
-
|
|
262
|
-
.hentry{
|
|
263
|
-
margin: 0 0 1em 0;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
.comments .hentry{
|
|
267
|
-
border-bottom: 1px dotted #a2a19b;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.comments .hentry:last-child{border: none;}
|
|
271
|
-
|
|
272
|
-
.hentry h4{
|
|
273
|
-
font-size: 153.9%;
|
|
274
|
-
font-weight: bold;
|
|
275
|
-
margin-bottom: 15px;}
|
|
276
|
-
|
|
277
|
-
.hentry h4 a{
|
|
278
|
-
text-decoration: none;
|
|
279
|
-
color: #464337;
|
|
280
|
-
}
|
|
281
|
-
|
|
282
|
-
.hentry h4 a:hover{text-decoration: underline;}
|
|
283
|
-
|
|
284
|
-
.hentry .vcard{
|
|
285
|
-
float: left;
|
|
286
|
-
width: 13.8461em; /* about 180px */
|
|
287
|
-
*width: 13.5em; /* for IE */
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
div.main div.vcard{
|
|
291
|
-
width: 9.2307em; /* about 120px */
|
|
292
|
-
*width: 9em; /* for IE */
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.entry-content{
|
|
296
|
-
margin-left: 15.3846em; /* about 200px */
|
|
297
|
-
*margin-left: 15em; /* for IE */
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
div.main div.entry-content{
|
|
301
|
-
margin-left: 10.4769em; /* about 140px */
|
|
302
|
-
*margin-left: 10.5em; /* for IE */
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.page-content, .event-content{
|
|
306
|
-
margin-left: 0px; /* Use formatting for blog post except for left margin */
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
.event-edit-link{
|
|
310
|
-
float: right;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
.hentry .vcard h5{
|
|
314
|
-
float: left;
|
|
315
|
-
width: 66px;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.hentry .vcard h5 a img{
|
|
319
|
-
display: block;
|
|
320
|
-
border: 1px solid #a2a19b;
|
|
321
|
-
padding: 2px;
|
|
322
|
-
background: #fff;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.hentry .vcard h5 a:hover img{background: #a2a19b; }
|
|
326
|
-
|
|
327
|
-
.hentry .vcard ul{
|
|
328
|
-
margin-left: 66px;
|
|
329
|
-
font-size: 85%;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
div.main .vcard ul{
|
|
333
|
-
margin-left: 0;}
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
.hentry .vcard ul li{
|
|
337
|
-
padding: 3px 0;
|
|
338
|
-
border-bottom: 1px dotted #a2a19b;
|
|
339
|
-
padding-left: 20px;
|
|
340
|
-
background-color: transparent;
|
|
341
|
-
background-position: left 3px;
|
|
342
|
-
background-repeat: no-repeat;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.hentry .vcard ul li.fn{
|
|
346
|
-
font-size: 130%;
|
|
347
|
-
font-weight: bold;
|
|
348
|
-
padding:0 0 3px 0;
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.hentry .vcard ul li.update{background-image: url(/assets/icons/date.png) }
|
|
352
|
-
.hentry .vcard ul li.view{background-image: url(/assets/icons/page_white_magnify.png) }
|
|
353
|
-
.hentry .vcard ul li.comments{background-image: url(/assets/icons/comments.png) }
|
|
354
|
-
.hentry .vcard ul li.msg{background-image: url(/assets/icons/email_go.png) }
|
|
355
|
-
.hentry .vcard ul li.addfriend{background-image: url(/assets/icons/user_add.png) }
|
|
356
|
-
.hentry .vcard ul li.print{background-image: url(/assets/icons/printer.png) }
|
|
357
|
-
.hentry .vcard ul li.email{background-image: url(/assets/icons/user_go.png) }
|
|
358
|
-
.hentry .vcard ul li.share{
|
|
359
|
-
/* background-image: url(/assets/icons/group_go.png) */
|
|
360
|
-
padding-left:0;
|
|
361
|
-
}
|
|
362
|
-
.hentry .vcard ul li.tags{background-image: url(/assets/icons/tag_blue.png) }
|
|
363
|
-
.hentry .vcard ul li.geo{background-image: url(/assets/icons/world.png) }
|
|
364
|
-
.hentry .vcard ul li.edit{background-image: url(/assets/icons/post.png) }
|
|
365
|
-
.hentry .vcard ul li.delete{background-image: url(/assets/icons/delete.png) }
|
|
366
|
-
|
|
367
|
-
.entry-content h6{
|
|
368
|
-
border-bottom: 1px dotted #a2a19b;
|
|
369
|
-
border-top: 1px dotted #a2a19b;
|
|
370
|
-
text-align: right;
|
|
371
|
-
padding:2px 0;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.entry-content h6 a{
|
|
375
|
-
font-size: 85%;
|
|
376
|
-
font-weight: bold;
|
|
377
|
-
text-transform: uppercase;
|
|
378
|
-
text-decoration: none;
|
|
379
|
-
background: transparent url(/assets/icons/add.png) no-repeat left center;
|
|
380
|
-
padding-left: 20px;
|
|
381
|
-
padding: 2px 2px 2px 20px;
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.entry-content h6 a:hover{text-decoration: underline;}
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
/* brings back styles for entry elements */
|
|
388
|
-
.entry-content blockquote, .entry-content ul, .entry-content ol {margin:1em;}
|
|
389
|
-
.entry-content ol, .entry-content ul{margin-left:2em;}
|
|
390
|
-
.entry-content ol li {list-style: decimal outside;}
|
|
391
|
-
.entry-content ul li {list-style: disc outside;}
|
|
392
|
-
.entry-content strong{font-weight: bold;}
|
|
393
|
-
.entry-content em, .entry-content blockquote{font-style:italic;}
|
|
394
|
-
.entry-content blockquote{font-family:Georgia, Times, serif;}
|
|
395
|
-
|
|
396
|
-
.hentry .tags{margin-left: 0;}
|
|
397
|
-
|
|
398
|
-
.hentry .tags li{
|
|
399
|
-
list-style: none;
|
|
400
|
-
float: left;}
|
|
401
|
-
|
|
402
|
-
.hentry .tags li a{
|
|
403
|
-
background: red;
|
|
404
|
-
display: block;
|
|
405
|
-
margin: 0 10px 5px 0;
|
|
406
|
-
padding: 2px 0 2px 15px;
|
|
407
|
-
background: url(/assets/icons/tag_blue.png) no-repeat left center;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
/* =============================================== */
|
|
414
|
-
/* 6. SIDEBAR */
|
|
415
|
-
/* =============================================== */
|
|
416
|
-
|
|
417
|
-
.list{
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.list li{
|
|
421
|
-
padding:3px 0;
|
|
422
|
-
border-bottom: 1px dotted #a2a19b;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.checks li, .page li{
|
|
426
|
-
padding-left: 20px;
|
|
427
|
-
background-color: transparent;
|
|
428
|
-
background-image: url(/assets/icons/accept.png);
|
|
429
|
-
background-repeat: no-repeat;
|
|
430
|
-
background-position: left center;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.checks li{background-image: url(/assets/icons/accept.png)}
|
|
434
|
-
.page li{background-image:url(/assets/icons/page_white.png)}
|
|
435
|
-
|
|
436
|
-
/* user list */
|
|
437
|
-
dl.vcard{
|
|
438
|
-
margin-bottom: 1em;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
dl.vcard dt.photo{
|
|
442
|
-
float: left;
|
|
443
|
-
width: 66px;
|
|
444
|
-
margin: 0;
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
dl.vcard dt.photo a img{
|
|
448
|
-
display: block;
|
|
449
|
-
padding: 2px;
|
|
450
|
-
border: 1px solid #a2a19b;
|
|
451
|
-
background: #fff;
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
dl.vcard dt.photo a:hover img{background: #a2a19b;}
|
|
455
|
-
|
|
456
|
-
dl.vcard dd{
|
|
457
|
-
margin-left: 66px;
|
|
458
|
-
}
|
|
459
|
-
|
|
460
|
-
dl.vcard dd.fn a{
|
|
461
|
-
font-size: 108%;
|
|
462
|
-
font-weight: bold;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
dl.vcard dd.member, dl.vcard dd.post, dl.vcard dd.rss{
|
|
466
|
-
padding: 2px 0 2px 20px;
|
|
467
|
-
border-top: 1px dotted #a2a19b;
|
|
468
|
-
background-position: left center;
|
|
469
|
-
background-repeat: no-repeat;
|
|
470
|
-
background-color: transparent;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
dl.vcard dd.member{background-image: url(/assets/icons/user.png);}
|
|
474
|
-
dl.vcard dd.post{background-image: url(/assets/icons/page_white.png);}
|
|
475
|
-
dl.vcard dd.rss{background-image: url(/assets/icons/rss.png);}
|
|
476
|
-
|
|
477
|
-
h6.all{margin:.5em 0;}
|
|
478
|
-
|
|
479
|
-
h6.all a{
|
|
480
|
-
font-size: 85%;
|
|
481
|
-
font-weight: bold;
|
|
482
|
-
text-transform: uppercase;
|
|
483
|
-
background: transparent url(/assets/icons/add.png) no-repeat left center;
|
|
484
|
-
padding:3px 0 3px 20px;
|
|
485
|
-
color: #379d00;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
/* Main Form ========================= */
|
|
490
|
-
|
|
491
|
-
.MainForm{
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
.MainForm label{
|
|
495
|
-
display: block;
|
|
496
|
-
margin: 1em 0 2px 0;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.MainForm label em{
|
|
500
|
-
font-style: italic;
|
|
501
|
-
font-family: Georgia, Times, serif;
|
|
502
|
-
color: #777;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.MainForm select{
|
|
506
|
-
border:1px solid #ccc;
|
|
507
|
-
}
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
.MainForm input, .MainForm textarea{
|
|
511
|
-
border: 1px solid #ccc;
|
|
512
|
-
padding: 5px;
|
|
513
|
-
font-size: 123.1%;
|
|
514
|
-
font-weight: bold;
|
|
515
|
-
color: #777;
|
|
516
|
-
width: 250px;
|
|
517
|
-
background: #f8f8f8;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.MainForm input[type=checkbox] {
|
|
521
|
-
width: auto;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.MainForm input:focus, .MainForm textarea:focus{
|
|
525
|
-
color: #777;
|
|
526
|
-
border-color: #777;
|
|
527
|
-
background: #fff;
|
|
528
|
-
}
|
|
529
|
-
|
|
530
|
-
.MainForm input.wrong, .MainForm .fieldWithErrors input {
|
|
531
|
-
border-color: #f00;
|
|
532
|
-
color: #f00;
|
|
533
|
-
background: #ffd5d5;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
/* submit */
|
|
537
|
-
.MainForm p input, .MainForm p button {
|
|
538
|
-
padding-left: 1em;
|
|
539
|
-
padding-right: 1em;
|
|
540
|
-
background: #008000;
|
|
541
|
-
border: 4px solid #004500;
|
|
542
|
-
color: #fff;
|
|
543
|
-
margin: 1em 0;
|
|
544
|
-
width: auto;
|
|
545
|
-
cursor: pointer;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.MainForm p input:hover{
|
|
549
|
-
background:#004500;}
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
.MainForm strong{color: #f00;}
|
|
553
|
-
|
|
554
|
-
.MainForm strong.ok{color: #008000;}
|
|
555
|
-
|
|
556
|
-
.MainForm strong em{
|
|
557
|
-
text-decoration: underline;
|
|
558
|
-
font-weight: bold;}
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
.MainForm textarea{
|
|
562
|
-
width: 550px;
|
|
563
|
-
color: #777;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
/* checks */
|
|
568
|
-
|
|
569
|
-
.MainForm fieldset {margin: 1em 0 0 0;}
|
|
570
|
-
|
|
571
|
-
.MainForm fieldset label{
|
|
572
|
-
margin: 4px 0;
|
|
573
|
-
color: #777;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
.MainForm fieldset input{
|
|
577
|
-
border: none;
|
|
578
|
-
width: auto;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.MainForm fieldset.inline label{
|
|
582
|
-
display: inline;
|
|
583
|
-
margin-right: 1em;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.warning, #errorExplanation, .errorExplanation{
|
|
587
|
-
padding: 1em 1em 1em 1em;
|
|
588
|
-
margin: 1em 0;
|
|
589
|
-
border: 1px solid #fc0;
|
|
590
|
-
background: #fff3c5;
|
|
591
|
-
color: #6b5e2b;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
/* =============================================== */
|
|
596
|
-
/* 7. FOOTER */
|
|
597
|
-
/* =============================================== */
|
|
598
|
-
#ft{
|
|
599
|
-
background: #f1f1f1;
|
|
600
|
-
padding-bottom: 1em;
|
|
601
|
-
border-top: 1px solid #ccc;
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
#ft .yui-u .box{margin:0 1em 0 0;}
|
|
605
|
-
|
|
606
|
-
#ft .first .box{margin:0 0 0 1em;}
|
|
607
|
-
|
|
608
|
-
#ft .yui-u .box h3{
|
|
609
|
-
color: #666;
|
|
610
|
-
border-color: #666;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
/* whats fresh */
|
|
614
|
-
|
|
615
|
-
.fresh dl{
|
|
616
|
-
clear: both;
|
|
617
|
-
border-bottom: 1px dotted #ccc;
|
|
618
|
-
padding: 3px 0;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
.fresh dt{
|
|
622
|
-
float: left;
|
|
623
|
-
width: 10.8461em; /* about 180px - 3em */
|
|
624
|
-
*width: 10.5em; /* for IE */
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
.fresh dd{
|
|
628
|
-
margin-left: 12.3846em; /* about 200px - 3em*/
|
|
629
|
-
*margin-left: 12em; /* about 200px */
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
.fresh dt {
|
|
633
|
-
padding-left: 20px;
|
|
634
|
-
background-image: url(/assets/icons/activity_default.png);
|
|
635
|
-
background-repeat: no-repeat;
|
|
636
|
-
background-position: left center;
|
|
637
|
-
background-color: transparent;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
.fresh .comment dt {background-image: url(/assets/icons/comment.png);}
|
|
641
|
-
.fresh .photo dt {background-image: url(/assets/icons/picture.png);}
|
|
642
|
-
.fresh .clipping dt {background-image: url(/assets/icons/book.png);}
|
|
643
|
-
.fresh .updated_profile dt {background-image: url(/assets/icons/user_edit.png);}
|
|
644
|
-
.fresh .favorite dt {background-image: url(/assets/icons/heart_add.png);}
|
|
645
|
-
.fresh .post dt, .fresh .sb_post dt, .fresh .topic dt{background-image: url(/assets/icons/post.png);}
|
|
646
|
-
.fresh .rsvp dt, .fresh .event dt {background-image: url(/assets/icons/date.png);}
|
|
647
|
-
|
|
648
|
-
/* =============================================== */
|
|
649
|
-
/* 8. COMMUNITY FOOTER */
|
|
650
|
-
/* =============================================== */
|
|
651
|
-
|
|
652
|
-
#CommunityFooter{
|
|
653
|
-
margin: 20px 0;
|
|
654
|
-
font-size: 85%;}
|
|
655
|
-
|
|
656
|
-
#CommunityFooter ul, #CommunityFooter ul li{float: left;}
|
|
657
|
-
|
|
658
|
-
#CommunityFooter li a{
|
|
659
|
-
padding: 2px 10px;
|
|
660
|
-
display: block;
|
|
661
|
-
border-left: 1px solid #ccc;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
#CommunityFooter li#rss a{
|
|
665
|
-
color: #fff;
|
|
666
|
-
background: orange;
|
|
667
|
-
text-decoration: none;
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
#CommunityFooter li:first-child a{
|
|
672
|
-
border: none;
|
|
673
|
-
padding-left: 0;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
#CommunityFooter p{
|
|
678
|
-
float: right;
|
|
679
|
-
padding: 2px 0 2px 120px;
|
|
680
|
-
background: url(/assets/logo.gif) no-repeat left center;
|
|
681
|
-
}
|
|
682
|
-
|
|
683
|
-
/* =============================================== */
|
|
684
|
-
/* 9. CLEARFIX */
|
|
685
|
-
/* =============================================== */
|
|
686
|
-
|
|
687
|
-
#NavBar:after, .hentry:after, .box:after, dl.vcard:after, .fresh dl:after, #CommunityFooter:after, .hentry .tags:after {
|
|
688
|
-
content: ".";
|
|
689
|
-
display: block;
|
|
690
|
-
height: 0;
|
|
691
|
-
clear: both;
|
|
692
|
-
visibility: hidden;
|
|
693
|
-
}
|
|
694
|
-
|
|
695
|
-
* html #NavBar, * html .hentry, * html .box, * html dl.vcard, * html .fresh dl, * html #CommunityFooter, * html .hentry .tags {display: inline-table;}
|
|
696
|
-
|
|
697
|
-
/* Hides from IE-mac \*/
|
|
698
|
-
#NavBar, .hentry, .box, dl.vcard, .fresh dl, #CommunityFooter, .hentry .tags {height: 1%;}
|
|
699
|
-
#NavBar, .hentry, .box, dl.vcard, .fresh dl, #CommunityFooter, .hentry .tags {display: block;}
|
|
700
|
-
/* End hide from IE-mac */
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
/* SORTABLES */
|
|
705
|
-
ul.sortable {
|
|
706
|
-
list-style:none;
|
|
707
|
-
border:1px solid #ccc;
|
|
708
|
-
min-height:20px;
|
|
709
|
-
line-height:1.5em;
|
|
710
|
-
padding:0;
|
|
711
|
-
}
|
|
712
|
-
ul.sortable li {
|
|
713
|
-
cursor: move;
|
|
714
|
-
}
|
|
715
|
-
|
|
716
|
-
ul.sortable_hover {
|
|
717
|
-
border:1px dashed #328E01;
|
|
718
|
-
background:#efefef;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
/* PAGINATION */
|
|
723
|
-
div.pagination {
|
|
724
|
-
margin: 10px;
|
|
725
|
-
clear:both;
|
|
726
|
-
}
|
|
727
|
-
div.pagination div.pagination_info {
|
|
728
|
-
float:right;
|
|
729
|
-
}
|
|
730
|
-
div.pagination a {
|
|
731
|
-
margin-right:0.3em;
|
|
732
|
-
padding:0.4em;
|
|
733
|
-
}
|
|
734
|
-
div.pagination a:hover {
|
|
735
|
-
background:#828282;
|
|
736
|
-
color:#ffffff;
|
|
737
|
-
margin-right:0.3em;
|
|
738
|
-
padding:0.4em;
|
|
739
|
-
}
|
|
740
|
-
div.pagination a.active {
|
|
741
|
-
background:#828282;
|
|
742
|
-
border:none;
|
|
743
|
-
color:#ffffff;
|
|
744
|
-
}
|
|
745
|
-
|
|
746
|
-
/* CLIPPINGS */
|
|
747
|
-
.clippings_grid {
|
|
748
|
-
background: #fff; }
|
|
749
|
-
.clippings_grid .row .clipping {
|
|
750
|
-
border: 1px solid #ccc;
|
|
751
|
-
padding: 10px 15px 20px 15px;
|
|
752
|
-
margin: 10px 20px 20px 20px;
|
|
753
|
-
width: 200px;
|
|
754
|
-
float: left; }
|
|
755
|
-
.clippings_grid .row .clipping img.clipping_image {
|
|
756
|
-
width: 200px; }
|
|
757
|
-
.clippings_grid .row .clipping p {
|
|
758
|
-
font-size: 85%;
|
|
759
|
-
margin-top: 10px; }
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
/* Tag Clouds */
|
|
763
|
-
.css1 {
|
|
764
|
-
font-size: 1.0em; }
|
|
765
|
-
|
|
766
|
-
.css2 {
|
|
767
|
-
font-size: 1.3em; }
|
|
768
|
-
|
|
769
|
-
.css3 {
|
|
770
|
-
font-size: 1.4em; }
|
|
771
|
-
|
|
772
|
-
.css4 {
|
|
773
|
-
font-size: 1.5em; }
|
|
774
|
-
|
|
775
|
-
.css5 {
|
|
776
|
-
font-size: 1.6em; }
|
|
777
|
-
|
|
778
|
-
.css6 {
|
|
779
|
-
font-size: 1.8em; }
|
|
780
|
-
|
|
781
|
-
.selected {
|
|
782
|
-
color: #268999; }
|
|
783
|
-
|
|
784
|
-
/* USER LIST */
|
|
785
|
-
div.user_list .row {
|
|
786
|
-
border:1px solid #cccccc;
|
|
787
|
-
margin:1em 0 1em 0;
|
|
788
|
-
margin-bottom:1.5em;
|
|
789
|
-
padding:0.5em;
|
|
790
|
-
}
|
|
791
|
-
div.user_list .row h3 {
|
|
792
|
-
}
|
|
793
|
-
div.user_list div.vcard {
|
|
794
|
-
width: 100%;}
|
|
795
|
-
div.user_list div.vcard ul {
|
|
796
|
-
margin-left: 0;
|
|
797
|
-
font-size: 85%;
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
/*PHOTOS & CLIPPINGS*/
|
|
802
|
-
#photos img.polaroid, #clippings img.polaroid {
|
|
803
|
-
margin: 0 12px 15px 0;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
/*USER PROFILE SIDEBAR*/
|
|
807
|
-
#profile_details div.vcard{
|
|
808
|
-
width: 100%;}
|
|
809
|
-
#profile_details .vcard ul{
|
|
810
|
-
margin-left: 0px;}
|
|
811
|
-
|
|
812
|
-
/* CATEGORY PAGES */
|
|
813
|
-
.box h3 ul.subnav {
|
|
814
|
-
display:inline;
|
|
815
|
-
font-size: .7em;
|
|
816
|
-
font-weight:normal;
|
|
817
|
-
text-transform:none;
|
|
818
|
-
margin:0 0 0 10px;
|
|
819
|
-
}
|
|
820
|
-
ul.subnav li {
|
|
821
|
-
display:inline;}
|
|
822
|
-
ul.subnav li a.active {
|
|
823
|
-
color:#000;
|
|
824
|
-
text-decoration:none;}
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
/* MCE Editor */
|
|
828
|
-
|
|
829
|
-
.mceEditor .left {
|
|
830
|
-
float:none;
|
|
831
|
-
}
|
|
832
|
-
.mceEditor table {
|
|
833
|
-
margin: 0; }
|
|
834
|
-
.mceEditor table th {
|
|
835
|
-
padding: 0;
|
|
836
|
-
margin: 0;
|
|
837
|
-
border: inherit;
|
|
838
|
-
font-weight: normal; }
|
|
839
|
-
.mceEditor table td {
|
|
840
|
-
padding: 0;
|
|
841
|
-
margin: 0;
|
|
842
|
-
border: inherit; }
|
|
843
|
-
.mceEditor table tfoot {
|
|
844
|
-
font-style: inherit; }
|
|
845
|
-
.mceEditor table caption {
|
|
846
|
-
background: none; }
|
|
847
|
-
.mceEditor table img {
|
|
848
|
-
margin: 0 0 0; }
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
/* TABLES */
|
|
852
|
-
table th {
|
|
853
|
-
font-weight: bold;
|
|
854
|
-
border-bottom: 1px solid #ccc;
|
|
855
|
-
}
|
|
856
|
-
table td {
|
|
857
|
-
padding: 5px;
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
/* MESSAGES */
|
|
862
|
-
ul.message_nav li {
|
|
863
|
-
background-position: left;
|
|
864
|
-
background-repeat: no-repeat;
|
|
865
|
-
padding-left:20px;
|
|
866
|
-
}
|
|
867
|
-
ul.message_nav li.inbox_new {background-image: url(/assets/icons/email_open.png);}
|
|
868
|
-
ul.message_nav li.inbox {background-image: url(/assets/icons/email.png);}
|
|
869
|
-
ul.message_nav li.sent {background-image: url(/assets/icons/email_go.png);}
|
|
870
|
-
li.compose {background-image: url(/assets/icons/email_edit.png);}
|
|
871
|
-
.messages .photo a img{
|
|
872
|
-
float: left;
|
|
873
|
-
display: block;
|
|
874
|
-
padding: 2px;
|
|
875
|
-
border: 1px solid #a2a19b;
|
|
876
|
-
background: #fff;
|
|
877
|
-
}
|
|
878
|
-
table.messages tbody td {
|
|
879
|
-
border-bottom: 1px solid #ccc;
|
|
880
|
-
}
|
|
881
|
-
.messages .photo a:hover img{background: #a2a19b;}
|
|
882
|
-
.messages em {
|
|
883
|
-
font-style: italic;
|
|
884
|
-
font-family: Georgia, Times, serif;
|
|
885
|
-
color: #777;
|
|
886
|
-
}
|
|
887
|
-
.messages td.meta {
|
|
888
|
-
font-size: 85%;
|
|
889
|
-
text-align: right;
|
|
890
|
-
}
|
|
891
|
-
.messages tr.unread td {
|
|
892
|
-
font-weight: bold;
|
|
893
|
-
}
|
|
894
|
-
pre.message_body {
|
|
895
|
-
padding: 10px;
|
|
896
|
-
border: 1px solid #ccc;
|
|
897
|
-
background: #efefef;
|
|
898
|
-
white-space: pre-wrap; /* css-3 */
|
|
899
|
-
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
|
900
|
-
white-space: -pre-wrap; /* Opera 4-6 */
|
|
901
|
-
white-space: -o-pre-wrap; /* Opera 7 */
|
|
902
|
-
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
/* Polls */
|
|
907
|
-
|
|
908
|
-
table.poll {
|
|
909
|
-
width: 100%;
|
|
910
|
-
margin-bottom: 3em; }
|
|
911
|
-
table.poll td {
|
|
912
|
-
border-bottom: none; }
|
|
913
|
-
table.poll td .vote {
|
|
914
|
-
display: block;
|
|
915
|
-
float: left;
|
|
916
|
-
background: url(/assets/icons/vote.png) no-repeat left;
|
|
917
|
-
padding: 0 10px 0 20px;
|
|
918
|
-
height: 20px;
|
|
919
|
-
margin-right: 10px;
|
|
920
|
-
border-right: 1px solid #ccc; }
|
|
921
|
-
table.poll td.bars {
|
|
922
|
-
width: 50%; }
|
|
923
|
-
table.poll td.bars div.bar-container {
|
|
924
|
-
border: 1px solid #ccc;
|
|
925
|
-
width: 90%;
|
|
926
|
-
margin: 0px 5px 2px 0;
|
|
927
|
-
padding: 1px;
|
|
928
|
-
float: left;
|
|
929
|
-
background: white;
|
|
930
|
-
height: 1em; }
|
|
931
|
-
table.poll td.bars div.bar-container .bar {
|
|
932
|
-
background-color: #cfe1f1;
|
|
933
|
-
height: 12px;
|
|
934
|
-
font-size: 10px;
|
|
935
|
-
text-align: right;
|
|
936
|
-
padding-right: 2px; }
|
|
937
|
-
|
|
938
|
-
/* User Menu Dropdown*/
|
|
939
|
-
#user-menu-tip {
|
|
940
|
-
background: #fff;
|
|
941
|
-
font-size: 12px;
|
|
942
|
-
position: absolute;
|
|
943
|
-
right: 0;
|
|
944
|
-
top: -9999px;
|
|
945
|
-
*width:150px;
|
|
946
|
-
border: 2px solid #2a1301;
|
|
947
|
-
border-top: none;
|
|
948
|
-
padding: 10px;
|
|
949
|
-
z-index: 999;
|
|
950
|
-
}
|
|
951
|
-
#user-menu {
|
|
952
|
-
padding-right: 15px;
|
|
953
|
-
position: relative;
|
|
954
|
-
background: url(/assets/icons/bullet_arrow_down_50.png) no-repeat right;
|
|
955
|
-
}
|
|
956
|
-
#user-menu:hover {
|
|
957
|
-
background: url(/assets/icons/bullet_arrow_down.png) no-repeat right;
|
|
958
|
-
}
|
|
959
|
-
#user-menu:hover #user-menu-tip {
|
|
960
|
-
top: 22px;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
.icon_row a {
|
|
964
|
-
margin-right:5px;
|
|
965
|
-
}
|
|
966
|
-
.icon_row a img {
|
|
967
|
-
border:0;
|
|
968
|
-
vertical-align:middle;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
/* Omniauth */
|
|
972
|
-
|
|
973
|
-
.omniauth_remove {
|
|
974
|
-
position: relative;
|
|
975
|
-
margin-left: -15px;
|
|
976
|
-
}
|
|
977
|
-
|