Commit ada55891 authored by Mark Otto's avatar Mark Otto
Browse files

add transition to thumbnails

parent e1659b2c
Showing with 5 additions and 0 deletions
+5 -0
...@@ -5059,6 +5059,10 @@ input[type="submit"].btn.btn-mini { ...@@ -5059,6 +5059,10 @@ input[type="submit"].btn.btn-mini {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
transition: all 0.2s linear;
} }
a.thumbnail:hover { a.thumbnail:hover {
......
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
border: 1px solid #ddd; border: 1px solid #ddd;
.border-radius(4px); .border-radius(4px);
.box-shadow(0 1px 3px rgba(0,0,0,.055)); .box-shadow(0 1px 3px rgba(0,0,0,.055));
.transition(all .2s linear);
} }
// Add a hover state for linked versions only // Add a hover state for linked versions only
a.thumbnail:hover { a.thumbnail:hover {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment