2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

Merge pull request #11091 from yokomizor/extended_thumbnail_hover_state

Extended hover state of linked versions of .thumbnail
This commit is contained in:
Mark Otto
2013-10-14 16:14:28 -07:00
3 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -5214,7 +5214,8 @@ a.list-group-item.active > .badge,
} }
a.thumbnail:hover, a.thumbnail:hover,
a.thumbnail:focus { a.thumbnail:focus,
a.thumbnail.active {
border-color: #428bca; border-color: #428bca;
} }
+1 -1
View File
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -17,7 +17,8 @@
// Add a hover state for linked versions only // Add a hover state for linked versions only
a.thumbnail:hover, a.thumbnail:hover,
a.thumbnail:focus { a.thumbnail:focus,
a.thumbnail.active {
border-color: @link-color; border-color: @link-color;
} }