Changeset 5996
- Timestamp:
- 04/20/2012 07:38:26 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/admin/js/admin.dev.js
r5498 r5996 6 6 * @since 1.6 7 7 */ 8 activityReply = {8 var activityReply = { 9 9 10 10 /** -
trunk/bp-core/admin/css/common.dev.css
r5858 r5996 57 57 ul#adminmenu li.toplevel_page_bp-activity .wp-menu-image a { 58 58 background-image: url( ../images/menu.png ) !important; 59 background-position: 0 px-34px;59 background-position: 0 -34px; 60 60 } 61 61 ul#adminmenu li.toplevel_page_bp-activity:hover .wp-menu-image a, -
trunk/bp-core/bp-core-cssjs.php
r5683 r5996 75 75 jQuery('#w').val(c.w); 76 76 jQuery('#h').val(c.h); 77 } ;77 } 78 78 79 79 function showPreview(coords) { -
trunk/bp-xprofile/admin/css/admin.dev.css
r5750 r5996 73 73 .tab-toolbar { 74 74 background: #f9f9f9; 75 border-width: 1px 1px 0 px;75 border-width: 1px 1px 0; 76 76 border-radius: 3px 3px 0 0; 77 77 margin: -20px -21px 20px -21px; … … 211 211 212 212 ul.multi-checkbox { 213 margin: 0 5px 0 0 px;213 margin: 0 5px 0 0; 214 214 padding: .5em .9em; 215 215 height: 10em; -
trunk/bp-xprofile/admin/js/admin.dev.js
r5599 r5996 32 32 label1.setAttribute( 'for', 'isDefault_' + forWhat + '_option[]' ); 33 33 34 toDelete = document.createElement( 'a' );35 toDeleteText = document.createTextNode( '[x]' );34 var toDelete = document.createElement( 'a' ); 35 var toDeleteText = document.createTextNode( '[x]' ); 36 36 37 37 toDelete.setAttribute( 'href', "javascript:hide('" + forWhat + '_div' + theId + "')" ); … … 48 48 49 49 50 theId++ 50 theId++; 51 51 52 52 document.getElementById(forWhat + "_option_number").value = theId;
Note: See TracChangeset
for help on using the changeset viewer.