diff --git a/composer.json b/composer.json index 58622950caa827f73c796258e5eb0827abd4890f..b27661a4398e9a70f2049d5a0bfb2efd93b818d0 100644 --- a/composer.json +++ b/composer.json @@ -49,7 +49,6 @@ "wpackagist-theme/bliss": "^1.2", "wpackagist-theme/carrington-blog": "^2.3", "wpackagist-theme/classic": "^1.6", - "wpackagist-theme/darwin-buddypress-buddypack": "^1.2", "wpackagist-theme/default": "^1.7", "wpackagist-theme/disconnected": "^1.3", "wpackagist-theme/elegant-grunge": "^1.1", diff --git a/composer.lock b/composer.lock index b9de2710c9c7d5d4c05662b03a399e55a00c040b..842055a0393db5595ea0552a27a919f2d84f2e0d 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "685b33c2e4737167b9c84552aa37d7a0", + "content-hash": "1c5239f227d0730fd34ee135b79c6cf4", "packages": [ { "name": "bjornjohansen/wplang", @@ -666,6 +666,9 @@ "composer/installers": "~1.0" }, "type": "wordpress-plugin", + "extra": { + "patches_applied": [] + }, "homepage": "https://wordpress.org/plugins/buddypress/" }, { @@ -1282,24 +1285,6 @@ "type": "wordpress-theme", "homepage": "https://wordpress.org/themes/classic/" }, - { - "name": "wpackagist-theme/darwin-buddypress-buddypack", - "version": "1.2.1", - "source": { - "type": "svn", - "url": "https://themes.svn.wordpress.org/darwin-buddypress-buddypack/", - "reference": "1.2.1" - }, - "dist": { - "type": "zip", - "url": "https://downloads.wordpress.org/theme/darwin-buddypress-buddypack.1.2.1.zip" - }, - "require": { - "composer/installers": "~1.0" - }, - "type": "wordpress-theme", - "homepage": "https://wordpress.org/themes/darwin-buddypress-buddypack/" - }, { "name": "wpackagist-theme/default", "version": "1.7.2", diff --git a/composer.patches.json b/composer.patches.json index 22f96c8dc7ef30348a544743fff7c0f14b48d19d..3de50ed25bd3dc276eeaa3fd05c86fff59d6060b 100644 --- a/composer.patches.json +++ b/composer.patches.json @@ -33,6 +33,11 @@ }, "wpackagist-plugin/creative-commons-license-widget": { "Remove hotlinking of images": "patches/plugin/creative-commons-license.patch" - } + }, + "wpackagist-plugin/buddypress":{ + "Disable gravatar": "patches/buddypress/0053-Patch-buddypress.patch", + "Use buddypress avatars if possible": "patches/buddypress/0092-buddypress-override-some-avatar-functions.patch", + "Force https on buddypress login redirect": "patches/buddypress/0147-forced-https-on-buddypress-login-redirect.patch" + } } } diff --git a/patches/buddypress/0053-Patch-buddypress.patch b/patches/buddypress/0053-Patch-buddypress.patch index ec42dccec8c3ee95e80c27b060fd3496754ff16a..6ecb2b496f7b930159f1e7125ecb7f67d44eed11 100644 --- a/patches/buddypress/0053-Patch-buddypress.patch +++ b/patches/buddypress/0053-Patch-buddypress.patch @@ -1,61 +1,6 @@ -From 4771da2043adabdc8ff1cc2fc2ec703155c577b7 Mon Sep 17 00:00:00 2001 -From: root <root@rivolta.investici.org> -Date: Thu, 2 Dec 2010 14:56:42 +0000 -Subject: [PATCH 053/229] Patch buddypress - ---- - .../bp-activity/bp-activity-templatetags.php | 6 +- - wp-content/plugins/buddypress/bp-blogs.php | 2 +- - .../buddypress/bp-core/bp-core-avatars.php | 4 +- - .../bp-default/_inc/css/adminbar.css | 6 +- - .../bp-themes/bp-default/_inc/css/default.css | 429 +++++++++++++++--- - .../bp-themes/bp-default/activity/index.php | 4 +- - .../bp-themes/bp-default/footer.php | 7 +- - .../bp-themes/bp-default/header.php | 43 +- - 8 files changed, 411 insertions(+), 90 deletions(-) - -diff --git a/wp-content/plugins/buddypress/bp-activity/bp-activity-templatetags.php b/wp-content/plugins/buddypress/bp-activity/bp-activity-templatetags.php -index c7e1f15e..03195c0e 100644 ---- a/wp-content/plugins/buddypress/bp-activity/bp-activity-templatetags.php -+++ b/wp-content/plugins/buddypress/bp-activity/bp-activity-templatetags.php -@@ -1028,7 +1028,7 @@ function bp_activity_feed_item_title() { - $content = $activities_template->activity->content; - - $content = explode( '<span', $content ); -- $title = trim( strip_tags( html_entity_decode( utf8_encode( $content[0] ) ) ) ); -+ $title = trim(html_entity_decode(strip_tags($content[0]),ENT_COMPAT, 'UTF-8' )); - - if ( ':' == substr( $title, -1 ) ) - $title = substr( $title, 0, -1 ); -@@ -1068,7 +1068,7 @@ function bp_activity_feed_item_description() { - else - $content = $activities_template->activity->action . ' ' . $activities_template->activity->content; - -- return apply_filters( 'bp_get_activity_feed_item_description', html_entity_decode( str_replace( '%s', '', $content ) ) ); -+ return apply_filters( 'bp_get_activity_feed_item_description', html_entity_decode( str_replace( '%s', '', $content ), ENT_COMPAT, 'UTF-8' ) ); - } - --?> -\ No newline at end of file -+?> -diff --git a/wp-content/plugins/buddypress/bp-blogs.php b/wp-content/plugins/buddypress/bp-blogs.php -index 9874c3b8..c28f4321 100644 ---- a/wp-content/plugins/buddypress/bp-blogs.php -+++ b/wp-content/plugins/buddypress/bp-blogs.php -@@ -419,7 +419,7 @@ function bp_blogs_record_post( $post_id, $post, $user_id = false ) { - if ( (int)get_blog_option( $blog_id, 'blog_public' ) || !bp_core_is_multisite() ) { - // Record this in activity streams - $post_permalink = get_permalink( $post_id ); -- $activity_action = sprintf( __( '%s wrote a new blog post: %s', 'buddypress' ), bp_core_get_userlink( (int)$post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); -+ $activity_action = sprintf( __( '[%s] %s', 'buddypress' ), bp_core_get_userlink( (int)$post->post_author ), '<a href="' . $post_permalink . '">' . $post->post_title . '</a>' ); - $activity_content = $post->post_content; - - bp_blogs_record_activity( array( -diff --git a/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php b/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php -index 5eb8823e..3266ab8f 100644 ---- a/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php -+++ b/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php -@@ -211,13 +211,13 @@ function bp_core_fetch_avatar( $args = '' ) { +--- a/bp-core/bp-core-avatars.php ++++ b/bp-core/bp-core-avatars.php +@@ -209,7 +209,7 @@ 'css_id' => false, 'alt' => '', 'email' => false, @@ -64,654 +9,6 @@ index 5eb8823e..3266ab8f 100644 'html' => true, 'title' => '', 'extra_attr' => '', - 'scheme' => null, - 'rating' => get_option( 'avatar_rating' ), -- 'force_default' => false, -+ 'force_default' => false - ) ); - - /* Set item_id ***********************************************************/ -diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css b/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css -index dea0ddf8..58193389 100644 ---- a/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css -+++ b/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css -@@ -17,7 +17,7 @@ body { - padding: 0; - width: 100%; - margin: 0 auto; -- background: url( ../images/60pc_black.png ); -+ background: #333; - height: 25px; - } - body#bp-default #wp-admin-bar .padder { -@@ -144,7 +144,7 @@ body { - } - - #wp-admin-bar ul li ul a { -- color: #eee; -+ color: #fff; - } - - #wp-admin-bar ul li ul li { -@@ -213,4 +213,4 @@ body { - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - border-radius: 3px; --} -\ No newline at end of file -+} -diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css b/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css -index 8d1b6aa3..b1966d74 100644 ---- a/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css -+++ b/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css -@@ -78,25 +78,33 @@ body { - margin: 0 auto; - width: 95%; - } --.padder { -- padding: 19px; --} --div#container { -- background: #fff; -- border-right: 1px solid #e0e0e0; -- border-bottom: 1px solid #e0e0e0; -- -moz-border-radius: 6px; -- -webkit-border-radius: 6px; -- border-radius: 6px; -- overflow: hidden; -- position: relative; -- width: 100%; --} --body.activity-permalink div#container { -- background: none; -- border: none; -+ body.activity-permalink { -+ min-width: 960px; -+ max-width: 1250pc; -+ width: 90%; -+ } -+ -+h1, h2, h3, h4, h5, h6 { -+ margin: 5px 0 15px 0; - } - -+h1 { font-size: 28px; margin-bottom: 25px; } -+h2 { font-size: 24px; margin-bottom: 20px; } -+h3 { font-size: 20px; } -+h4 { font-size: 16px; margin-bottom: 15px; } -+h5 { font-size: 14px; margin-bottom: 0; } -+h6 { font-size: 12px; margin-bottom: 0; } -+ -+a { color: #000; text-decoration: none; } -+a:hover { color: #ff0000; } -+a:active { color: #888; } -+a:focus { outline: 1px dotted #ccc; } -+ -+.padder { padding: 19px; } -+.clear { clear: left; } -+ -+p { margin-bottom: 15px; } -+p:last-child { margin-bottom: 0; } - - /*-------------------------------------------------------------- - 2.1 - Content -@@ -111,23 +119,17 @@ div#content { - float: left; - width: 100%; - } --div#content .padder { -- border-right: 1px solid #ddd; -- -moz-border-radius-topleft: 6px; -- -webkit-border-top-left-radius: 6px; -- -moz-border-radius-bottomleft: 6px; -- -webkit-border-bottom-left-radius: 6px; -- border-top-left-radius: 6px; -- border-bottom-left-radius: 6px; -- margin-right: 225px; --} --div#content .one-column { -- border-right: 0 none; -- margin-right: 0; --} --div#content .left-menu { -- float: left; -- width: 170px; -+ -+img.avatar { -+ background: #ffffff; -+ padding: 4px; -+ border: 1px solid #ddd; -+/* Round Corners (native in Safari, Firefox and Chrome) */ -+ -moz-border-radius: 6px; -+ -webkit-border-radius: 6px; -+/* Add the Shadow */ -+ -moz-box-shadow: 2px 2px 2px #dddddd; -+ -webkit-box-shadow: 2px 2px 2px #dddddd; - } - div#content .main-column { - margin-left: 190px; -@@ -157,6 +159,9 @@ textarea { - color: #fff; - height: auto; - margin-bottom: 20px; -+ min-width: 960px; -+ max-width: 1250px; -+ height: 100px; - padding-top: 25px; - position: relative; - z-index: 1000; -@@ -193,6 +198,82 @@ textarea { - font-size: 26px; - text-decoration: none; - } -+ #header #search-bar { -+ position: absolute; -+ top: 25px; -+ right: 0; -+ width: 100%; -+ text-align: right; -+ } -+ -+ #header h1 { -+ line-height: 230%; -+ } -+ -+ #header #search-bar .padder { -+ padding: 10px 20px; -+ } -+ -+ #header #search-bar input[type=text] { -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ border: 1px inset #888; -+ padding: 2px; -+ margin-right: 4px; -+ } -+ -+ #header #search-bar input[type=submit] { -+ font-size: 11px; -+ padding: 1px 4px; -+ margin-left: 4px; -+ } -+ -+ #header h1 { -+ position: absolute; -+ bottom: 0; -+ left: 20px; -+ width: 44%; -+ margin: 0 0 -5px 0; -+ } -+ #header h1 a { -+ color: #fff; -+ font-size: 26px; -+ text-decoration: none; -+ } -+ -+/* > Navigation -+-------------------------------------------------------------- */ -+ -+ul#nav { -+ margin: 0; -+ padding: 0; -+ position: absolute; -+ right: 15px; -+ list-style: none; -+ bottom: 0; -+ max-width: 65%; -+} -+ ul#nav li { -+ float: left; -+ margin: 0 5px 0 0; -+ } -+ ul#nav li a { -+ display: block; -+ color: #fff; -+ text-decoration: none; -+ padding: 5px 15px; -+ background: #333; -+ -moz-border-radius-topleft: 3px; -+ -webkit-border-top-left-radius: 3px; -+ -moz-border-radius-topright: 3px; -+ -webkit-border-top-right-radius: 3px; -+ } -+ ul#nav li.selected a, ul#nav li.current_page_item a { -+ background: #f5f5f5; -+ color: #555; -+ } -+ ul#nav a:focus { outline: none; } - - - /*-------------------------------------------------------------- -@@ -274,8 +355,104 @@ div#sidebar ul#bp-nav { - clear: left; - margin: 15px -16px; - } --div#sidebar ul#bp-nav li { -- padding: 10px 15px; -+ div#item-header div#item-header-content { margin-left: 170px; } -+ -+ div#item-header h2 { -+ font-size: 28px; -+ margin: 0 0 15px 0; -+ line-height: 120%; -+ } -+ div#item-header h2 a { -+ text-decoration: none; -+ color: #777; -+ } -+ -+ div#item-header img.avatar { -+ float: left; -+ margin: 0 15px 25px 0; -+ } -+ -+ div#item-header h2 { margin-bottom: 5px; } -+ -+ div#item-header span.activity, div#item-header h2 span.highlight { -+ vertical-align: middle; -+ font-size: 11px; -+ font-weight: normal; -+ line-height: 170%; -+ margin-bottom: 7px; -+ } -+ -+ div#item-header h2 span.highlight { font-size: 16px; } -+ div#item-header h2 span.highlight span { -+ position: relative; -+ top: -2px; -+ right: -2px; -+ font-weight: bold; -+ font-size: 11px; -+ background: #f00; -+ color: #fff; -+ padding: 1px 4px; -+ margin-bottom: 2px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ vertical-align: middle; -+ cursor: pointer; -+ display: none; -+ } -+ -+ div#item-header div#item-meta { -+ font-size: 14px; -+ color: #aaa; -+ padding-bottom: 10px; -+ overflow: hidden; -+ margin: 15px 0 5px 0; -+ } -+ -+ div#item-header div#item-actions { -+ float: right; -+ width: 20%; -+ margin: 0 0 15px 15px; -+ text-align: right; -+ } -+ div#item-header div#item-actions h3 { -+ font-size: 12px; -+ margin: 0 0 5px 0; -+ } -+ -+ div#item-header ul { -+ overflow: hidden; -+ margin-bottom: 15px; -+ } -+ -+ div#item-header ul h5, div#item-header ul span, div#item-header ul hr { -+ display: none; -+ } -+ -+ div#item-header ul li { -+ float: right; -+ } -+ -+ div#item-header ul img.avatar, div#item-header ul.avatars img.avatar { -+ width: 30px; -+ height: 30px; -+ margin: 2px; -+ } -+ -+ div#item-header div.generic-button, div#item-header a.button { -+ float: left; -+ margin: 10px 10px 0 0; -+ } -+ -+ div#item-header div#message.info { -+ line-height: 80%; -+ } -+ -+ -+/* > Item Lists (Activity, Friend, Group lists) -+-------------------------------------------------------------- */ -+ -+ul.item-list { -+ width: 100%; - } - div#sidebar h3.widgettitle { - background: #eaeaea; -@@ -361,18 +538,16 @@ textarea { - resize: vertical; - } - -- --/*-------------------------------------------------------------- --3.1 - Text ----------------------------------------------------------------*/ --big { -- font-size: 18px; --} --del { -- text-decoration: line-through; --} --ins { -- background: #fff9db; -+span.activity, div#message p { -+ display: inline-block; -+ font-size: 11px; -+ font-weight: normal; -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #ff0000; -+ padding: 1px 8px; -+ margin-top: 6px; - text-decoration: none; - } - sub { -@@ -777,16 +952,104 @@ div.comment-meta em { - #reply-title { - margin-top: 0; - } --#reply-title small { -- float: right; -- font-size: 11px; -- font-weight: normal; --} --#reply-title small a { -- margin-right: 0; --} --.commentlist ul.children { -- background: #f5f5f5; -+ body.activity-permalink .activity-list li .activity-content { -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+ background: #fff; -+ padding: 15px; -+ border-bottom: 1px solid #ddd; -+ border-right: 1px solid #ddd; -+ margin-left: 135px; -+ font-size: 16px; -+ line-height: 150%; -+ min-height: 35px; -+ margin-right: 0; -+ } -+ body.activity-permalink .activity-list li .activity-header > p { -+ background: url( ../images/activity_arrow.gif ) top left no-repeat; -+ margin-left: -35px; -+ padding: 5px 0 0 38px; -+ height: 35px; -+ margin-bottom: 0; -+ } -+ -+ .activity-list .activity-content .activity-header, -+ .activity-list .activity-content .comment-header { -+ font-size: 11px; -+ color: #888; -+ line-height: 220%; -+ } -+ -+ .activity-list .activity-content .activity-header img.avatar { -+ float: none !important; -+ margin: 0 5px -8px 0 !important; -+ } -+ -+ .activity-list .activity-header a:first-child, span.highlight { -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #333; -+ padding: 3px 8px; -+ text-decoration: none; -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+ margin-right: 3px; -+ } -+ .activity-list .activity-header a:first-child:hover { -+ background: #ababab !important; -+ color: #fff !important; -+ } -+ .activity-list .activity-content a:first-child:focus { outline: none; } -+ -+ .activity-list .activity-content span.time-since { -+ color: #bbb; -+ } -+ -+ .activity-list .activity-content span.activity-header-meta a { -+ background: none; -+ padding: 0; -+ font-size: 11px; -+ margin: 0; -+ border: none; -+ color: #aaa; -+ text-decoration: underline; -+ } -+ .activity-list .activity-content span.activity-header-meta a:hover { -+ color: inherit; -+ text-decoration: none; -+ } -+ -+ .activity-list .activity-content .activity-inner, -+ .activity-list .activity-content blockquote { -+ margin: 15px 0 15px 5px; -+ overflow: hidden; -+ } -+ body.activity-permalink .activity-content .activity-inner, -+ body.activity-permalink .activity-content blockquote { -+ margin-top: 5px; -+ } -+ -+ /* Backwards compatibility. */ -+ .activity-inner > .activity-inner { margin: 0 !important; } -+ .activity-inner > blockquote { margin: 0 !important; } -+ -+ .activity-list .activity-content img.thumbnail { -+ float: left; -+ margin: 0 10px 5px 0; -+ border: 2px solid #eee; -+ } -+ -+.activity-list li.load-more { -+ margin: 15px 0 !important; -+ padding: 10px 15px !important; -+ background: #f0f0f0 !important; -+ text-align: center; -+ font-size: 1.2em; -+ border-right: 1px solid #ddd; -+ border-bottom: 1px solid #ddd; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; -@@ -805,25 +1068,41 @@ div.comment-meta em { - } - .commentlist ul.children div.comment-meta { - font-size: 11px; -- margin: 0 0 10px 0; --} --.commentlist ul.children li { -- border-top: 2px solid #fffeff; -- padding-top: 10px; --} --.commentlist ul.children li:first-child { -- border-top: none; --} --.commentlist ul.children ul li:first-child { -- border-top: 2px solid #fffeff; --} --#respond { -- background-color: #fafafa; -- border: 1px solid #e5e5e5; -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #f00; -+ padding: 4px 8px; -+ text-decoration: none; - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; -- padding: 15px; -+ margin-right: 3px; -+} -+ .activity-list div.activity-meta a.acomment-reply { -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #000; -+ } -+ -+ div.activity-meta a:focus { outline: none; } -+ div.activity-meta a:hover { -+ background: #aaa; -+ color: #fff; -+ border-color: #aaa; -+ } -+ div.activity-meta a.acomment-reply:hover { -+ background: #ababab; -+ color: #fff; -+ border-color: #ababab; -+ } -+ -+div.activity-comments { -+ position: relative; -+ margin: 0 0 0 75px; -+ width: auto; -+ overflow: hidden; /* IE fix */ - } - #respond .avb img { - float: inherit; -@@ -2436,4 +2715,4 @@ body.register div.page ul { - .field-visibility-settings legend, - .field-visibility-settings-toggle { - font-style: italic; --} -\ No newline at end of file -+} -diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/activity/index.php b/wp-content/plugins/buddypress/bp-themes/bp-default/activity/index.php -index b836784f..a8d2839d 100644 ---- a/wp-content/plugins/buddypress/bp-themes/bp-default/activity/index.php -+++ b/wp-content/plugins/buddypress/bp-themes/bp-default/activity/index.php -@@ -36,7 +36,7 @@ get_header( 'buddypress' ); ?> - <ul> - <?php do_action( 'bp_before_activity_type_tab_all' ); ?> - -- <li class="selected" id="activity-all"><a href="<?php bp_activity_directory_permalink(); ?>" title="<?php esc_attr_e( 'The public activity for everyone on this site.', 'buddypress' ); ?>"><?php printf( __( 'All Members <span>%s</span>', 'buddypress' ), bp_get_total_member_count() ); ?></a></li> -+ <li class="selected" id="activity-all"><a href="<?php bp_activity_directory_permalink(); ?>" title="<?php esc_attr_e( 'The public activity for everyone on this site.', 'buddypress' ); ?>"><?php printf( __( 'All People <span>%s</span>', 'buddypress' ), bp_get_total_member_count() ); ?></a></li> - - <?php if ( is_user_logged_in() ) : ?> - -@@ -125,7 +125,7 @@ get_header( 'buddypress' ); ?> - - <?php endif; ?> - -- <option value="new_member"><?php _e( 'New Members', 'buddypress' ); ?></option> -+ <option value="new_member"><?php _e( 'New People', 'buddypress' ); ?></option> - - <?php do_action( 'bp_activity_filter_options' ); ?> - -diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/footer.php b/wp-content/plugins/buddypress/bp-themes/bp-default/footer.php -index 6d300774..85ebf9ed 100644 ---- a/wp-content/plugins/buddypress/bp-themes/bp-default/footer.php -+++ b/wp-content/plugins/buddypress/bp-themes/bp-default/footer.php -@@ -4,6 +4,7 @@ - <?php do_action( 'bp_before_footer' ); ?> - - <div id="footer"> -+ - <?php if ( is_active_sidebar( 'first-footer-widget-area' ) || is_active_sidebar( 'second-footer-widget-area' ) || is_active_sidebar( 'third-footer-widget-area' ) || is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?> - <div id="footer-widgets"> - <?php get_sidebar( 'footer' ); ?> -@@ -11,8 +12,8 @@ - <?php endif; ?> - - <div id="site-generator" role="contentinfo"> -- <?php do_action( 'bp_dtheme_credits' ); ?> -- <p><?php printf( __( 'Proudly powered by <a href="%1$s">WordPress</a> and <a href="%2$s">BuddyPress</a>.', 'buddypress' ), 'http://wordpress.org', 'http://buddypress.org' ); ?></p> -+ <?php do_action( 'bp_dtheme_credits' ) ?> -+ <p><?php printf( __( '%s is proudly powered by <a href="http://wordpress.org">WordPress</a> and <a href="http://buddypress.org">BuddyPress</a> and <a href="http://autistici.org"><img src="/wp-content/uploads/2010/08/autistici.org_.png" /></a>', 'buddypress' ), get_bloginfo( 'name' ) ); ?></p> - </div> - - <?php do_action( 'bp_footer' ); ?> -@@ -25,4 +26,4 @@ - - </body> - --</html> -\ No newline at end of file -+</html> -diff --git a/wp-content/plugins/buddypress/bp-themes/bp-default/header.php b/wp-content/plugins/buddypress/bp-themes/bp-default/header.php -index aa73e8d4..32d65606 100644 ---- a/wp-content/plugins/buddypress/bp-themes/bp-default/header.php -+++ b/wp-content/plugins/buddypress/bp-themes/bp-default/header.php -@@ -17,7 +17,47 @@ - <?php do_action( 'bp_before_header' ); ?> - - <div id="header"> -- <div id="search-bar" role="search"> -+ <h1 id="logo"><a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>">Information disorder was not enough</a></h1> -+ -+ <ul id="nav"> -+ <li<?php if ( bp_is_front_page() ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a> -+ </li> -+ -+ <?php if ( 'activity' != bp_dtheme_page_on_front() && bp_is_active( 'activity' ) ) : ?> -+ <li<?php if ( bp_is_page( BP_ACTIVITY_SLUG ) ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Activity', 'buddypress' ) ?>"><?php _e( 'Activity', 'buddypress' ) ?></a> -+ </li> -+ <?php endif; ?> -+ -+ <li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_MEMBERS_SLUG ?>/" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'People', 'buddypress' ) ?></a> -+ </li> -+ -+ <?php if ( bp_is_active( 'groups' ) ) : ?> -+ <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_GROUPS_SLUG ?>/" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a> -+ </li> -+ -+ <?php if ( bp_is_active( 'forums' ) && ( function_exists( 'bp_forums_is_installed_correctly' ) && !(int) bp_get_option( 'bp-disable-forum-directory' ) ) && bp_forums_is_installed_correctly() ) : ?> -+ <li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_FORUMS_SLUG ?>/" title="<?php _e( 'Forums', 'buddypress' ) ?>"><?php _e( 'Forums', 'buddypress' ) ?></a> -+ </li> -+ <?php endif; ?> -+ <?php endif; ?> -+ -+ <?php if ( bp_is_active( 'blogs' ) && bp_core_is_multisite() ) : ?> -+ <li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_BLOGS_SLUG ?>/" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a> -+ </li> -+ <?php endif; ?> -+ -+ <?php wp_list_pages( 'title_li=&depth=1&exclude=' . bp_dtheme_page_on_front() ); ?> -+ -+ <?php do_action( 'bp_nav_items' ); ?> -+ </ul><!-- #nav --> -+ -+ <div id="search-bar"> - <div class="padder"> - <h1 id="logo" role="banner"><a href="<?php echo home_url(); ?>" title="<?php echo esc_attr_x( 'Home', 'Home page banner link title', 'buddypress' ); ?>"><?php bp_site_name(); ?></a></h1> - -@@ -35,6 +75,7 @@ - - <?php do_action( 'bp_search_login_bar' ); ?> - -+ <?php echo "<p align='right' style='color:black;'><i>“The environment is so full of television, party political broadcasts and<br /> advertising campaigns that you hardly need to do anything.”</i> (JG Ballard)</p>" ; ?> - </div><!-- .padder --> - </div><!-- #search-bar --> - --- -2.17.1 + + \ No newline at end of file diff --git a/patches/buddypress/0061-Patch-theme-darwin-buddypress-buddypack.patch b/patches/buddypress/0061-Patch-theme-darwin-buddypress-buddypack.patch deleted file mode 100644 index 82ca3bd27f92592a980feb7f8a8c8642f7afa05f..0000000000000000000000000000000000000000 --- a/patches/buddypress/0061-Patch-theme-darwin-buddypress-buddypack.patch +++ /dev/null @@ -1,173 +0,0 @@ -From 47fb495e509571380abb99173f486c80f3969b90 Mon Sep 17 00:00:00 2001 -From: root <root@rivolta.investici.org> -Date: Tue, 7 Dec 2010 12:30:21 +0000 -Subject: [PATCH 061/229] Patch theme darwin-buddypress-buddypack - ---- - .../darwin-buddypress-buddypack/style.css | 50 ++++++++----------- - 1 file changed, 22 insertions(+), 28 deletions(-) - -diff --git a/wp-content/themes/darwin-buddypress-buddypack/style.css b/wp-content/themes/darwin-buddypress-buddypack/style.css -index 79e0b548..26aa813c 100644 ---- a/wp-content/themes/darwin-buddypress-buddypack/style.css -+++ b/wp-content/themes/darwin-buddypress-buddypack/style.css -@@ -21,9 +21,7 @@ body { - font-family: Tahoma, Verdana, sans-serif; - line-height: 160%; - color: #333; -- width: 90%; - min-width: 960px; -- max-width: 1250px; - margin: 0 auto; - padding-top: 0 !important; /* Remove the top padding space for the admin bar in this theme */ - } -@@ -78,22 +76,15 @@ span.activity, div#message p { - text-decoration: none; - } - --/* > Admin Bar ---------------------------------------------------------------- */ -- --#wp-admin-bar .padder { -- width: 90% !important; /* Line up the admin bar with the content body in this theme */ --} -- - /* > Header - -------------------------------------------------------------- */ - - #header { - position: relative; - color: #fff; -- background: #ba1800 url(darwin-sample.gif) repeat-x; -+ background: url("http://noblogs.autistici.org/wp-content/uploads/2010/06/header-noblogs.gif") no-repeat 0 -10px #FF0000; - margin-bottom: 20px; -- height: 100px; -+ height: 120px; - padding-top: 25px; - } - body.activity-permalink #header { height: 65px; } -@@ -151,11 +142,11 @@ ul#nav { - padding: 0; - position: absolute; - list-style: none; -- background: #bc1800; -+ background: #000000; - width: 100%; - padding: 5px 0; -- top: 100px; -- border-top: 1px solid #cd4225; -+ top: 120px; -+ border-top: 1px solid #333333; - border-bottom: 1px solid #941300; - } - body.activity-permalink ul#nav { display: none; } -@@ -169,14 +160,14 @@ ul#nav { - font-weight: bold; - text-decoration: none; - padding: 7px 15px; -- background: #bc1800; -- border-right: 1px solid #9b0f00; -- border-left: 1px solid #cd4225; -+ background: #00000; -+ border-right: 1px solid #666666; -+ border-left: 1px solid #333333; - text-shadow: #000 1px 1px 0; - } - ul#nav li.selected a { - text-shadow: #222 1px 1px 0; -- background: #d31f04; -+ background: #333333; - color: #fff; - font-weight: bold; - } -@@ -186,10 +177,13 @@ ul#nav { - - div#container { - position: relative; -- width: 100%; -+ width: 90%; -+ max-width: 1250px; -+ min-width: 960px; - border-bottom: 1px solid #e0e0e0; - background: #fff; - overflow: hidden; -+ margin: 0 auto; - } - body.activity-permalink div#container { - background: none; -@@ -666,6 +660,7 @@ form.standard-form { - - form.standard-form input[type=password] { - margin-bottom: 5px; -+ width:75%; - } - - form.standard-form label, form.standard-form span.label { -@@ -897,7 +892,7 @@ form#whats-new-form { - overflow: hidden; - padding: 8px; - background: #f2f2f2; -- -+ - } - #item-body form#whats-new-form { - margin-top: 20px; -@@ -1111,7 +1106,7 @@ ul.activity-list li { - text-align: center; - font-size: 1.2em; - border: 1px solid #d8dfea; -- -+ - } - .activity-list li.load-more a { - color: #bc1800; -@@ -1186,7 +1181,7 @@ div.activity-comments ul, div.activity-comments ul li { - } - body.activity-permalink div.activity-comments ul li { - padding: 15px 0; -- -+ - } - - div.activity-comments ul li p:last-child { -@@ -1287,7 +1282,7 @@ div.activity-comments ul, div.activity-comments ul li { - - div.activity-comments form div.ac-reply-avatar { - float: left; -- -+ - } - div.ac-reply-avatar img { - border: 2px solid #fff !important; -@@ -1462,7 +1457,7 @@ div.post { - font-size: 16px; - margin-bottom: 5px; - line-height: 120%; -- -+ - } - div.post h3 a { - text-decoration: none; -@@ -1647,10 +1642,8 @@ body { - position: relative; - padding: 0; - width: 100%; -- min-width: 960px; -- max-width: 1250px; - margin: 0 auto; -- background: #bc1800; -+ background: #000000; - height: 25px; - } - body.activity-permalink #wp-admin-bar .padder { -@@ -1819,4 +1812,5 @@ body { - #wp-admin-bar ul li#bp-adminbar-notifications-menu a span { - padding: 0 6px; - margin-left: 2px; --} -\ No newline at end of file -+} -+} --- -2.17.1 - diff --git a/patches/buddypress/0092-buddypress-override-some-avatar-functions.patch b/patches/buddypress/0092-buddypress-override-some-avatar-functions.patch index f75087dd15dc5fd611e030664f66e130194f5aec..5bee5162c1bfcff81f5fa7cd8d7b5f4ae5415aed 100644 --- a/patches/buddypress/0092-buddypress-override-some-avatar-functions.patch +++ b/patches/buddypress/0092-buddypress-override-some-avatar-functions.patch @@ -12,7 +12,7 @@ diff --git a/wp-content/plugins/bp-custom.php b/wp-content/plugins/bp-custom.php new file mode 100644 index 00000000..6b0e71b1 --- /dev/null -+++ b/wp-content/plugins/bp-custom.php ++++ b/bp-custom.php @@ -0,0 +1,21 @@ +<?php +//Utilizza gli avatar di buddypress se presenti diff --git a/patches/buddypress/0105-symlink-bp-default-theme-to-buddypress-plugin-direct.patch b/patches/buddypress/0105-symlink-bp-default-theme-to-buddypress-plugin-direct.patch deleted file mode 100644 index f7e08c0d27dbe0d99f8e4dc8d471c66654f435ff..0000000000000000000000000000000000000000 --- a/patches/buddypress/0105-symlink-bp-default-theme-to-buddypress-plugin-direct.patch +++ /dev/null @@ -1,22 +0,0 @@ -From f7bdd99e0772fb74bff0c62c2aedb58f2cd71954 Mon Sep 17 00:00:00 2001 -From: root <root@rivolta.investici.org> -Date: Sun, 6 Mar 2011 00:42:20 +0000 -Subject: [PATCH 105/229] symlink bp-default theme to buddypress plugin - directory - ---- - wp-content/themes/bp-default | 1 + - 1 file changed, 1 insertion(+) - create mode 120000 wp-content/themes/bp-default - -diff --git a/wp-content/themes/bp-default b/wp-content/themes/bp-default -new file mode 120000 -index 00000000..e67ec49c ---- /dev/null -+++ b/wp-content/themes/bp-default -@@ -0,0 +1 @@ -+../plugins/buddypress/bp-themes/bp-default -\ No newline at end of file --- -2.17.1 - diff --git a/patches/buddypress/0137-buddypress-noblogs-child-theme-fix.patch b/patches/buddypress/0137-buddypress-noblogs-child-theme-fix.patch deleted file mode 100644 index b769a028ff11bf3d57ce68705a71a056c1df3060..0000000000000000000000000000000000000000 --- a/patches/buddypress/0137-buddypress-noblogs-child-theme-fix.patch +++ /dev/null @@ -1,286 +0,0 @@ -From 5b774511afc6c40b43f02bde1ff44ce0d8558005 Mon Sep 17 00:00:00 2001 -From: root <root@noblogs-staging.m.investici.org> -Date: Sat, 28 Jan 2012 00:22:35 +0000 -Subject: [PATCH 137/229] buddypress noblogs child theme fix - ---- - wp-content/themes/noblogs-home/header.php | 79 ++++++++++++++++++ - .../noblogs-home/images/noblogs-bp1.png | Bin 0 -> 4956 bytes - .../noblogs-home/images/sidebar_back.gif | Bin 0 -> 160 bytes - wp-content/themes/noblogs-home/style.css | 60 ++++++++++++- - 4 files changed, 136 insertions(+), 3 deletions(-) - create mode 100644 wp-content/themes/noblogs-home/header.php - create mode 100644 wp-content/themes/noblogs-home/images/noblogs-bp1.png - create mode 100644 wp-content/themes/noblogs-home/images/sidebar_back.gif - -diff --git a/wp-content/themes/noblogs-home/header.php b/wp-content/themes/noblogs-home/header.php -new file mode 100644 -index 00000000..45d5f9d1 ---- /dev/null -+++ b/wp-content/themes/noblogs-home/header.php -@@ -0,0 +1,79 @@ -+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -+ -+<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> -+ <head profile="http://gmpg.org/xfn/11"> -+ <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ) ?>; charset=<?php bloginfo( 'charset' ) ?>" /> -+ <title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title> -+ -+ <?php do_action( 'bp_head' ) ?> -+ -+ <link rel="pingback" href="<?php bloginfo( 'pingback_url' ) ?>" /> -+ -+ <?php -+ if ( is_singular() && bp_is_blog_page() && get_option( 'thread_comments' ) ) -+ wp_enqueue_script( 'comment-reply' ); -+ -+ wp_head(); -+ ?> -+ </head> -+ -+ <body <?php body_class() ?> id="bp-default"> -+ -+ <?php do_action( 'bp_before_header' ) ?> -+ -+ <div id="header"> -+ -+ <h1 id="logo"><a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>">Information disorder was not enough</a></h1> -+ -+ <ul id="nav"> -+ <li<?php if ( bp_is_front_page() ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a> -+ </li> -+ -+ <?php if ( 'activity' != bp_dtheme_page_on_front() && bp_is_active( 'activity' ) ) : ?> -+ <li<?php if ( bp_is_page( BP_ACTIVITY_SLUG ) ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_ACTIVITY_SLUG ?>/" title="<?php _e( 'Activity', 'buddypress' ) ?>"><?php _e( 'Activity', 'buddypress' ) ?></a> -+ </li> -+ <?php endif; ?> -+ -+ <li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) || bp_is_member() ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_MEMBERS_SLUG ?>/" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'People', 'buddypress' ) ?></a> -+ </li> -+ -+ <?php if ( bp_is_active( 'groups' ) ) : ?> -+ <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) || bp_is_group() ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_GROUPS_SLUG ?>/" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a> -+ </li> -+ -+ <?php if ( bp_is_active( 'forums' ) && ( function_exists( 'bp_forums_is_installed_correctly' ) && !(int) bp_get_option( 'bp-disable-forum-directory' ) ) && bp_forums_is_installed_correctly() ) : ?> -+ <li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_FORUMS_SLUG ?>/" title="<?php _e( 'Forums', 'buddypress' ) ?>"><?php _e( 'Forums', 'buddypress' ) ?></a> -+ </li> -+ <?php endif; ?> -+ <?php endif; ?> -+ -+ <?php if ( bp_is_active( 'blogs' ) && bp_core_is_multisite() ) : ?> -+ <li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>> -+ <a href="<?php echo site_url() ?>/<?php echo BP_BLOGS_SLUG ?>/" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a> -+ </li> -+ <?php endif; ?> -+ -+ <!--<?php wp_list_pages( 'title_li=&depth=1&exclude=' . bp_dtheme_page_on_front() ); ?> --> -+ -+ <?php do_action( 'bp_nav_items' ); ?> -+ </ul> <!-- #nav --> -+ -+ <div id="search-bar"> -+ <div class="padder"> -+ <?php echo "<p align='right' style='color:black;'><i>“The environment is so full of television, party political broadcasts and<br /> advertising campaigns that you hardly need to do anything.”</i> (JG Ballard)</p>" ; ?> -+ </div><!-- .padder --> -+ </div> <!-- #search-bar --> -+ -+ <?php do_action( 'bp_header' ) ?> -+ -+ </div><!-- #header --> -+ -+ <?php do_action( 'bp_after_header' ) ?> -+ <?php do_action( 'bp_before_container' ) ?> -+ -+ <div id="container"> -diff --git a/wp-content/themes/noblogs-home/images/noblogs-bp1.png b/wp-content/themes/noblogs-home/images/noblogs-bp1.png -new file mode 100644 -index 0000000000000000000000000000000000000000..647b3a1ac5f22bb1596fc7329413cc9bd6fa5f4f -GIT binary patch -literal 4956 -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 - -literal 0 -HcmV?d00001 - -diff --git a/wp-content/themes/noblogs-home/images/sidebar_back.gif b/wp-content/themes/noblogs-home/images/sidebar_back.gif -new file mode 100644 -index 0000000000000000000000000000000000000000..0a0142d101f829fcc906702badbe7a519d806704 -GIT binary patch -literal 160 -zcmZ?wbhEHbWMSxI*v!E2``7OuKY#xC@#FXJ-+%u6`St79-@ku<{`~px-@pI=|1)3! -z#h)x-F&z*IGJ}D|H{gWl>bVbJoZbCDL8C7=abCu%bvdt>IqRG^akyWx?y}4K{|6Qn -xc<2c6oLEwHGRJEE1@$DawNdMDtSLKvS8d;e4HZ6mv(LZSQgt?O_entpYXGU8O{V|= - -literal 0 -HcmV?d00001 - -diff --git a/wp-content/themes/noblogs-home/style.css b/wp-content/themes/noblogs-home/style.css -index 439a7047..dc25c8c7 100644 ---- a/wp-content/themes/noblogs-home/style.css -+++ b/wp-content/themes/noblogs-home/style.css -@@ -10,12 +10,24 @@ Tags: buddypress, two-column, grey, dark - */ - - --/* Inherit the default theme styles */ -+/* Inherit the default theme styles - @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css ); --/* Inherit the default theme adminbar styles */ --@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css ); -+ Inherit the default theme adminbar styles -+@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );*/ - - -+h1 { font-size: 28px; margin-bottom: 25px; } -+h2 { font-size: 24px; margin-bottom: 20px; } -+h3 { font-size: 20px; } -+h4 { font-size: 16px; margin-bottom: 15px; } -+h5 { font-size: 14px; margin-bottom: 0; } -+h6 { font-size: 12px; margin-bottom: 0; } -+ -+a { color: #000; text-decoration: none; } -+a:hover { color: #ff0000; } -+a:active { color: #888; } -+a:focus { outline: 1px dotted #ccc; } -+ - #noblogs_about { - height: 200px; - background: url(/wp-content/themes/noblogs-home/images/animation.gif) no-repeat; -@@ -40,3 +52,45 @@ Tags: buddypress, two-column, grey, dark - color: #666; - vertical-align: bottom; - } -+ -+#header { -+ background-image: url(images/noblogs-bp1.png); -+} -+#header h1 a, #desc { -+ color:#FFFFFF; -+} -+div#container { -+ position: relative; -+ width: 100%; -+ -moz-border-radius: 6px; -+ -webkit-border-radius: 6px; -+ border-right: 1px solid #e0e0e0; -+ border-bottom: 1px solid #e0e0e0; -+ background: #fff; -+ overflow: hidden; -+} -+ body.activity-permalink div#container { -+ background: none; -+ border: none; -+ } -+ -+div#content .padder { -+ margin-right: 225px; -+ border-right: 1px solid #ddd; -+ -moz-border-radius-topleft: 6px; -+ -webkit-border-top-left-radius: 6px; -+ -moz-border-radius-bottomleft: 6px; -+ -webkit-border-bottom-left-radius: 6px; -+} -+ -+div#sidebar { -+ float: left; -+ width: 224px; -+ margin-left: -226px; -+ margin-top: 1px; -+ border-left: 1px solid #ddd; -+ -moz-border-radius-topright: 3px; -+ -webkit-border-top-right-radius: 3px; -+ background: url( images/sidebar_back.gif ) top left repeat-x; -+} -+ --- -2.17.1 - diff --git a/patches/buddypress/0138-buddypress-child-theme-fixed-sidebar-in-activity-tab.patch b/patches/buddypress/0138-buddypress-child-theme-fixed-sidebar-in-activity-tab.patch deleted file mode 100644 index 6d5edca906eda3d9fa170854b1f4320e79f61836..0000000000000000000000000000000000000000 --- a/patches/buddypress/0138-buddypress-child-theme-fixed-sidebar-in-activity-tab.patch +++ /dev/null @@ -1,173 +0,0 @@ -From bbe236dcf80fb17f2f21ec5e4ff8f17d226afd79 Mon Sep 17 00:00:00 2001 -From: root <root@noblogs-staging.m.investici.org> -Date: Sat, 28 Jan 2012 00:38:40 +0000 -Subject: [PATCH 138/229] buddypress child theme fixed sidebar in activity tab - ---- - .../themes/noblogs-home/activity/index.php | 154 ++++++++++++++++++ - 1 file changed, 154 insertions(+) - create mode 100644 wp-content/themes/noblogs-home/activity/index.php - -diff --git a/wp-content/themes/noblogs-home/activity/index.php b/wp-content/themes/noblogs-home/activity/index.php -new file mode 100644 -index 00000000..a2718d9d ---- /dev/null -+++ b/wp-content/themes/noblogs-home/activity/index.php -@@ -0,0 +1,154 @@ -+<?php -+ -+/** -+ * Template Name: BuddyPress - Activity Directory -+ * -+ * @package BuddyPress -+ * @subpackage Theme -+ */ -+ -+?> -+<?php get_header( 'buddypress' ); ?> -+ -+ <?php do_action( 'bp_before_directory_activity_page' ); ?> -+ -+ <div id="content"> -+ <div class="padder"> -+ -+ <?php do_action( 'bp_before_directory_activity' ); ?> -+ -+ <?php if ( !is_user_logged_in() ) : ?> -+ -+ <h3><?php _e( 'Site Activity', 'buddypress' ); ?></h3> -+ -+ <?php endif; ?> -+ -+ <?php do_action( 'bp_before_directory_activity_content' ); ?> -+ -+ <?php if ( is_user_logged_in() ) : ?> -+ -+ <?php locate_template( array( 'activity/post-form.php'), true ); ?> -+ -+ <?php endif; ?> -+ -+ <?php do_action( 'template_notices' ); ?> -+ -+ <div class="item-list-tabs activity-type-tabs" role="navigation"> -+ <ul> -+ <?php do_action( 'bp_before_activity_type_tab_all' ); ?> -+ -+ <li class="selected" id="activity-all"><a href="<?php echo bp_loggedin_user_domain() . BP_ACTIVITY_SLUG . '/' ?>" title="<?php _e( 'The public activity for everyone on this site.', 'buddypress' ) ?>"><?php printf( __( 'All People (%s)', 'buddypress' ), bp_get_total_site_member_count() ) ?></a></li> -+ -+ <?php if ( is_user_logged_in() ) : ?> -+ -+ <?php do_action( 'bp_before_activity_type_tab_friends' ) ?> -+ -+ <?php if ( bp_is_active( 'friends' ) ) : ?> -+ -+ <?php if ( bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?> -+ -+ <li id="activity-friends"><a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/' . bp_get_friends_slug() . '/'; ?>" title="<?php _e( 'The activity of my friends only.', 'buddypress' ); ?>"><?php printf( __( 'My Friends <span>%s</span>', 'buddypress' ), bp_get_total_friend_count( bp_loggedin_user_id() ) ); ?></a></li> -+ -+ <?php endif; ?> -+ -+ <?php endif; ?> -+ -+ <?php do_action( 'bp_before_activity_type_tab_groups' ) ?> -+ -+ <?php if ( bp_is_active( 'groups' ) ) : ?> -+ -+ <?php if ( bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) : ?> -+ -+ <li id="activity-groups"><a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/' . bp_get_groups_slug() . '/'; ?>" title="<?php _e( 'The activity of groups I am a member of.', 'buddypress' ); ?>"><?php printf( __( 'My Groups <span>%s</span>', 'buddypress' ), bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ); ?></a></li> -+ -+ <?php endif; ?> -+ -+ <?php endif; ?> -+ -+ <?php do_action( 'bp_before_activity_type_tab_favorites' ); ?> -+ -+ <?php if ( bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) ) : ?> -+ -+ <li id="activity-favorites"><a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/favorites/'; ?>" title="<?php _e( "The activity I've marked as a favorite.", 'buddypress' ); ?>"><?php printf( __( 'My Favorites <span>%s</span>', 'buddypress' ), bp_get_total_favorite_count_for_user( bp_loggedin_user_id() ) ); ?></a></li> -+ -+ <?php endif; ?> -+ -+ <?php do_action( 'bp_before_activity_type_tab_mentions' ); ?> -+ -+ <li id="activity-mentions"><a href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() . '/mentions/'; ?>" title="<?php _e( 'Activity that I have been mentioned in.', 'buddypress' ); ?>"><?php _e( 'Mentions', 'buddypress' ); ?><?php if ( bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ) : ?> <strong><?php printf( __( '<span>%s new</span>', 'buddypress' ), bp_get_total_mention_count_for_user( bp_loggedin_user_id() ) ); ?></strong><?php endif; ?></a></li> -+ -+ <?php endif; ?> -+ -+ <?php do_action( 'bp_activity_type_tabs' ); ?> -+ </ul> -+ </div><!-- .item-list-tabs --> -+ -+ <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> -+ <ul> -+ <li class="feed"><a href="<?php bp_sitewide_activity_feed_link() ?>" title="<?php _e( 'RSS Feed', 'buddypress' ); ?>"><?php _e( 'RSS', 'buddypress' ); ?></a></li> -+ -+ <?php do_action( 'bp_activity_syndication_options' ); ?> -+ -+ <li id="activity-filter-select" class="last"> -+ <label for="activity-filter-by"><?php _e( 'Show:', 'buddypress' ); ?></label> -+ <select id="activity-filter-by"> -+ <option value="-1"><?php _e( 'Everything', 'buddypress' ); ?></option> -+ <option value="activity_update"><?php _e( 'Updates', 'buddypress' ); ?></option> -+ -+ <?php if ( bp_is_active( 'blogs' ) ) : ?> -+ -+ <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ); ?></option> -+ <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ); ?></option> -+ -+ <?php endif; ?> -+ -+ <?php if ( bp_is_active( 'forums' ) ) : ?> -+ -+ <option value="new_forum_topic"><?php _e( 'Forum Topics', 'buddypress' ); ?></option> -+ <option value="new_forum_post"><?php _e( 'Forum Replies', 'buddypress' ); ?></option> -+ -+ <?php endif; ?> -+ -+ <?php if ( bp_is_active( 'groups' ) ) : ?> -+ -+ <option value="created_group"><?php _e( 'New Groups', 'buddypress' ); ?></option> -+ <option value="joined_group"><?php _e( 'Group Memberships', 'buddypress' ); ?></option> -+ -+ <?php endif; ?> -+ -+ <?php if ( bp_is_active( 'friends' ) ) : ?> -+ -+ <option value="friendship_accepted,friendship_created"><?php _e( 'Friendships', 'buddypress' ); ?></option> -+ -+ <?php endif; ?> -+ -+ <option value="new_member"><?php _e( 'Show New People', 'buddypress' ) ?></option> -+ -+ </select> -+ </li> -+ </ul> -+ </div><!-- .item-list-tabs --> -+ -+ <?php do_action( 'bp_before_directory_activity_list' ); ?> -+ -+ <div class="activity" role="main"> -+ -+ <?php locate_template( array( 'activity/activity-loop.php' ), true ); ?> -+ -+ </div><!-- .activity --> -+ -+ <?php do_action( 'bp_after_directory_activity_list' ); ?> -+ -+ <?php do_action( 'bp_directory_activity_content' ); ?> -+ -+ <?php do_action( 'bp_after_directory_activity_content' ); ?> -+ -+ <?php do_action( 'bp_after_directory_activity' ); ?> -+ -+ </div><!-- .padder --> -+ </div><!-- #content --> -+ -+ <?php do_action( 'bp_after_directory_activity_page' ); ?> -+ -+<?php get_sidebar( 'buddypress' ); ?> -+<?php get_footer() ?> --- -2.17.1 - diff --git a/patches/buddypress/0139-added-correctly-our-buddypress-theme.patch b/patches/buddypress/0139-added-correctly-our-buddypress-theme.patch deleted file mode 100644 index 6b65c8058976bebb4d1109531407ae535f2efe58..0000000000000000000000000000000000000000 --- a/patches/buddypress/0139-added-correctly-our-buddypress-theme.patch +++ /dev/null @@ -1,1807 +0,0 @@ -From edca2bc1d1519d8b3aa312408ece56f094b47e5d Mon Sep 17 00:00:00 2001 -From: Joe <joe@autistici.org> -Date: Sun, 19 Feb 2012 16:57:59 +0000 -Subject: [PATCH 139/229] added correctly our buddypress theme - ---- - wp-content/themes/ai-buddytheme/function.php | 0 - wp-content/themes/ai-buddytheme/style.css | 1783 ++++++++++++++++++ - 2 files changed, 1783 insertions(+) - create mode 100644 wp-content/themes/ai-buddytheme/function.php - create mode 100644 wp-content/themes/ai-buddytheme/style.css - -diff --git a/wp-content/themes/ai-buddytheme/function.php b/wp-content/themes/ai-buddytheme/function.php -new file mode 100644 -index 00000000..e69de29b -diff --git a/wp-content/themes/ai-buddytheme/style.css b/wp-content/themes/ai-buddytheme/style.css -new file mode 100644 -index 00000000..7ac56fc1 ---- /dev/null -+++ b/wp-content/themes/ai-buddytheme/style.css -@@ -0,0 +1,1783 @@ -+/* -+Theme Name: BuddyPress A/I -+Theme URI: -+Description: -+Version: 1.0 -+Author: -+Author URI: -+Template: bp-default -+Tags: buddypress -+*/ -+ -+/* > Global Elements -+-------------------------------------------------------------- */ -+ -+body { -+ background: #eaeaea url( ../images/background.gif ) top left repeat-x; -+ font-size: 12px; -+ font-family: Arial, Tahoma, Verdana, sans-serif; -+ line-height: 170%; -+ color: #555; -+ width: 90%; -+ min-width: 960px; -+ max-width: 1250px; -+ margin: 0 auto; -+ padding-top: 0 !important; /* Remove the top padding space for the admin bar in this theme */ -+} -+ body.activity-permalink { -+ min-width: 960px; -+ max-width: 1250pc; -+ width: 90%; -+ } -+ -+h1, h2, h3, h4, h5, h6 { -+ margin: 5px 0 15px 0; -+} -+ -+h1 { font-size: 28px; margin-bottom: 25px; } -+h2 { font-size: 24px; margin-bottom: 20px; } -+h3 { font-size: 20px; } -+h4 { font-size: 16px; margin-bottom: 15px; } -+h5 { font-size: 14px; margin-bottom: 0; } -+h6 { font-size: 12px; margin-bottom: 0; } -+ -+a { color: #000; text-decoration: none; } -+a:hover { color: #ff0000; } -+a:active { color: #888; } -+a:focus { outline: 1px dotted #ccc; } -+ -+.padder { padding: 19px; } -+.clear { clear: left; } -+ -+p { margin-bottom: 15px; } -+p:last-child { margin-bottom: 0; } -+ -+hr { -+ background-color:#E7E7E7; -+ border:0 none; -+ clear:both; -+ height:1px; -+ margin: 20px 0; -+} -+ -+img.avatar { -+ background: #ffffff; -+ padding: 4px; -+ border: 1px solid #ddd; -+/* Round Corners (native in Safari, Firefox and Chrome) */ -+ -moz-border-radius: 6px; -+ -webkit-border-radius: 6px; -+/* Add the Shadow */ -+ -moz-box-shadow: 2px 2px 2px #dddddd; -+ -webkit-box-shadow: 2px 2px 2px #dddddd; -+} -+ -+/* > Admin Bar -+-------------------------------------------------------------- */ -+ -+#wp-admin-bar .padder { -+ width: 90% !important; /* Line up the admin bar with the content body in this theme */ -+} -+ -+/* > Header -+-------------------------------------------------------------- */ -+ -+#header { -+ position: relative; -+ color: #fff; -+ background: url( ../images/default_header.jpg); -+ -moz-border-radius-bottomleft: 6px; -+ -webkit-border-bottom-left-radius: 6px; -+ -moz-border-radius-bottomright: 6px; -+ -webkit-border-bottom-right-radius: 6px; -+ margin-bottom: 20px; -+ min-width: 960px; -+ max-width: 1250px; -+ height: 100px; -+ padding-top: 25px; -+} -+ #header #search-bar { -+ position: absolute; -+ top: 25px; -+ right: 0; -+ width: 100%; -+ text-align: right; -+ } -+ -+ #header h1 { -+ line-height: 230%; -+ } -+ -+ #header #search-bar .padder { -+ padding: 10px 20px; -+ } -+ -+ #header #search-bar input[type=text] { -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ border: 1px inset #888; -+ padding: 2px; -+ margin-right: 4px; -+ } -+ -+ #header #search-bar input[type=submit] { -+ font-size: 11px; -+ padding: 1px 4px; -+ margin-left: 4px; -+ } -+ -+ #header h1 { -+ position: absolute; -+ bottom: 0; -+ left: 20px; -+ width: 44%; -+ margin: 0 0 -5px 0; -+ } -+ #header h1 a { -+ color: #fff; -+ font-size: 26px; -+ text-decoration: none; -+ } -+ -+/* > Navigation -+-------------------------------------------------------------- */ -+ -+ul#nav { -+ margin: 0; -+ padding: 0; -+ position: absolute; -+ right: 15px; -+ list-style: none; -+ bottom: 0; -+ max-width: 65%; -+} -+ ul#nav li { -+ float: left; -+ margin: 0 5px 0 0; -+ } -+ ul#nav li a { -+ display: block; -+ color: #fff; -+ text-decoration: none; -+ padding: 5px 15px; -+ background: #333; -+ -moz-border-radius-topleft: 3px; -+ -webkit-border-top-left-radius: 3px; -+ -moz-border-radius-topright: 3px; -+ -webkit-border-top-right-radius: 3px; -+ } -+ ul#nav li.selected a, ul#nav li.current_page_item a { -+ background: #f5f5f5; -+ color: #555; -+ } -+ ul#nav a:focus { outline: none; } -+ -+/* > Container -+-------------------------------------------------------------- */ -+ -+div#container { -+ position: relative; -+ width: 100%; -+ -moz-border-radius: 6px; -+ -webkit-border-radius: 6px; -+ border-right: 1px solid #e0e0e0; -+ border-bottom: 1px solid #e0e0e0; -+ background: #fff; -+ overflow: hidden; -+} -+ body.activity-permalink div#container { -+ background: none; -+ border: none; -+ } -+ -+/* > Sidebar -+-------------------------------------------------------------- */ -+ -+div#sidebar { -+ float: left; -+ width: 224px; -+ margin-left: -226px; -+ margin-top: 1px; -+ border-left: 1px solid #ddd; -+ -moz-border-radius-topright: 3px; -+ -webkit-border-top-right-radius: 3px; -+ background: url( ../images/sidebar_back.gif ) top left repeat-x; -+} -+ div#sidebar div#sidebar-me img.avatar { -+ float: left; -+ margin: 0 10px 15px 0; -+ } -+ -+ div#sidebar div#sidebar-me h4 { -+ font-size: 16px; -+ margin: 0 0 8px 0; -+ font-weight: normal; -+ } -+ -+ -+ div#sidebar ul#bp-nav { -+ clear: left; -+ margin: 15px -16px; -+ } -+ div#sidebar ul#bp-nav li { -+ padding: 10px 15px; -+ } -+ -+ div#sidebar h3.widgettitle { -+ margin: 25px -20px 10px -19px; -+ background: #eaeaea; -+ padding: 5px 15px; -+ font-size: 12px; -+ clear: left; -+ } -+ -+ div#sidebar .widget_search { -+ margin-top: 20px; -+ } -+ div#sidebar .widget_search input[type=text] { -+ width: 110px; -+ padding: 2px; -+ } -+ -+ div#sidebar ul#recentcomments li, div#sidebar .widget_recent_entries ul li { -+ margin-bottom: 15px; -+ } -+ -+ div#sidebar ul.item-list img.avatar { -+ width: 20px; -+ height: 20px; -+ margin-right: 10px; -+ } -+ div#sidebar div.item-avatar img { -+ width: 40px; -+ height: 40px; -+ margin: 1px; -+ } -+ -+ div#sidebar .avatar-block { overflow: hidden; } -+ -+ div#sidebar ul.item-list div.item-title { -+ font-size: 12px; -+ } -+ -+ div#sidebar div.item-options { -+ margin: -10px -20px 0 -19px; -+ background: #f8f8f8; -+ padding: 5px 15px; -+ font-size: 11px; -+ } -+ -+ div#sidebar div.item-meta, div#sidebar div.item-content { -+ margin-left: 38px; -+ font-size: 11px; -+ } -+ -+ div#sidebar div.tags div#tag-text { -+ font-size: 1.4em; -+ line-height: 140%; -+ padding-top: 10px; -+ } -+ -+/* > Content -+-------------------------------------------------------------- */ -+ -+div#content { -+ float: left; -+ width: 100%; -+ -moz-border-radius-topleft: 6px; -+ -webkit-border-top-left-radius: 6px; -+ -moz-border-radius-bottomleft: 6px; -+ -webkit-border-bottom-left-radius: 6px; -+} -+ -+div#content .padder { -+ margin-right: 225px; -+ border-right: 1px solid #ddd; -+ -moz-border-radius-topleft: 6px; -+ -webkit-border-top-left-radius: 6px; -+ -moz-border-radius-bottomleft: 6px; -+ -webkit-border-bottom-left-radius: 6px; -+} -+ div#content .left-menu { -+ float: left; -+ width: 170px; -+ } -+ -+ div#content .main-column { -+ margin-left: 190px; -+ } -+ -+/* > Item Headers (Profiles, Groups) -+-------------------------------------------------------------- */ -+ -+div#item-header { -+ overflow: hidden; -+} -+ div#item-header div#item-header-content { margin-left: 170px; } -+ -+ div#item-header h2 { -+ font-size: 28px; -+ margin: 0 0 15px 0; -+ line-height: 120%; -+ } -+ div#item-header h2 a { -+ text-decoration: none; -+ color: #777; -+ } -+ -+ div#item-header img.avatar { -+ float: left; -+ margin: 0 15px 25px 0; -+ } -+ -+ div#item-header h2 { margin-bottom: 5px; } -+ -+ div#item-header span.activity, div#item-header h2 span.highlight { -+ vertical-align: middle; -+ font-size: 11px; -+ font-weight: normal; -+ line-height: 170%; -+ margin-bottom: 7px; -+ } -+ -+ div#item-header h2 span.highlight { font-size: 16px; } -+ div#item-header h2 span.highlight span { -+ position: relative; -+ top: -2px; -+ right: -2px; -+ font-weight: bold; -+ font-size: 11px; -+ background: #f00; -+ color: #fff; -+ padding: 1px 4px; -+ margin-bottom: 2px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ vertical-align: middle; -+ cursor: pointer; -+ display: none; -+ } -+ -+ div#item-header div#item-meta { -+ font-size: 14px; -+ color: #aaa; -+ padding-bottom: 10px; -+ overflow: hidden; -+ margin: 15px 0 5px 0; -+ } -+ -+ div#item-header div#item-actions { -+ float: right; -+ width: 20%; -+ margin: 0 0 15px 15px; -+ text-align: right; -+ } -+ div#item-header div#item-actions h3 { -+ font-size: 12px; -+ margin: 0 0 5px 0; -+ } -+ -+ div#item-header ul { -+ overflow: hidden; -+ margin-bottom: 15px; -+ } -+ -+ div#item-header ul h5, div#item-header ul span, div#item-header ul hr { -+ display: none; -+ } -+ -+ div#item-header ul li { -+ float: right; -+ } -+ -+ div#item-header ul img.avatar, div#item-header ul.avatars img.avatar { -+ width: 30px; -+ height: 30px; -+ margin: 2px; -+ } -+ -+ div#item-header div.generic-button, div#item-header a.button { -+ float: left; -+ margin: 10px 10px 0 0; -+ } -+ -+ div#item-header div#message.info { -+ line-height: 80%; -+ } -+ -+ -+/* > Item Lists (Activity, Friend, Group lists) -+-------------------------------------------------------------- */ -+ -+ul.item-list { -+ width: 100%; -+} -+ ul.item-list li { -+ position: relative; -+ padding: 15px 0; -+ border-bottom: 1px solid #eaeaea; -+ } -+ ul.single-line li { border: none; } -+ -+ ul.item-list li img.avatar { -+ float: left; -+ margin: 0 10px 10px 0; -+ } -+ -+ ul.item-list li div.item-title, ul.item-list li h4 { -+ font-weight: normal; -+ font-size: 14px; -+ width: 75%; -+ margin: 0; -+ } -+ ul.item-list li div.item-title span { -+ font-size: 12px; -+ color: #999; -+ } -+ -+ ul.item-list li div.item-desc { -+ margin: 10px 0 0 64px; -+ font-size: 11px; -+ color: #888; -+ width: 50%; -+ } -+ -+ ul.item-list li div.action { -+ position: absolute; -+ top: 15px; -+ right: 0; -+ text-align: right; -+ } -+ -+ ul.item-list li div.meta { -+ margin-top: 10px; -+ color: #888; -+ font-size: 11px; -+ } -+ -+ ul.item-list li h5 span.small { -+ font-weight: normal; -+ font-size: 11px; -+ } -+ -+/* > Item Tabs -+-------------------------------------------------------------- */ -+ -+div.item-list-tabs { -+ clear: left; -+ overflow: hidden; -+ margin: 25px -19px 20px -19px; -+ background: #eaeaea; -+} -+ div.item-list-tabs ul li a { -+ text-decoration: none; -+ } -+ -+ div.item-list-tabs ul { -+ width: 100%; -+ } -+ div.item-list-tabs ul li { -+ float: left; -+ margin: 5px 0 0 5px; -+ } -+ div.item-list-tabs#subnav ul li { -+ margin-top: 0; -+ } -+ -+ div.item-list-tabs ul li:first-child { -+ margin-left: 20px; -+ } -+ -+ div.item-list-tabs ul li.last { -+ float: right; -+ margin: 7px 20px 0 0; -+ } -+ div.item-list-tabs#subnav ul li.last { -+ margin-top: 4px; -+ } -+ -+ div.item-list-tabs ul li.last select { -+ max-width: 175px; -+ } -+ -+ div.item-list-tabs ul li a, -+ div.item-list-tabs ul li span { -+ display: block; -+ padding: 5px 10px; -+ text-decoration: none; -+ } -+ div.item-list-tabs ul li span { -+ color: #aaa; -+ } -+ -+ div.item-list-tabs ul li a span { -+ display: inline; -+ padding: 0; -+ color: inherit; -+ } -+ -+ div.item-list-tabs ul li.selected a, -+ div.item-list-tabs ul li.current a { -+ background-color: #fff; -+ color: #555; -+ font-weight: bold; -+ -moz-border-radius-topleft: 3px; -+ -webkit-border-top-left-radius: 3px; -+ -moz-border-radius-topright: 3px; -+ -webkit-border-top-right-radius: 3px; -+ } -+ ul li.loading a { -+ background-image: url( ../images/ajax-loader.gif ); -+ background-position: 92% 50%; -+ background-repeat: no-repeat; -+ padding-right: 30px !important; -+ } -+ div#item-nav ul li.loading a { -+ background-position: 88% 50%; -+ } -+ -+ div.item-list-tabs#object-nav { -+ margin-top: 0; -+ } -+ -+ div.item-list-tabs#subnav { -+ background: #fff; -+ margin: -15px -19px 15px -19px; -+ border-bottom: 1px solid #eaeaea; -+ min-height: 35px; -+ overflow: hidden; -+ } -+ -+ div.item-list-tabs ul li.feed a { -+ background: url( ../images/rss.png ) center left no-repeat; -+ padding-left: 20px; -+ } -+ -+/* > Item Body -+-------------------------------------------------------------- */ -+ -+.item-body { -+ margin: 20px 0; -+} -+ -+span.activity, div#message p { -+ display: inline-block; -+ font-size: 11px; -+ font-weight: normal; -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #ff0000; -+ padding: 1px 8px; -+ margin-top: 6px; -+ text-decoration: none; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+} -+ -+/* > Directories (Members, Groups, Blogs, Forums) -+-------------------------------------------------------------- */ -+ -+div.dir-search { -+ float: right; -+ margin: -37px 0 0 0; -+} -+ div.dir-search input[type=text] { -+ padding: 4px; -+ font-size: 12px; -+ } -+ -+/* > Pagination -+-------------------------------------------------------------- */ -+ -+div.pagination { -+ margin: -20px -20px 9px -20px; -+ border-bottom: 1px solid #eaeaea; -+ padding: 10px 20px 10px 20px; -+ color: #888; -+ font-size: 11px; -+ height: 16px; -+} -+ div.pagination#user-pag, .friends div.pagination, -+ .mygroups div.pagination, .myblogs div.pagination, noscript div.pagination { -+ background: #f8f8f8; -+ border: none; -+ padding: 8px 15px; -+ } -+ -+ div.pagination .pag-count { -+ float: left; -+ } -+ -+ div.pagination .pagination-links { -+ float: right; -+ } -+ div.pagination .pagination-links span, -+ div.pagination .pagination-links a { -+ font-size: 12px; -+ padding: 0 5px; -+ } -+ div.pagination .pagination-links a:hover { -+ font-weight: bold; -+ } -+ -+div#pag-bottom { -+ margin-top: 0; -+} -+ -+/* > Error / Success Messages -+-------------------------------------------------------------- */ -+ -+div#message { -+ margin: 15px 0; -+} -+ div#message.updated { clear: both; } -+ -+div#message p { -+ padding: 10px 15px; -+ font-size: 12px; -+ display:block; -+} -+ div#message.error p { -+ background: #e41717; -+ color: #fff; -+ border-color: #a71a1a; -+ clear: left; -+ } -+ -+ div#message.updated p { -+ background: #dffcd9; -+ color: #1a9b00; -+ border-color: #c4e9bd; -+ } -+ -+form.standard-form#signup_form div div.error { -+ color: #fff; -+ background: #e41717; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ padding: 6px; -+ width: 90%; -+ margin: 0 0 10px 0; -+} -+ -+/* > Buttons -+-------------------------------------------------------------- */ -+ -+a.button, input[type=submit], input[type=button], input[type=reset], -+ul.button-nav li a, div.generic-button a { -+ background: url( ../images/white-grad.png ) top left repeat-x; -+ border: 1px solid #ddd; -+ padding: 3px 10px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ text-decoration: none; -+ color: #888; -+ font-size: 12px; -+ font-weight: normal; -+ vertical-align: bottom; -+ cursor: pointer; -+} -+ a.button:hover, a.button:focus, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, -+ ul.button-nav li a:hover, ul.button-nav li.current a, -+ div.generic-button a:hover { -+ border-color: #aaa; -+ color: #555; -+ outline: none; -+ } -+ -+ /* Buttons that are disabled */ -+ div.pending a, a.disabled { -+ border-color: #eee; -+ color: #bbb; -+ cursor: default; -+ } -+ div.pending a:hover, a.disabled:hover { border-color: #eee; color: #bbb; } -+ -+ div.accept, div.reject { -+ float: left; -+ margin-left: 10px; -+ } -+ -+ul.button-nav li { -+ float: left; -+ margin: 0 10px 10px 0; -+} -+ ul.button-nav li.current a { -+ font-weight: bold; -+ } -+ -+/* > AJAX Loaders -+-------------------------------------------------------------- */ -+ -+.ajax-loader { -+ background: url( ../images/ajax-loader.gif ) center left no-repeat !important; -+ padding: 8px; -+ display: none; -+} -+ -+a.loading { -+ background-image: url( ../images/ajax-loader.gif ) !important; -+ background-position: 95% 50% !important; -+ background-repeat: no-repeat !important; -+ padding-right: 25px !important; -+} -+ -+/* > Input Forms -+-------------------------------------------------------------- */ -+ -+form.standard-form { -+ -+} -+ form.standard-form textarea, form.standard-form input[type=text], -+ form.standard-form select, form.standard-form input[type=password], -+ .dir-search input[type=text] { -+ border: 1px inset #ccc; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ padding: 6px; -+ font: inherit; -+ font-size: 14px; -+ color: #888; -+ } -+ form.standard-form select { -+ padding: 3px; -+ } -+ -+ form.standard-form input[type=password] { -+ margin-bottom: 5px; -+ } -+ -+ form.standard-form label, form.standard-form span.label { -+ display: block; -+ font-weight: bold; -+ margin: 15px 0 5px 0; -+ } -+ form.standard-form div.checkbox label, -+ form.standard-form div.radio label { -+ font-weight: normal; -+ margin: 5px 0 0 0; -+ font-size: 14px; -+ color: #888; -+ } -+ -+ form.standard-form#sidebar-login-form label { -+ margin-top: 5px; -+ } -+ -+ form.standard-form input[type=text] { -+ width: 75%; -+ } -+ form.standard-form#sidebar-login-form input[type=text], -+ form.standard-form#sidebar-login-form input[type=password] { -+ padding: 4px; -+ width: 95%; -+ } -+ -+ form.standard-form #basic-details-section input[type=password], -+ form.standard-form #blog-details-section input#signup_blog_url { -+ width: 35%; -+ } -+ -+ form.standard-form#signup_form input[type=text], -+ form.standard-form#signup_form textarea { -+ width: 90%; -+ } -+ form.standard-form#signup_form div.submit { float: right; } -+ div#signup-avatar img { margin: 0 15px 10px 0; } -+ -+ form.standard-form textarea { -+ width: 75%; -+ height: 120px; -+ } -+ form.standard-form textarea#message_content { -+ height: 200px; -+ } -+ -+ form.standard-form#send-reply textarea { -+ width: 97.5%; -+ } -+ -+ form.standard-form p.description { -+ font-size: 11px; -+ color: #888; -+ margin: 5px 0; -+ } -+ -+ form.standard-form div.submit { -+ padding: 15px 0; -+ clear: both; -+ } -+ form.standard-form div.submit input { -+ margin-right: 15px; -+ } -+ -+ form.standard-form div.radio ul { -+ margin: 10px 0 15px 38px; -+ list-style: disc; -+ } -+ form.standard-form div.radio ul li { -+ margin-bottom: 5px; -+ } -+ -+ form.standard-form a.clear-value { -+ display: block; -+ margin-top: 5px; -+ outline: none; -+ } -+ -+form.standard-form #basic-details-section, form.standard-form #blog-details-section, -+form.standard-form #profile-details-section { -+ float: left; -+ width: 48%; -+} -+ form.standard-form #profile-details-section { float: right; } -+ form.standard-form #blog-details-section { -+ clear: left; -+ } -+ -+form.standard-form input:focus, form.standard-form textarea:focus, form.standard-form select:focus { -+ background: #fafafa; -+ color: #555; -+} -+ -+form#send-invite-form { -+ margin-top: 20px; -+} -+ div#invite-list { -+ height: 400px; -+ overflow: scroll; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ padding: 5px; -+ background: #f5f5f5; -+ width: 160px; -+ border: 1px solid #e4e4e4; -+ margin: 10px 0; -+ } -+ -+ -+/* > Data Tables -+-------------------------------------------------------------- */ -+ -+table { -+ width: 100%; -+} -+ table thead tr { -+ background: #eaeaea; -+ } -+ -+ table#message-threads { -+ margin: 0 -20px; -+ width: auto; -+ } -+ -+ table.profile-fields { margin-bottom: 20px; } -+ -+ div#sidebar table { -+ margin: 0 -16px; -+ width: 117%; -+ } -+ -+ table tr td, table tr th { -+ padding: 8px; -+ vertical-align: middle; -+ } -+ table tr td.label { -+ border-right: 1px solid #eaeaea; -+ font-weight: bold; -+ width: 25%; -+ } -+ -+ table tr td.thread-info p { margin: 0; } -+ -+ table tr td.thread-info p.thread-excerpt { -+ color: #888; -+ font-size: 11px; -+ margin-top: 3px; -+ } -+ -+ div#sidebar table td, table.forum td { text-align: center; } -+ -+ table tr.alt { -+ background: #f4f4f4; -+ } -+ -+table.notification-settings { -+ margin-bottom: 20px; -+ text-align: left; -+} -+ table.notification-settings th.icon, table.notification-settings td:first-child { display: none; } -+ table.notification-settings th.title { width: 80%; } -+ table.notification-settings .yes, table.notification-settings .no { width: 40px; text-align: center; } -+ -+table.forum { -+ margin: -9px -20px 20px -20px; -+ width: auto; -+} -+ table.forum tr.sticky td { -+ background: #FFF9DB; -+ border-top: 1px solid #FFE8C4; -+ border-bottom: 1px solid #FFE8C4; -+ } -+ -+ table.forum tr.closed td.td-title { -+ padding-left: 35px; -+ background-image: url( ../images/closed.png ); -+ background-position: 15px 50%; -+ background-repeat: no-repeat; -+ } -+ -+ table.forum td p.topic-text { -+ color: #888; -+ font-size: 11px; -+ } -+ -+ table.forum tr > td:first-child, table.forum tr > th:first-child { -+ padding-left: 15px; -+ } -+ -+ table.forum tr > td:last-child, table.forum tr > th:last-child { -+ padding-right: 15px; -+ } -+ -+ table.forum tr th#th-title, table.forum tr th#th-poster, -+ table.forum tr th#th-group, table.forum td.td-poster, -+ table.forum td.td-group, table.forum td.td-title { text-align: left; } -+ -+ table.forum td.td-freshness { -+ font-size: 11px; -+ color: #888; -+ } -+ -+ table.forum td img.avatar { -+ margin-right: 5px; -+ } -+ -+ table.forum td.td-poster, table.forum td.td-group { -+ min-width: 130px; -+ } -+ -+ table.forum th#th-title { -+ width: 40%; -+ } -+ -+ table.forum th#th-postcount { -+ width: 1%; -+ } -+ -+/* > Activity Stream Posting -+-------------------------------------------------------------- */ -+ -+form#whats-new-form { -+ margin-bottom: 5px; -+ border-bottom: 1px solid #f0f0f0; -+ overflow: hidden; -+ padding-bottom: 20px; -+} -+ #item-body form#whats-new-form { -+ margin-top: 20px; -+ border: none; -+ } -+ -+ .home-page form#whats-new-form { -+ border-bottom: none; -+ padding-bottom: 0; -+ } -+ -+ form#whats-new-form h5 { -+ margin: 0; -+ font-weight: normal; -+ font-size: 12px; -+ color: #888; -+ margin-left: 76px; -+ padding: 0 0 3px 0; -+ } -+ -+ form#whats-new-form #whats-new-avatar { -+ float: left; -+ } -+ -+ form#whats-new-form #whats-new-content { -+ margin-left: 54px; -+ padding-left: 22px; -+ } -+ -+ form#whats-new-form #whats-new-textarea { -+ padding: 8px; -+ border: 1px inset #ccc; -+ background: #fff; -+ margin-bottom: 10px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ } -+ form#whats-new-form textarea { -+ width: 100%; -+ height: 50px; -+ font-size: 14px; -+ font-family: inherit; -+ color: #555; -+ border: none; -+ margin: 0; -+ padding: 0; -+ } -+ -+ form#whats-new-form #whats-new-options select { -+ max-width: 200px; -+ } -+ -+ form#whats-new-form #whats-new-submit { -+ float: right; -+ margin: 0; -+ } -+ -+/* > Activity Stream Listing -+-------------------------------------------------------------- */ -+ -+ul.activity-list li { -+ padding: 20px 0 0 0; -+ overflow: hidden; -+} -+ ul.activity-list > li:first-child { -+ padding-top: 5px; -+ } -+ -+ ul.activity-list li.has-comments { -+ padding-bottom: 20px; -+ } -+ -+.activity-list li.mini { -+ position: relative; -+ font-size: 11px; -+ min-height: 35px; -+ padding: 12px 0 0 0; -+} -+ .activity-list li.mini div.activity-meta { -+ margin: 0; -+ } -+ -+ .activity-list li.mini div.activity-meta a { -+ padding: 3px 8px; -+ } -+ -+ .activity-list li.mini .activity-avatar img.avatar, -+ .activity-list li.mini .activity-avatar img.FB_profile_pic { -+ width: 20px; -+ height: 20px; -+ margin-left: 36px; -+ } -+ .activity-list li.activity_comment .activity-avatar img.avatar, -+ .activity-list li.activity_comment .activity-avatar img.FB_profile_pic { -+ width: 40px; -+ height: 40px; -+ margin-left: 20px; -+ } -+ -+ body.activity-permalink .activity-list li .activity-avatar img.avatar, -+ body.activity-permalink .activity-list li .activity-avatar img.FB_profile_pic { -+ width: 100px; -+ height: 100px; -+ margin-left: 0; -+ } -+ -+ .activity-list li.mini .activity-content { -+ margin-right: 175px; -+ } -+ -+ .activity-list li.mini .activity-content p { -+ margin: 0; -+ float: left; -+ } -+ -+ .activity-list li.mini .activity-meta { -+ position: absolute; -+ right: 0; -+ } -+ body.activity-permalink .activity-list li.mini .activity-meta { -+ position: absolute; -+ right: 15px; -+ } -+ -+ .activity-list li.mini .activity-comments { -+ clear: left; -+ font-size: 12px; -+ margin-top: 30px; -+ } -+ -+.activity-list li .activity-inreplyto { -+ font-size: 11px; -+ color: #888; -+ margin-left: 70px; -+ margin-bottom: 15px; -+ padding-left: 25px; -+ background: url( ../images/replyto_arrow.gif ) 7px 0 no-repeat; -+} -+ .activity-list li .activity-inreplyto > p { -+ margin: 0; -+ display: inline; -+ } -+ -+ .activity-list li .activity-inreplyto blockquote, -+ .activity-list li .activity-inreplyto div.activity-inner { -+ background: none; -+ border: none; -+ display: inline; -+ padding: 0; -+ margin: 0; -+ overflow: hidden; -+ } -+ -+.activity-list .activity-avatar img { -+ width: 50px; -+ height: 50px; -+} -+ body.activity-permalink .activity-list .activity-avatar img { -+ width: 100px; -+ height: 100px; -+ } -+ -+.activity-list .activity-content { -+ margin-left: 70px; -+} -+ body.activity-permalink .activity-list li .activity-content { -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+ background: #fff; -+ padding: 15px; -+ border-bottom: 1px solid #ddd; -+ border-right: 1px solid #ddd; -+ margin-left: 135px; -+ font-size: 16px; -+ line-height: 150%; -+ min-height: 35px; -+ margin-right: 0; -+ } -+ body.activity-permalink .activity-list li .activity-header > p { -+ background: url( ../images/activity_arrow.gif ) top left no-repeat; -+ margin-left: -35px; -+ padding: 5px 0 0 38px; -+ height: 35px; -+ margin-bottom: 0; -+ } -+ -+ .activity-list .activity-content .activity-header, -+ .activity-list .activity-content .comment-header { -+ font-size: 11px; -+ color: #888; -+ line-height: 220%; -+ } -+ -+ .activity-list .activity-content .activity-header img.avatar { -+ float: none !important; -+ margin: 0 5px -8px 0 !important; -+ } -+ -+ .activity-list .activity-header a:first-child, span.highlight { -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #333; -+ padding: 3px 8px; -+ text-decoration: none; -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+ margin-right: 3px; -+ } -+ .activity-list .activity-header a:first-child:hover { -+ background: #ababab !important; -+ color: #fff !important; -+ } -+ .activity-list .activity-content a:first-child:focus { outline: none; } -+ -+ .activity-list .activity-content span.time-since { -+ color: #bbb; -+ } -+ -+ .activity-list .activity-content span.activity-header-meta a { -+ background: none; -+ padding: 0; -+ font-size: 11px; -+ margin: 0; -+ border: none; -+ color: #aaa; -+ text-decoration: underline; -+ } -+ .activity-list .activity-content span.activity-header-meta a:hover { -+ color: inherit; -+ text-decoration: none; -+ } -+ -+ .activity-list .activity-content .activity-inner, -+ .activity-list .activity-content blockquote { -+ margin: 15px 0 15px 5px; -+ overflow: hidden; -+ } -+ body.activity-permalink .activity-content .activity-inner, -+ body.activity-permalink .activity-content blockquote { -+ margin-top: 5px; -+ } -+ -+ /* Backwards compatibility. */ -+ .activity-inner > .activity-inner { margin: 0 !important; } -+ .activity-inner > blockquote { margin: 0 !important; } -+ -+ .activity-list .activity-content img.thumbnail { -+ float: left; -+ margin: 0 10px 5px 0; -+ border: 2px solid #eee; -+ } -+ -+.activity-list li.load-more { -+ margin: 15px 0 !important; -+ padding: 10px 15px !important; -+ background: #f0f0f0 !important; -+ text-align: center; -+ font-size: 1.2em; -+ border-right: 1px solid #ddd; -+ border-bottom: 1px solid #ddd; -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+} -+ .activity-list li.load-more a { -+ color: #555; -+ } -+ -+/* > Activity Stream Comments -+-------------------------------------------------------------- */ -+ -+div.activity-meta { -+ margin: 0 0 20px 3px; -+ clear: left; -+} -+ -+.activity-list div.activity-meta a { -+ font-size: 11px; -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #f00; -+ padding: 4px 8px; -+ text-decoration: none; -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+ margin-right: 3px; -+} -+ .activity-list div.activity-meta a.acomment-reply { -+ background: #e3e3e3; -+ border-bottom: 1px solid #ababab; -+ border-right: 1px solid #ababab; -+ color: #000; -+ } -+ -+ div.activity-meta a:focus { outline: none; } -+ div.activity-meta a:hover { -+ background: #aaa; -+ color: #fff; -+ border-color: #aaa; -+ } -+ div.activity-meta a.acomment-reply:hover { -+ background: #ababab; -+ color: #fff; -+ border-color: #ababab; -+ } -+ -+div.activity-comments { -+ position: relative; -+ margin: 0 0 0 75px; -+ width: auto; -+ overflow: hidden; /* IE fix */ -+} -+ -+ body.activity-permalink div.activity-comments { -+ width: auto; -+ margin-left: 135px; -+ background: none; -+ } -+ -+div.activity-comments > ul { -+ background: #f5f5f5; -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ padding: 0 10px 0; -+} -+div.activity-comments ul, div.activity-comments ul li { -+ border: none; -+ list-style: none; -+} -+ -+ div.activity-comments ul { -+ clear: left; -+ } -+ -+ div.activity-comments ul li { -+ border-top: 2px solid #fff; -+ padding: 10px 0 0; -+ } -+ body.activity-permalink div.activity-comments ul li { -+ border-width: 1px; -+ padding: 10px 0 0; -+ } -+ -+ div.activity-comments ul li p:last-child { -+ margin-bottom: 10px; -+ } -+ -+ div.activity-comments > ul > li:first-child { -+ border-top: none; -+ } -+ -+ div.activity-comments ul li:last-child { -+ margin-bottom: 0; -+ } -+ -+ div.activity-comments ul li > ul { -+ margin-top: 0; -+ margin-left: 20px; -+ } -+ body.activity-permalink div.activity-comments ul li > ul { -+ margin-top: 15px; -+ } -+ -+ div.activity-comments div.acomment-avatar img { -+ border-width: 2px !important; -+ float: left; -+ margin-right: 10px; -+ } -+ -+ div.activity-comments div.acomment-content { -+ font-size: 11px; -+ margin-left: 39px; -+ margin-top: 5px; -+ } -+ div.acomment-content .time-since { display: none; } -+ div.acomment-content .activity-delete-link { display: none; } -+ div.acomment-content .comment-header { display: none; } -+ -+ body.activity-permalink div.activity-comments div.acomment-content { -+ font-size: 14px; -+ } -+ -+ div.activity-comments div.acomment-meta { -+ font-size: 11px; -+ color: #888; -+ } -+ -+ div.activity-comments form.ac-form { -+ display: none; -+ margin: 10px 0 10px 33px; -+ background: #fafafa; -+ border: 1px solid #ddd; -+ -moz-border-radius: 4px; -+ -webkit-border-radius: 4px; -+ border-radius: 4px; -+ padding: 8px; -+ } -+ div.activity-comments li form.ac-form { -+ margin-right: 15px; -+ } -+ -+ div.activity-comments form.root { -+ margin-left: 0; -+ } -+ -+ div.activity-comments div#message { -+ margin-top: 15px; -+ margin-bottom: 0; -+ } -+ -+ div.activity-comments form.loading { -+ background-image: url( ../images/ajax-loader.gif ); -+ background-position: 2% 95%; -+ background-repeat: no-repeat; -+ } -+ -+ div.activity-comments form .ac-textarea { -+ padding: 8px; -+ border: 1px inset #ccc; -+ background: #fff; -+ margin-bottom: 10px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ } -+ div.activity-comments form textarea { -+ width: 100%; -+ font-family: inherit; -+ font-size: 11px; -+ color: #555; -+ height: 60px; -+ border: none; -+ padding: 0; -+ } -+ div.activity-comments form input { -+ margin-top: 5px; -+ } -+ -+ div.activity-comments form div.ac-reply-avatar { -+ float: left; -+ } -+ div.ac-reply-avatar img { -+ border: 2px solid #fff !important; -+ } -+ -+ div.activity-comments form div.ac-reply-content { -+ margin-left: 50px; -+ padding-left: 15px; -+ color: #888; -+ font-size: 11px; -+ } -+ -+/* > Private Message Threads -+-------------------------------------------------------------- */ -+ -+table#message-threads tr.unread td { -+ background: #FFF9DB; -+ border-top: 1px solid #FFE8C4; -+ border-bottom: 1px solid #FFE8C4; -+ font-weight: bold; -+} -+ table#message-threads tr.unread td span.activity { -+ background: #fff; -+ } -+ -+ li span.unread-count, tr.unread span.unread-count { -+ background: #dd0000; -+ padding: 2px 8px; -+ color: #fff; -+ font-weight: bold; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ } -+ div.item-list-tabs ul li a span.unread-count { -+ padding: 1px 6px; -+ color: #fff; -+ } -+ -+ div.messages-options-nav { -+ font-size: 11px; -+ background: #eee; -+ text-align: right; -+ margin: 0 -20px; -+ padding: 5px 15px; -+ } -+ -+div#message-thread div.message-box { -+ margin: 0 -20px; -+ padding: 15px; -+} -+ div#message-thread div.alt { -+ background: #f4f4f4; -+ } -+ -+ div#message-thread p#message-recipients { -+ margin: 10px 0 20px 0; -+ } -+ -+ div#message-thread img.avatar { -+ float: left; -+ margin: 0 10px 0 0; -+ vertical-align: middle; -+ } -+ -+ div#message-thread strong { -+ margin: 0; -+ font-size: 16px; -+ } -+ div#message-thread strong a { -+ text-decoration: none; -+ } -+ -+ div#message-thread strong span.activity { -+ margin: 4px 0 0 10px; -+ } -+ -+ div#message-thread div.message-metadata { -+ overflow: hidden; -+ } -+ -+ div#message-thread div.message-content { -+ margin-left: 45px; -+ } -+ -+ div#message-thread div.message-options { -+ text-align: right; -+ } -+ -+/* > Group Forum Topics -+-------------------------------------------------------------- */ -+ -+ul#topic-post-list { -+ margin: 15px -20px; -+ width: auto; -+} -+ ul#topic-post-list li { -+ padding: 15px; -+ position: relative; -+ } -+ -+ ul#topic-post-list li.alt { -+ background: #f4f4f4; -+ } -+ -+ ul#topic-post-list li div.poster-meta { -+ margin-bottom: 10px; -+ color: #888; -+ } -+ -+ ul#topic-post-list li div.post-content { -+ margin-left: 54px; -+ } -+ -+div.admin-links { -+ position: absolute; -+ top: 15px; -+ right: 25px; -+ color: #888; -+ font-size: 11px; -+} -+ div#topic-meta div.admin-links { -+ bottom: 0; -+ right: 0; -+ top: auto; -+ } -+ -+div#topic-meta { -+ position: relative; -+ padding: 5px 0; -+} -+ div#topic-meta h3 { -+ font-size: 20px; -+ } -+ -+div#new-topic-post { -+ margin: 0; -+ padding: 1px 0 0 0; -+} -+ -+/* > WordPress Blog Styles -+-------------------------------------------------------------- */ -+ -+div.post { -+ margin: 0 0 40px 0; -+ overflow: hidden; -+} -+ div.post h2.pagetitle, div.post h2.posttitle { -+ margin: 0; -+ line-height: 120%; -+ } -+ div.post h2.pagetitle a, div.post h2.posttitle a { -+ color: #666; -+ text-decoration: none; -+ } -+ -+ .navigation, .paged-navigation, .comment-navigation { -+ overflow: hidden; -+ font-family: georgia, times, serif; -+ font-style: italic; -+ font-size: 14px; -+ padding: 5px 0; -+ margin: 5px 0 25px 0; -+ } -+ .alignright { -+ float: right; -+ margin-left: 15px; -+ } -+ -+ .alignleft { -+ float: left; -+ margin-right: 15px; -+ } -+ -+ div.post p { margin: 0 0 20px 0; } -+ div.post ul, div.post ol, div.post dl { margin: 0 0 18px 1.5em; } -+ div.post ul { list-style: square; } -+ div.post ol { list-style: decimal; } -+ div.post ol ol { list-style: upper-alpha; } -+ div.post dl { margin-left: 0; } -+ div.post dt { font-size: 14px; font-weight: bold; } -+ div.post dd { margin: 0 0 15px 0;} -+ -+ div.post pre, div.post code p { -+ padding: 15px; -+ background: #f4f4f4; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ } -+ -+ div.post code { font-family: "Monaco", courier, sans-serif; } -+ div.post blockquote { -+ quotes: none; -+ font-style:italic; -+ padding:0 3em; -+ font-family: georgia, times, serif; -+ font-size: 16px; -+ line-height: 150%; -+ } -+ -+ div.post table { -+ border-collapse:collapse; -+ border-spacing:0; -+ border: 1px solid #eee; -+ } -+ div.post table th { border-top: 1px solid #eee; text-align: left; } -+ div.post table td { border-top: 1px solid #eee; } -+ -+ div.post div.author-box, div.comment-avatar-box { -+ background: #f0f0f0; -+ padding: 10px; -+ float: left; -+ margin: 0 15px 15px 0; -+ font-family: georgia, times, serif; -+ font-style: italic; -+ text-align: center; -+ width: 70px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ } -+ div.author-box p, div.comment-avatar-box p { margin: 5px 0 0; } -+ div.author-box a, div.comment-avatar-box a { text-decoration: none; } -+ -+ div.post div.author-box img, div.comment-avatar-box img { -+ float: none; -+ border: 4px solid #fff; -+ margin: 0; -+ } -+ -+ div.post div.post-content, div.comment-content { -+ margin-left: 105px; -+ } -+ -+ div.post p.date, div.post p.postmetadata, div.comment-meta, div.comment-options { -+ color: #888; -+ font-size: 12px; -+ font-family: Georgia, times, serif; -+ padding: 3px 0; -+ margin: 10px 0; -+ border-bottom: 1px solid #e4e4e4; -+ border-top: 1px solid #e4e4e4; -+ } -+ -+ div.post p.postmetadata { -+ margin-top: 15px; -+ clear: left; -+ overflow: hidden; -+ } -+ -+ div.post .tags { float: left; } -+ div.post .comments { float: right; } -+ -+ div.post img { margin-bottom: 15px; } -+ div.post img.wp-smiley { padding: 0 !important; margin: 0 !important; border: none !important; float: none !important; clear: none !important; } -+ -+ div.post img.centered, img.aligncenter { -+ display: block; -+ margin-left: auto; -+ margin-right: auto; -+ } -+ -+ div.post img.alignright { -+ padding: 4px; -+ margin: 0 0 2px 7px; -+ display: inline; -+ } -+ -+ div.post img.alignleft { -+ padding: 4px; -+ margin: 0 7px 2px 0; -+ display: inline; -+ } -+ -+ div.post .aligncenter, div.post div.aligncenter { -+ display: block; -+ margin-left: auto; -+ margin-right: auto; -+ } -+ -+ div.post .wp-caption { -+ border: 1px solid #ddd; -+ text-align: center; -+ background-color: #f3f3f3; -+ padding-top: 4px; -+ -moz-border-radius: 3px; -+ -webkit-border-radius: 3px; -+ border-radius: 3px; -+ } -+ -+ div.post .wp-caption img { -+ margin: 0; -+ padding: 0; -+ border: 0 none; -+ } -+ -+ div.post dd.wp-caption p.wp-caption-text, div.post .wp-caption p.wp-caption-text { -+ font-size: 0.9em; -+ line-height: 17px; -+ padding: 0 4px 5px 0; -+ margin: 0; -+ } -+ -+/* > WordPress Blog Comment Styles -+-------------------------------------------------------------- */ -+ -+#trackbacks { -+ margin-top: 30px; -+} -+ -+#comments h3, #trackbacks h3, #respond h3 { -+ font-size: 20px; -+ margin: 5px 0 25px 0; -+ font-weight: normal; -+ color: #555; -+} -+ -+#comments span.title, #trackbacks span.title { -+ color: #aaa; -+} -+ -+ol.commentlist li { -+ margin: 0 0 30px 0; -+} -+ -+ div.comment-meta { -+ border-top: none; -+ padding-top: 0; -+ } -+ -+ div.comment-meta h5 { -+ font-weight: normal; -+ } -+ -+ div.comment-meta em { -+ float: right; -+ } -+ -+ div.comment-options { -+ border-bottom: none; -+ } -+ -+/* > Footer -+-------------------------------------------------------------- */ -+ -+#footer { -+ padding: 25px; -+ text-align: center; -+ color: #bbb; -+ text-shadow: #fafafa 1px 1px 0; -+} -+ #footer a { -+ color: #bbb; -+ } --- -2.17.1 -