Changeset 12036
- Timestamp:
- 05/02/2018 03:01:16 AM (6 years ago)
- Location:
- trunk/src/bp-templates/bp-nouveau
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php
r11951 r12036 34 34 <script type="text/html" id="tmpl-bp-messages-editor"> 35 35 <?php 36 // Temporar ly filter the editor36 // Temporarily filter the editor 37 37 add_filter( 'mce_buttons', 'bp_nouveau_mce_buttons', 10, 1 ); 38 38 … … 51 51 ) 52 52 ); 53 // Temporar ly filter the editor53 // Temporarily filter the editor 54 54 remove_filter( 'mce_buttons', 'bp_nouveau_mce_buttons', 10, 1 ); 55 55 ?> -
trunk/src/bp-templates/bp-nouveau/buddypress/common/notices/template-notices.php
r11899 r12036 1 1 <?php 2 2 /** 3 * BP Nouveau temp tate notices template.3 * BP Nouveau template notices template. 4 4 * 5 5 * @since 3.0.0 -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp-mixins.scss
r11974 r12036 143 143 // These two mixins add hide/show properties for clicked/focussed elements. 144 144 // They may be added to existing rulesets or added to a class selector 145 // rulesets to use hard oced to template markup.145 // rulesets to use hardcoded to template markup. 146 146 147 147 // Convenience helper to add hide properties to rulesets … … 163 163 164 164 // Box model - defaults to value 'border-box' 165 // Vendor prefixes are pretty much redundent for this property,165 // Vendor prefixes are pretty much redundant for this property, 166 166 // consider removing 167 167 … … 250 250 // Flexbox Mixins 251 251 252 // Set display to box flex & set the direc ction and wrapping behavour252 // Set display to box flex & set the direction and wrapping behavior 253 253 // shorthand for flex-direction & flex wrap - default ( row wrap ) 254 254 … … 303 303 // it won't work in all browsers, older browser will simply 304 304 // fall back to non centered or using older techniques. 305 // N.B It would be prefer eable to remove the older property syntax305 // N.B It would be preferable to remove the older property syntax 306 306 307 307 @mixin center-vert() { -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp-variables.scss
r11917 r12036 7 7 // central position for all instances of the property/value. 8 8 9 // Spacing values - used primaril ly for main elements to allow us9 // Spacing values - used primarily for main elements to allow us 10 10 // to adjust values in a grouped manner. 11 11 … … 54 54 // Message colors 55 55 56 // used on text == red & input validation ps uedo classes56 // used on text == red & input validation pseudo classes 57 57 $warn: #b71717 !default; 58 58 $valid: #91cc2c !default; -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp_generic_and_typography.scss
r11744 r12036 114 114 115 115 // Ensure the .bp-wrap element always contains it's children, 116 // this may cause issues but gro pus single requires it.116 // this may cause issues but groups single requires it. 117 117 118 118 /* Ensure .bp-wrap encloses it's children */ -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp_info_messages.scss
r12012 r12036 45 45 } // close .bp-messages 46 46 47 // user message screens handled sep erately due to backbone templates47 // user message screens handled separately due to backbone templates 48 48 // & looped messages 49 49 .bp-messages.bp-user-messages-feedback { -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp_navigation.scss
r11974 r12036 354 354 } // bp-navs 355 355 356 // Create steps current pos tion tabs highlight356 // Create steps current position tabs highlight 357 357 .bp-navs.group-create-links { 358 358 -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp_search.scss
r11906 r12036 99 99 } // close .buddypress-wrap 100 100 101 // If js disabled ensure we show the submit ov veriding earlier rule101 // If js disabled ensure we show the submit overriding earlier rule 102 102 // @todo the whole show/hide could be wrapped in a :not(.no-js) 103 103 .budypress.no-js { -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp_tables.scss
r11686 r12036 83 83 table.notifications { 84 84 85 // Increase the cell padding to give better sep eration of lines85 // Increase the cell padding to give better separation of lines 86 86 // when some text lines wrap 87 87 -
trunk/src/bp-templates/bp-nouveau/common-styles/_bp_widgets.scss
r11994 r12036 83 83 84 84 // Are we in a main site sidebar? 85 // while hard to tell width as ume that85 // while hard to tell width assume that 86 86 // at large width it's narrow & 87 87 // adjust the li widths & margins to % -
trunk/src/bp-templates/bp-nouveau/js/buddypress-nouveau.js
r12014 r12036 192 192 * How the content should be injected in the selector 193 193 * 194 * possible method es are194 * possible methods are 195 195 * - reset: the selector will be reset with the content 196 196 * - append: the content will be added after selector's content … … 406 406 $( '[data-bp-disable-input]' ).on( 'change', this.toggleDisabledInput ); 407 407 408 // HeartBeat Send and Rec ieve408 // HeartBeat Send and Receive 409 409 $( document ).on( 'heartbeat-send.buddypress', this.heartbeatSend ); 410 410 $( document ).on( 'heartbeat-tick.buddypress', this.heartbeatTick ); … … 648 648 } 649 649 650 // Unfor unately unlike groups650 // Unfortunately unlike groups 651 651 // Friends actions does not match the wpnonce 652 652 var friends_actions_map = {
Note: See TracChangeset
for help on using the changeset viewer.