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

« back to all changes in this revision

Viewing changes to debian/missing-sources/bootstrap/less/thumbnails.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
// Thumbnails
 
3
// --------------------------------------------------
 
4
 
 
5
 
 
6
// Mixin and adjust the regular image class
 
7
.thumbnail {
 
8
  display: block;
 
9
  padding: @thumbnail-padding;
 
10
  margin-bottom: @line-height-computed;
 
11
  line-height: @line-height-base;
 
12
  background-color: @thumbnail-bg;
 
13
  border: 1px solid @thumbnail-border;
 
14
  border-radius: @thumbnail-border-radius;
 
15
  .transition(all .2s ease-in-out);
 
16
 
 
17
  > img,
 
18
  a > img {
 
19
    &:extend(.img-responsive);
 
20
    margin-left: auto;
 
21
    margin-right: auto;
 
22
  }
 
23
 
 
24
  // Add a hover state for linked versions only
 
25
  a&:hover,
 
26
  a&:focus,
 
27
  a&.active {
 
28
    border-color: @link-color;
 
29
  }
 
30
 
 
31
  // Image captions
 
32
  .caption {
 
33
    padding: @thumbnail-caption-padding;
 
34
    color: @thumbnail-caption-color;
 
35
  }
 
36
}