Sha256: 478ecf7134142b223fb2a055c2d4529dcab7ed64814e103646ee38b3d1f287e7

Contents?: true

Size: 286 Bytes

Versions: 5

Compression:

Stored size: 286 Bytes

Contents

// COMPONENT ANIMATIONS
// --------------------

.fade {
  @include transition(opacity .15s linear);
  opacity: 0;
  &.in {
    opacity: 1;
  }
}

.collapse {
  @include transition(height .35s ease);
  position:relative;
  overflow:hidden;
  height: 0;
  &.in {
    height: auto;
  }
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
bootstrap-sass-rails-2.0.2.2 vendor/assets/stylesheets/twitter/bootstrap/_component-animations.scss
bootstrap-sass-rails-2.0.2.1 vendor/assets/stylesheets/twitter/bootstrap/_component-animations.scss
anjlab-bootstrap-rails-2.0.2.1 vendor/assets/stylesheets/component-animations.scss
anjlab-bootstrap-rails-2.0.2.0 vendor/assets/stylesheets/component-animations.scss
bootstrap-sass-rails-2.0.2.0 vendor/assets/stylesheets/twitter/bootstrap/_component-animations.scss