~ubuntu-branches/ubuntu/vivid/ffmpeg/vivid

« back to all changes in this revision

Viewing changes to debian/missing-sources/bootstrap/less/component-animations.less

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun
  • Date: 2014-11-05 01:18:23 UTC
  • mfrom: (0.2.17 sid)
  • Revision ID: package-import@ubuntu.com-20141105011823-xsbeceffs43wtkn7
Tags: 7:2.4.3-1
* Import new upstream bugfix release 2.4.3.
   - Refresh Change-symbol-versioning.patch.
   - Add new symbols to the libavdevice symbols file.
* Enable libbs2b on arm64, since it is now available.
* Disable frei0r and libx264 on x32, libsoxr and openal on sparc64
  and libopencv on m68k, sh4, sparc64 and x32, because they are not
  (yet) avialable there.
* Disable assembler optimizations on x32, as they wouldn't work there.
* Include config.log in the build-log, when compiling fails.
* Add fix-hppa-tests.patch to work around a gcc bug on hppa.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Component animations
 
3
// --------------------------------------------------
 
4
 
 
5
// Heads up!
 
6
//
 
7
// We don't use the `.opacity()` mixin here since it causes a bug with text
 
8
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
 
9
 
 
10
.fade {
 
11
  opacity: 0;
 
12
  .transition(opacity .15s linear);
 
13
  &.in {
 
14
    opacity: 1;
 
15
  }
 
16
}
 
17
 
 
18
.collapse {
 
19
  display: none;
 
20
 
 
21
  &.in      { display: block; }
 
22
  tr&.in    { display: table-row; }
 
23
  tbody&.in { display: table-row-group; }
 
24
}
 
25
 
 
26
.collapsing {
 
27
  position: relative;
 
28
  height: 0;
 
29
  overflow: hidden;
 
30
  .transition(height .35s ease);
 
31
}