Skip to:
Content

BuddyPress.org

Changeset 1896


Ignore:
Timestamp:
09/17/2009 07:10:04 PM (16 years ago)
Author:
apeatling
Message:

Fixing missing cropper line image, crop button placement and crop image border.

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core.php

    r1891 r1896  
    316316 * @package BuddyPress Core
    317317 * @global $bp The global BuddyPress settings variable created in bp_core_setup_globals()
    318  * @uses bp_core_add_nav_item() Adds a navigation item to the top level buddypress navigation
    319  * @uses bp_core_add_nav_default() Sets which sub navigation item is selected by default
    320  * @uses bp_core_add_subnav_item() Adds a sub navigation item to a nav item
     318 * @uses bp_core_new_nav_item() Adds a navigation item to the top level buddypress navigation
     319 * @uses bp_core_new_subnav_item() Adds a sub navigation item to a nav item
    321320 * @uses bp_is_home() Returns true if the current user being viewed is equal the logged in user
    322321 * @uses bp_core_fetch_avatar() Returns the either the thumb or full avatar URL for the user_id passed
  • trunk/bp-core/bp-core-cssjs.php

    r1796 r1896  
    149149    <style type="text/css">
    150150        .jcrop-holder { text-align: left; }
    151         .jcrop-vline, .jcrop-hline { font-size: 0; position: absolute; background: white top left repeat url( <?php echo $bp->core->image_base ?>/Jcrop.gif ); }
     151        .jcrop-vline, .jcrop-hline { font-size: 0; position: absolute; background: white top left repeat url( <?php echo BP_PLUGIN_URL ?>/bp-core/images/Jcrop.gif ); }
    152152        .jcrop-vline { height: 100%; width: 1px !important; }
    153153        .jcrop-hline { width: 100%; height: 1px !important; }
     
    157157        .custom .jcrop-handle { border-color: black; background-color: #C7BB00; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
    158158        #avatar-crop-pane { width: <?php echo BP_AVATAR_FULL_WIDTH ?>px; height: <?php echo BP_AVATAR_FULL_HEIGHT ?>px; overflow: hidden; }
     159        #avatar-crop-submit { margin: 20px 0; }
     160        #avatar-upload-form img { border: none !important; }
    159161    </style>
    160162<?php
Note: See TracChangeset for help on using the changeset viewer.