Change .img-polaroid to .img-thumbnail

* Same code, but different classes was confusing
* Now .img-thumbnail just extends .thumbnail
This commit is contained in:
Mark Otto
2013-01-17 20:16:04 -08:00
parent 89b6477bdc
commit ca74b9882b
4 changed files with 18 additions and 17 deletions

View File

@@ -262,13 +262,17 @@ img {
border-radius: 6px;
}
.img-polaroid {
.img-thumbnail {
display: block;
display: inline-block;
padding: 4px;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
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 {