Index: src/bp-templates/bp-legacy/buddypress-functions.php
===================================================================
--- src/bp-templates/bp-legacy/buddypress-functions.php	(revision 9682)
+++ src/bp-templates/bp-legacy/buddypress-functions.php	(working copy)
@@ -227,6 +227,18 @@
 				wp_style_add_data( $rtl['handle'], 'suffix', $min );
 			}
 		}
+
+		// Specific theme-related fixes
+		$asset = $this->locate_asset_in_stack( get_stylesheet() . "{$min}.css", 'css' );
+		if ( isset( $asset['location'] ) ) {
+			// use a unique handle
+			$asset['handle'] = 'bp-' . get_stylesheet();
+			wp_enqueue_style( $asset['handle'], $asset['location'], array(), $this->version, 'screen' );
+
+			if ( $min ) {
+				wp_style_add_data( $asset['handle'], 'suffix', $min );
+			}
+		}
 	}
 
 	/**
