Skip to:
Content

BuddyPress.org

Changeset 1568


Ignore:
Timestamp:
06/23/2009 01:04:37 AM (16 years ago)
Author:
apeatling
Message:

Default theme updates for the new status component.

Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.0/bp-themes/bpmember/css/components.css

    r1366 r1568  
    2222    #activity-list li.wire {
    2323        background: url(../images/wire_bullet.gif) 0 4px no-repeat;
     24    }
     25   
     26    #activity-list li.status {
     27        background: url(../images/status_bullet.gif) 0 4px no-repeat;
    2428    }
    2529
     
    480484}
    481485
    482 
     486/**** STATUS UPDATES *************/
     487
     488div#user-status {
     489    margin: 0 0 20px 0;
     490    font: normal 1.3em Georgia, times, serif;
     491}
     492    div#user-status a#status-new-status {
     493        font: normal 1.1em Georgia, times, serif;
     494        color: #888;
     495        font-style: italic;
     496    }
     497        div#user-status div.generic-button a#status-new-status {
     498            font: normal 11px "Lucida Grande", "Lucida Sans Unicode", Arial, Tahoma, sans-serif;
     499        }
     500       
     501        input#status-update-input, textarea#status-update-input {
     502            padding: 5px;
     503            width: 98%;
     504            font: normal 1em "Lucida Grande", "Lucida Sans Unicode", Arial, Tahoma, sans-serif;
     505            color: #888;
     506        }
     507   
     508        div#status-update-buttons {
     509            margin: 10px 0 0 0;
     510        }   
     511            div#status-update-buttons input {
     512                width: auto;
     513            }
     514   
     515        div#user-status label {
     516            display: block;
     517            font: normal 1em Georgia, times, serif;
     518            color: #888;
     519            font-style: italic;
     520            padding: 0 0 5px 0;
     521        }
     522   
     523        a#status-new-status, a#status-clear-status {
     524            padding-top: 2px;
     525            font: normal 11px "Lucida Grande", "Lucida Sans Unicode", Arial, Tahoma, sans-serif;
     526        }
     527            a#status-clear-status { color: red; }
     528   
     529        div#user-status span.time-since {
     530            color: #aaa;
     531            font: normal 11px "Lucida Grande", "Lucida Sans Unicode", Arial, Tahoma, sans-serif;
     532            padding-left: 3px;
     533        }
     534
     535
  • branches/1.0/bp-themes/bpmember/profile/profile-header.php

    r1366 r1568  
    22    <h1 class="fn"><a href="<?php bp_user_link() ?>"><?php bp_user_fullname() ?></a></h1>
    33   
    4     <?php if( function_exists('bp_user_status') ) : ?>
     4    <?php if ( function_exists('bp_user_status') ) : ?>
    55        <p class="status"><?php bp_user_status() ?></p>
    66    <?php endif; ?>
     7   
     8    <div id="user-status">
     9        <p><?php bp_the_status() ?></p>
     10    </div>
    711</div>
  • trunk/bp-themes/bphome/css/base.css

    r1469 r1568  
    302302    }
    303303
     304    .activity-list li.status {
     305        background: url(../images/status_bullet.gif) 0 4px no-repeat;
     306    }
     307
    304308.activity-list li blockquote {
    305309    padding: 7px 15px 7px 40px;
Note: See TracChangeset for help on using the changeset viewer.