Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
d5cd040f
Commit
d5cd040f
authored
Aug 18, 2013
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve dependencies for image thumbnails and thumbnail component
parent
5bd2d7ed
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
42 deletions
+46
-42
dist/css/bootstrap.css
dist/css/bootstrap.css
+18
-12
dist/css/bootstrap.min.css
dist/css/bootstrap.min.css
+1
-1
less/scaffolding.less
less/scaffolding.less
+19
-8
less/thumbnails.less
less/thumbnails.less
+8
-21
No files found.
dist/css/bootstrap.css
View file @
d5cd040f
...
...
@@ -354,6 +354,19 @@ img {
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
{
border-radius
:
50%
;
}
...
...
@@ -4884,8 +4897,11 @@ a.list-group-item.active > .badge,
}
}
.thumbnail
,
.img-thumbnail
{
.thumbnail
{
display
:
inline-block
;
display
:
block
;
height
:
auto
;
max-width
:
100%
;
padding
:
4px
;
line-height
:
1.428571429
;
background-color
:
#ffffff
;
...
...
@@ -4895,22 +4911,12 @@ a.list-group-item.active > .badge,
transition
:
all
0.2s
ease-in-out
;
}
.thumbnail
{
display
:
block
;
}
.thumbnail
>
img
{
display
:
block
;
height
:
auto
;
max-width
:
100%
;
}
.img-thumbnail
{
display
:
inline-block
;
height
:
auto
;
max-width
:
100%
;
}
a
.thumbnail
:hover
,
a
.thumbnail
:focus
{
border-color
:
#428bca
;
...
...
dist/css/bootstrap.min.css
View file @
d5cd040f
This source diff could not be displayed because it is too large. You can
view the blob
instead.
less/scaffolding.less
View file @
d5cd040f
...
...
@@ -4,7 +4,6 @@
// Reset the box-sizing
// -------------------------
*,
*:before,
...
...
@@ -14,7 +13,6 @@
// Body reset
// -------------------------
html {
font-size: 62.5%;
...
...
@@ -39,7 +37,10 @@ textarea {
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,
input,
select[multiple],
...
...
@@ -49,7 +50,6 @@ textarea {
// Links
// -------------------------
a {
color: @link-color;
...
...
@@ -68,7 +68,6 @@ a {
// Images
// -------------------------
img {
vertical-align: middle;
...
...
@@ -85,7 +84,19 @@ img {
}
// 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
.img-circle {
...
...
@@ -94,7 +105,6 @@ img {
// Horizontal rules
// -------------------------
hr {
margin-top: @line-height-computed;
...
...
@@ -103,9 +113,10 @@ hr {
border-top: 1px solid @hr-border;
}
// Only display content to screen readers
//
// See: http://a11yproject.com/posts/how-to-hide-content/
// -------------------------
.sr-only {
position: absolute;
...
...
less/thumbnails.less
View file @
d5cd040f
...
...
@@ -3,30 +3,17 @@
// --------------------------------------------------
// Base classes
// 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);
}
// Mixin and adjust the regular image class
.thumbnail {
display: block;
}
.thumbnail > img {
.img-responsive();
}
.img-thumbnail {
.img-responsive(inline-block);
.img-thumbnail();
display: block; // Override the inline-block from `.img-thumbnail`
> img {
.img-responsive();
}
}
// Add a hover state for linked versions only
a.thumbnail:hover,
a.thumbnail:focus {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment