Commit 46d35330 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #3073 from dmedvinsky/cosmetic-search-transition

Add transition on search box
parents 292dffc2 b0fb68c1
......@@ -24,6 +24,14 @@
background-image: -o-linear-gradient($from, $to);
}
@mixin transition($transition) {
-webkit-transition: $transition;
-moz-transition: $transition;
-ms-transition: $transition;
-o-transition: $transition;
transition: $transition;
}
/**
* Prefilled mixins
* Mixins with fixed values
......
......@@ -90,6 +90,7 @@ header {
@include border-radius(3px);
border: 1px solid #c6c6c6;
box-shadow: none;
@include transition(all 0.15s ease-in 0s);
&:focus {
@extend .span3;
}
......
Markdown is supported
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