Merge pull request #1963 from alda519/search_hashtag_underline

removes underline in tag search form on getting started page
This commit is contained in:
Daniel Grippi 2011-09-12 23:39:53 -07:00
commit 2df00ed98f
2 changed files with 3 additions and 3 deletions

View file

@ -128,7 +128,7 @@
= t('.hashtag_explanation') = t('.hashtag_explanation')
.span-5.append-1 .span-5.append-1
= form_tag(tags_path, :method => 'get', :class => "tag search_form") do = form_tag(tags_path, :method => 'get', :class => "tag_input search_form") do
= text_field_tag 'q', nil, :placeholder => t(".search_for_hashtags"), :type => 'search', :results => 5 = text_field_tag 'q', nil, :placeholder => t(".search_for_hashtags"), :type => 'search', :results => 5
.span-5.last .span-5.last
%h4{:style => "margin-top:7px;"} %h4{:style => "margin-top:7px;"}

View file

@ -3,6 +3,6 @@ Diaspora.Pages.UsersGettingStarted = function() {
this.subscribe("page/ready", function(evt, body) { this.subscribe("page/ready", function(evt, body) {
self.peopleSearch = self.instantiate("Search", body.find("form.people.search_form")); self.peopleSearch = self.instantiate("Search", body.find("form.people.search_form"));
self.tagSearch = self.instantiate("Search", body.find("form.tag.search_form")); self.tagSearch = self.instantiate("Search", body.find("form.tag_input.search_form"));
}); });
}; };