Commit a2e5aca2d28a8f4acc86c51d4747b9b638a17486
1 parent
b5dec28d
Exists in
master
and in
28 other branches
Fixed width of search box on profiles
Showing
1 changed file
with
9 additions
and
3 deletions
Show diff stats
public/stylesheets/search.css
... | ... | @@ -678,12 +678,18 @@ li.search-product-item hr { |
678 | 678 | } |
679 | 679 | |
680 | 680 | #public-profile-search .formfield { |
681 | - float: left; | |
682 | - width: 80%; | |
681 | + width: 85%; | |
683 | 682 | } |
683 | + | |
684 | +#public-profile-search .formfield, | |
684 | 685 | #public-profile-search .submit { |
685 | - float: right; | |
686 | + display: inline-block; | |
686 | 687 | } |
688 | + | |
689 | +#public-profile-search .submit { | |
690 | + margin-bottom: 3px; | |
691 | +} | |
692 | + | |
687 | 693 | #public-profile-search .search-field div { |
688 | 694 | clear: both; |
689 | 695 | } | ... | ... |