diff options
-rw-r--r-- | app/views/user/show.rhtml | 6 | ||||
-rw-r--r-- | public/stylesheets/theme.css | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/app/views/user/show.rhtml b/app/views/user/show.rhtml index 63f9fe3a0..4c7635c5e 100644 --- a/app/views/user/show.rhtml +++ b/app/views/user/show.rhtml @@ -186,7 +186,7 @@ <% else %> <h2 id="email_subscriptions"> Your <%=pluralize(@track_things.size, _('email subscription')) %> </h2> <% if @track_things_grouped.size == 1 %> - <% form_tag :controller => 'track', :action => 'delete_all_type' do %> + <% form_tag ({:controller => 'track', :action => 'delete_all_type'}, :class => "feed_form") do %> <h3> <%=TrackThing.track_type_description(@track_things[0].track_type)%> <%= hidden_field_tag 'track_type', @track_things[0].track_type %> @@ -200,7 +200,7 @@ <% end %> <% for track_type, track_things in @track_things_grouped %> <% if @track_things_grouped.size > 1 %> - <% form_tag :controller => 'track', :action => 'delete_all_type' do %> + <% form_tag ({:controller => 'track', :action => 'delete_all_type'}, :class => "feed_form") do %> <h3> <%=TrackThing.track_type_description(track_type)%> <%= hidden_field_tag 'track_type', track_type %> @@ -216,7 +216,7 @@ <ul> <% for track_thing in track_things %> <li> - <% form_tag :controller => 'track', :action => 'update', :track_id => track_thing.id do %> + <% form_tag ({:controller => 'track', :action => 'update', :track_id => track_thing.id}, :class => "feed_form") do %> <div> <%= track_thing.params[:list_description] %> <%= hidden_field_tag 'track_medium', "delete", { :id => 'track_medium_' + track_thing.id.to_s } %> diff --git a/public/stylesheets/theme.css b/public/stylesheets/theme.css index 7fcb823c4..0b524fca9 100644 --- a/public/stylesheets/theme.css +++ b/public/stylesheets/theme.css @@ -413,6 +413,12 @@ p.subtitle { padding-right:2px; } +form.feed_form input[type="submit"] { + font-size: 12px; + line-height: 12px; + padding: 2px 4px; +} + #header_right > br { line-height:200%; } |