Experimental CSS media queries to support iPhone and other small-screen devices.
This commit is contained in:
parent
c742d88309
commit
6674873478
3 changed files with 71 additions and 3 deletions
|
@ -1,10 +1,13 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<%= I18n.locale %>" lang="<%= I18n.locale %>" dir="<%= t'html.dir' %>">
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
|
||||
<%= javascript_include_tag 'prototype' %>
|
||||
<%= javascript_include_tag 'site' %>
|
||||
<!--[if lt IE 7]><%= javascript_include_tag 'pngfix' %><![endif]--> <!-- thanks, microsoft! -->
|
||||
<%= stylesheet_link_tag 'site' %>
|
||||
<!--[if IE]><%= stylesheet_link_tag 'site', :media => "screen" %><![endif]--> <!-- IE is totally broken with CSS media queries -->
|
||||
<%= 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." }) %>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<% form_tag :action => 'login' do %>
|
||||
<%= hidden_field_tag('referer', h(params[:referer])) %>
|
||||
<table>
|
||||
<tr><td class="fieldName"><%= t 'user.login.email or username' %></td><td><%= text_field('user', 'email',{:size => 50, :maxlength => 255, :tabindex => 1}) %></td></tr>
|
||||
<tr><td class="fieldName"><%= t 'user.login.email or username' %></td><td><%= text_field('user', 'email',{:size => 28, :maxlength => 255, :tabindex => 1}) %></td></tr>
|
||||
<tr><td class="fieldName"><%= t 'user.login.password' %></td><td><%= password_field('user', 'password',{:size => 28, :maxlength => 255, :tabindex => 2}) %> <span class="minorNote">(<%= link_to t('user.login.lost password link'), :controller => 'user', :action => 'lost_password' %>)</span></td></tr>
|
||||
<tr><td colspan=2> <!--vertical spacer--></td></tr>
|
||||
<tr><td></td><td align="right"><%= submit_tag t('user.login.login_button'), :tabindex => 3 %></td></tr>
|
||||
|
|
65
public/stylesheets/site-sml.css
Normal file
65
public/stylesheets/site-sml.css
Normal file
|
@ -0,0 +1,65 @@
|
|||
body {
|
||||
font-family: Arial,sans-serif;
|
||||
color: #000;
|
||||
background-color: #fff;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#left {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#greeting {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
height: 16px;
|
||||
margin: 0px;
|
||||
padding-right: 10px;
|
||||
font-size: 13px;
|
||||
line-height: 14px;
|
||||
}
|
||||
|
||||
#content {
|
||||
padding-top: 16px;
|
||||
height: 640px;
|
||||
}
|
||||
|
||||
#tabnav {
|
||||
/* display: none;*/
|
||||
}
|
||||
|
||||
#sidebar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#permalink {
|
||||
display: none;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="password"], textarea {
|
||||
border: 1px solid black;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.olControlPanZoomBar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.olControlLayerSwitcher {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.olControlAttribution {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#attribution {
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#map {
|
||||
border: 1px solid black;
|
||||
height: 480px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue