bootstrap-source/bootstrap-3.0.3/less/component-animations.less
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:49:16 +0100
changeset 54 0ded9d7748b7
permissions -rwxr-xr-x
initial less based on the pymove3d.css
info@54
     1
//
info@54
     2
// Component animations
info@54
     3
// --------------------------------------------------
info@54
     4
info@54
     5
// Heads up!
info@54
     6
//
info@54
     7
// We don't use the `.opacity()` mixin here since it causes a bug with text
info@54
     8
// fields in IE7-8. Source: https://github.com/twitter/bootstrap/pull/3552.
info@54
     9
info@54
    10
.fade {
info@54
    11
  opacity: 0;
info@54
    12
  .transition(opacity .15s linear);
info@54
    13
  &.in {
info@54
    14
    opacity: 1;
info@54
    15
  }
info@54
    16
}
info@54
    17
info@54
    18
.collapse {
info@54
    19
  display: none;
info@54
    20
  &.in {
info@54
    21
    display: block;
info@54
    22
  }
info@54
    23
}
info@54
    24
.collapsing {
info@54
    25
  position: relative;
info@54
    26
  height: 0;
info@54
    27
  overflow: hidden;
info@54
    28
  .transition(height .35s ease);
info@54
    29
}
Impressum Datenschutzerklärung