diff --git a/app/views/layouts/site.html.erb b/app/views/layouts/site.html.erb index 59b7c304b..ed8c1456b 100644 --- a/app/views/layouts/site.html.erb +++ b/app/views/layouts/site.html.erb @@ -1,11 +1,14 @@
+ <%= javascript_include_tag 'prototype' %> <%= javascript_include_tag 'site' %> - <%= stylesheet_link_tag 'site' %> - <%= stylesheet_link_tag 'print', :media => "print" %> + + <%= stylesheet_link_tag 'site-sml', :media => "only screen and (max-width: 481px)" %> + <%= stylesheet_link_tag 'site', :media => "screen and (min-width: 482px)" %> + <%= stylesheet_link_tag 'print', :media => "print" %> <%= tag("link", { :rel => "search", :type => "application/opensearchdescription+xml", :title => "OpenStreetMap Search", :href => "/opensearch/osm.xml" }) %> <%= tag("meta", { :name => "description", :content => "OpenStreetMap is the free wiki world map." }) %> <%= yield :head %> diff --git a/app/views/user/login.html.erb b/app/views/user/login.html.erb index dc1001117..9b6d62f92 100644 --- a/app/views/user/login.html.erb +++ b/app/views/user/login.html.erb @@ -5,7 +5,7 @@ <% form_tag :action => 'login' do %> <%= hidden_field_tag('referer', h(params[:referer])) %><%= t 'user.login.email or username' %> | <%= text_field('user', 'email',{:size => 50, :maxlength => 255, :tabindex => 1}) %> |
<%= t 'user.login.email or username' %> | <%= text_field('user', 'email',{:size => 28, :maxlength => 255, :tabindex => 1}) %> |
<%= t 'user.login.password' %> | <%= password_field('user', 'password',{:size => 28, :maxlength => 255, :tabindex => 2}) %> (<%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %>) |
<%= submit_tag t('user.login.login_button'), :tabindex => 3 %> |