mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-06-01 06:04:04 +08:00
This will also make using existing WordPress themes as member themes far easier. The component CSS can be over-ridden in the theme. git-svn-id: https://buddypress.svn.wordpress.org/trunk@561 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
34 lines
705 B
CSS
34 lines
705 B
CSS
/*
|
|
Basic layout structure styles for BuddyPress Wire. Formats BuddyPress wire pages within any WordPress theme.
|
|
No colors, fonts or pretty stuff.
|
|
|
|
These structure styles can be overridden by the theme CSS file if needed.
|
|
*/
|
|
|
|
.comment-details { float: left; width: 20%; }
|
|
.comment-content { float: right; width: 80%; }
|
|
|
|
#wire-post-list li, #wire-post-new {
|
|
position: relative;
|
|
padding: 1em;
|
|
min-height: 60px;
|
|
}
|
|
|
|
.wire-post-metadata img.avatar, #wire-post-new img.avatar {
|
|
float: left;
|
|
margin: 0 12px 12px 0;
|
|
}
|
|
|
|
.wire-post-content, #wire-post-new-input {
|
|
margin-left: 70px;
|
|
}
|
|
|
|
#wire-post-new textarea {
|
|
height: 100px;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
#wire-post-submit {
|
|
width: auto;
|
|
margin: 5px 0;
|
|
}
|