Merge pull request #3073 from dmedvinsky/cosmetic-search-transition
Add transition on search box
This commit is contained in:
commit
46d353304a
2 changed files with 9 additions and 0 deletions
|
@ -24,6 +24,14 @@
|
||||||
background-image: -o-linear-gradient($from, $to);
|
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
|
* Prefilled mixins
|
||||||
* Mixins with fixed values
|
* Mixins with fixed values
|
||||||
|
|
|
@ -90,6 +90,7 @@ header {
|
||||||
@include border-radius(3px);
|
@include border-radius(3px);
|
||||||
border: 1px solid #c6c6c6;
|
border: 1px solid #c6c6c6;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
@include transition(all 0.15s ease-in 0s);
|
||||||
&:focus {
|
&:focus {
|
||||||
@extend .span3;
|
@extend .span3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue