- Timestamp:
- 12/01/2017 11:16:45 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/common-styles/_bp-mixins.scss
r11686 r11755 320 320 } 321 321 322 // Layout elements / lists as grids 323 // A combined mixin to set flex-flow & flex. 324 // This mixin must be called on the parent i.e 'ul' 325 326 @mixin build-flex-layout($row-wrap: wrap, $align: stretch, $basis: auto, $grow: 0 ) { 327 328 @include flex-box-dir($flex-dir: "row", $flex-wrap: $row-wrap); 329 @include flex-align($align: $align); 330 331 > * { 332 333 @include box-item-size($grow: $grow, $shrink: 1, $basis: $basis); 334 } 335 } 336 322 337 // Links as a tabbed effect. 323 338 // Renders links in a horizontal layout as a … … 446 461 // Password warn colors 447 462 448 @mixin pwd-bad-colors($ background: null, $border: null) {463 @mixin pwd-bad-colors($color: inherit, $background: null, $border: null) { 449 464 450 465 @if $background { … … 463 478 464 479 border-color: $border; 465 } 466 467 @mixin pwd-short-colors($background: null, $border: null) { 480 481 color: $color; 482 } 483 484 @mixin pwd-short-colors($color: inherit, $background: null, $border: null) { 468 485 469 486 @if $background { … … 482 499 483 500 border-color: $border; 484 } 485 486 @mixin pwd-good-colors($background: null, $border: null) { 501 502 color: $color; 503 } 504 505 @mixin pwd-good-colors($color: inherit, $background: null, $border: null) { 487 506 488 507 @if $background { … … 501 520 502 521 border-color: $border; 522 523 color: $color; 503 524 } 504 525
Note: See TracChangeset
for help on using the changeset viewer.