Align simpleSearch `border` with inputs elsewhere

Aligning
- `border-color`
- `:hover` `border-color`
- `border-radius`
and introducing `transition` to be on par with inputs elsewhere.

Bug: T177808
Change-Id: I41c2719c13935d07f4310c0c752bdfc7377d8670
This commit is contained in:
Volker E 2017-10-09 17:36:59 -07:00
parent f30141fdc3
commit 7060ec573f
1 changed files with 7 additions and 1 deletions

View File

@ -29,12 +29,18 @@ div#simpleSearch {
margin-top: 0.65em;
position: relative;
min-height: 1px; /* Gotta trigger hasLayout for IE7 */
border: solid 1px #aaa;
border: 1px solid @colorGray10;
border-radius: @borderRadius;
color: #000;
background-color: #fff;
.background-image( 'images/search-fade.png' );
background-position: top left;
background-repeat: repeat-x;
.transition( border-color 250ms );
&:hover {
border-color: @colorGray7;
}
// Styles for both the search input and the button
input {