The easiest way to use prune is to provide it as an option when fetching:
git fetch --prune origin
Peform a prune and not fetch on the remote repository:
._pan, ._ptn, ._pvn { | |
padding-top: 0 !important; | |
} | |
._pan, ._prn, ._phn { | |
padding-right: 0 !important; | |
} | |
._pan, ._pbn, ._pvn { | |
padding-bottom: 0 !important; |
Single CSS component class that uses modifier classes to emulate Bootstraps "well", "panel", "thumbnail" components, and how to modify main component class to offer alternative styles.
A Pen by Christopher DeFelice on CodePen.
// ----------------------------------------------------------------------------- | |
// Transitions | |
// ----------------------------------------------------------------------------- | |
// Uses prefixr mixin gist: | |
// https://gist.github.com/defo550/7073344 | |
// Example: | |
// @include transition( all 0.2s ease ); | |
// @include transtion( opacity 0.2s ease, height 0.3s ease ) |
@mixin prefixr( $property, $value, $prefixes: webkit moz ) { | |
@each $prefix in $prefixes { | |
-#{$prefix}-#{$property}: $value; | |
} | |
#{$property}: $value; | |
} |