- smaller sprite and crunched the new png file
- better looking search icon - fixed the position of search icon, using 97% the icon is not gonna be fixed position (vary depending on width), now it's 100% but the icon has fixed spacing from the sprite border - fixed the padding of search input so that text does not go over the search icon
This commit is contained in:
parent
2a8bd04b93
commit
0bd9115580
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 742 B |
|
@ -15,7 +15,7 @@ div.chzn-container input {
|
|||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
margin: 0px;
|
||||
padding: 4px 5px;
|
||||
padding: 4px 20px 4px 5px;
|
||||
outline: none;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
|
@ -126,12 +126,12 @@ div.chzn-container div.chzn-search {
|
|||
white-space: nowrap;
|
||||
}
|
||||
div.chzn-container div.chzn-search input {
|
||||
background: url('chosen-sprite.png') no-repeat 97% -35px, #ffffff;
|
||||
background: url('chosen-sprite.png') no-repeat 97% -35px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
|
||||
background: url('chosen-sprite.png') no-repeat 97% -35px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 97% -35px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 97% -35px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 97% -35px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px, #ffffff;
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px, -ms-linear-gradient(top, #ffffff 85%,#eeeeee 99%);
|
||||
background: linear-gradient(top, #ffffff 85%,#eeeeee 99%)
|
||||
-moz-border-radius: 0px;
|
||||
-webkit-border-radius: 0px;
|
||||
|
|
Loading…
Reference in a new issue