diff options
| author | Mark Otto <[email protected]> | 2013-01-17 20:18:03 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-01-17 20:18:03 -0800 |
| commit | f068cdeb63770182b9e954eac9cbd11bf8df5d57 (patch) | |
| tree | aa0696e9788a9558f7c2452354e8224f38329589 /docs | |
| parent | ca74b9882b1c2029bfd0d091fd372007b9dc7420 (diff) | |
| download | bootstrap-f068cdeb63770182b9e954eac9cbd11bf8df5d57.tar.xz bootstrap-f068cdeb63770182b9e954eac9cbd11bf8df5d57.zip | |
Combine .thumbnail and .img-thumbnail into simpler selectors
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0ec2e4ddc..46cd2bc4b 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -262,19 +262,6 @@ img { border-radius: 6px; } -.img-thumbnail { - display: block; - display: inline-block; - padding: 4px; - line-height: 20px; - border: 1px solid #ddd; - border-radius: 4px; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} - .img-circle { border-radius: 500px; } @@ -3932,8 +3919,8 @@ button.close { margin-top: 5px; } -.thumbnail { - display: block; +.thumbnail, +.img-thumbnail { padding: 4px; line-height: 20px; border: 1px solid #ddd; @@ -3944,6 +3931,14 @@ button.close { transition: all 0.2s ease-in-out; } +.thumbnail { + display: block; +} + +.img-thumbnail { + display: inline-block; +} + a.thumbnail:hover { border-color: #428bca; } |
