0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-06 04:08:22 +01:00

Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wip

This commit is contained in:
Jacob Thornton 2013-08-18 19:40:56 -07:00
commit 93887f4bd0
4 changed files with 46 additions and 42 deletions

View File

@ -354,6 +354,19 @@ img {
border-radius: 6px; border-radius: 6px;
} }
.img-thumbnail {
display: inline-block;
height: auto;
max-width: 100%;
padding: 4px;
line-height: 1.428571429;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.img-circle { .img-circle {
border-radius: 50%; border-radius: 50%;
} }
@ -4884,8 +4897,11 @@ a.list-group-item.active > .badge,
} }
} }
.thumbnail, .thumbnail {
.img-thumbnail { display: inline-block;
display: block;
height: auto;
max-width: 100%;
padding: 4px; padding: 4px;
line-height: 1.428571429; line-height: 1.428571429;
background-color: #ffffff; background-color: #ffffff;
@ -4895,22 +4911,12 @@ a.list-group-item.active > .badge,
transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
} }
.thumbnail {
display: block;
}
.thumbnail > img { .thumbnail > img {
display: block; display: block;
height: auto; height: auto;
max-width: 100%; max-width: 100%;
} }
.img-thumbnail {
display: inline-block;
height: auto;
max-width: 100%;
}
a.thumbnail:hover, a.thumbnail:hover,
a.thumbnail:focus { a.thumbnail:focus {
border-color: #428bca; border-color: #428bca;

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,6 @@
// Reset the box-sizing // Reset the box-sizing
// -------------------------
*, *,
*:before, *:before,
@ -14,7 +13,6 @@
// Body reset // Body reset
// -------------------------
html { html {
font-size: 62.5%; font-size: 62.5%;
@ -39,7 +37,10 @@ textarea {
line-height: inherit; line-height: inherit;
} }
// Reset unusual Firefox-on-Android default style, see https://github.com/necolas/normalize.css/issues/214 // Reset unusual Firefox-on-Android default style.
//
// See https://github.com/necolas/normalize.css/issues/214
button, button,
input, input,
select[multiple], select[multiple],
@ -49,7 +50,6 @@ textarea {
// Links // Links
// -------------------------
a { a {
color: @link-color; color: @link-color;
@ -68,7 +68,6 @@ a {
// Images // Images
// -------------------------
img { img {
vertical-align: middle; vertical-align: middle;
@ -85,7 +84,19 @@ img {
} }
// Image thumbnails // Image thumbnails
// See thumbnails.less for `.img-thumbnail` //
// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
.img-thumbnail {
padding: @thumbnail-padding;
line-height: @line-height-base;
background-color: @thumbnail-bg;
border: 1px solid @thumbnail-border;
border-radius: @thumbnail-border-radius;
.transition(all .2s ease-in-out);
// Keep them at most 100% wide
.img-responsive(inline-block);
}
// Perfect circle // Perfect circle
.img-circle { .img-circle {
@ -94,7 +105,6 @@ img {
// Horizontal rules // Horizontal rules
// -------------------------
hr { hr {
margin-top: @line-height-computed; margin-top: @line-height-computed;
@ -103,9 +113,10 @@ hr {
border-top: 1px solid @hr-border; border-top: 1px solid @hr-border;
} }
// Only display content to screen readers // Only display content to screen readers
//
// See: http://a11yproject.com/posts/how-to-hide-content/ // See: http://a11yproject.com/posts/how-to-hide-content/
// -------------------------
.sr-only { .sr-only {
position: absolute; position: absolute;

View File

@ -3,29 +3,16 @@
// -------------------------------------------------- // --------------------------------------------------
// Base classes // Mixin and adjust the regular image class
// For thumbnail block-level composite components and simple image styles
// The actual thumbnailed element
// Can be `a`, `div`, or `img`
.thumbnail,
.img-thumbnail {
padding: @thumbnail-padding;
line-height: @line-height-base;
background-color: @thumbnail-bg;
border: 1px solid @thumbnail-border;
border-radius: @thumbnail-border-radius;
.transition(all .2s ease-in-out);
}
.thumbnail { .thumbnail {
display: block; .img-thumbnail();
} display: block; // Override the inline-block from `.img-thumbnail`
.thumbnail > img {
> img {
.img-responsive(); .img-responsive();
}
} }
.img-thumbnail {
.img-responsive(inline-block);
}
// Add a hover state for linked versions only // Add a hover state for linked versions only
a.thumbnail:hover, a.thumbnail:hover,