Changeset 9805
- Timestamp:
- 04/26/2015 09:06:18 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/css/avatar-rtl.css
r9800 r9805 21 21 } 22 22 23 .progress {23 div.bp-avatar-status .bp-progress { 24 24 background: none; 25 25 border: 1px solid #d1d1d1; … … 34 34 } 35 35 36 .bar {36 div.bp-avatar-status .bp-bar { 37 37 background-color: #c3ff88; 38 38 width: 0; … … 73 73 74 74 .bp-avatar-nav .avatar-nav-items li.avatar-nav-item { 75 float: right ;75 float: right !important; 76 76 margin: 0; 77 77 list-style: none; … … 84 84 } 85 85 86 .avatar-nav-items li.current a { 87 background-color: #eee; 88 color: #555; 86 .bp-avatar-nav ul:before, 87 .bp-avatar-nav ul:after { 88 content: " "; 89 display: table; 90 } 91 92 .bp-avatar-nav ul:after { 93 clear: both; 94 } 95 96 .bp-avatar-nav ul { 97 border-bottom: 1px solid #ccc; 98 margin-bottom: 10px; 99 } 100 101 .bp-avatar-nav ul.avatar-nav-items li.current { 102 border: 1px solid #ccc; 103 border-bottom-color: #fff; 104 border-top-right-radius: 4px; 105 border-top-left-radius: 4px; 106 margin-bottom: -1px; 107 } 108 109 .bp-avatar-nav li.current a { 110 background: none; 111 color: inherit; 89 112 font-weight: bold; 90 113 opacity: 0.8; 114 outline: 0; 91 115 } 92 116 -
trunk/src/bp-core/css/avatar.css
r9800 r9805 21 21 } 22 22 23 .progress {23 div.bp-avatar-status .bp-progress { 24 24 background: none; 25 25 border: 1px solid #d1d1d1; … … 34 34 } 35 35 36 .bar {36 div.bp-avatar-status .bp-bar { 37 37 background-color: #c3ff88; 38 38 width: 0; … … 73 73 74 74 .bp-avatar-nav .avatar-nav-items li.avatar-nav-item { 75 float: left ;75 float: left !important; 76 76 margin: 0; 77 77 list-style: none; … … 84 84 } 85 85 86 .avatar-nav-items li.current a { 87 background-color: #eee; 88 color: #555; 86 .bp-avatar-nav ul:before, 87 .bp-avatar-nav ul:after { 88 content: " "; 89 display: table; 90 } 91 92 .bp-avatar-nav ul:after { 93 clear: both; 94 } 95 96 .bp-avatar-nav ul { 97 border-bottom: 1px solid #ccc; 98 margin-bottom: 10px; 99 } 100 101 .bp-avatar-nav ul.avatar-nav-items li.current { 102 border: 1px solid #ccc; 103 border-bottom-color: #fff; 104 border-top-left-radius: 4px; 105 border-top-right-radius: 4px; 106 margin-bottom: -1px; 107 } 108 109 .bp-avatar-nav li.current a { 110 background: none; 111 color: inherit; 89 112 font-weight: bold; 90 113 opacity: 0.8; 114 outline: 0; 91 115 } 92 116 -
trunk/src/bp-core/js/bp-plupload.js
r9754 r9805 369 369 progress:function( model ) { 370 370 if ( ! _.isUndefined( model.get( 'percent' ) ) ) { 371 $( '#' + model.get('id') + ' . progress .bar' ).css( 'width', model.get('percent') + '%' );371 $( '#' + model.get('id') + ' .bp-progress .bp-bar' ).css( 'width', model.get('percent') + '%' ); 372 372 } 373 373 }, -
trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php
r9766 r9805 31 31 <script type="text/html" id="tmpl-progress-window"> 32 32 <div id="{{data.id}}"> 33 <div class=" progress">34 <div class="b ar"></div>33 <div class="bp-progress"> 34 <div class="bp-bar"></div> 35 35 </div> 36 36 <div class="filename">{{data.filename}}</div>
Note: See TracChangeset
for help on using the changeset viewer.