]> git.openstreetmap.org Git - rails.git/commitdiff
Add the OpenID logo to all openid url entry textfields for clarity
authorKai Krueger <kai@aiputerlx.(none)>
Sat, 1 May 2010 10:25:47 +0000 (11:25 +0100)
committerKai Krueger <kai@aiputerlx.(none)>
Sat, 1 May 2010 10:25:47 +0000 (11:25 +0100)
app/views/user/account.html.erb
app/views/user/login.html.erb
app/views/user/new.html.erb
public/stylesheets/common.css

index e1fe719e0795768c4ed8d421d5085c2ad8f6c81b..0bb41a355b74917dad9c80ac8c9133a783effa57 100644 (file)
@@ -28,7 +28,7 @@
   </tr>
   <tr>
     <td class="fieldName" ><%= t 'user.account.openid.openid' %></td>
-    <td style="padding-bottom:0px;"><%= f.text_field :openid_url %> (<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>) </td>
+    <td style="padding-bottom:0px;"><%= f.text_field :openid_url, {:class => "openid_url"} %> (<a href="<%= t 'user.account.openid.link' %>" target="_new"><%= t 'user.account.openid.link text' %></a>) </td>
   </tr>
 
   <tr>
index b93fe892abd5bb4fa4557a6ffe3bce466ba6e9d8..76c18595aec314197480e9748afa303c24d983c6 100644 (file)
@@ -49,7 +49,7 @@ function openid_signin(provider)
                         <%= image_tag "openid-16x16.gif", :alt => t('user.login.openid_logo_alt') %>
                         <%= t 'user.login.openid' %>
                     </td>
-                    <td><%= text_field('user', 'openid_url',{:size => 28, :maxlength => 255, :tabindex => 3}) %></td>
+                    <td><%= text_field('user', 'openid_url',{:size => 28, :maxlength => 255, :tabindex => 3, :class => "openid_url"}) %></td>
                 </tr>
                 <tr>
                     <td></td>
index e7aa9313d0cc99e0e550e99dd82a04189ee316a3..ace79e44641f9ccc0bce9196d2a644a44857a46d 100644 (file)
@@ -32,7 +32,7 @@
   <tr><td class="fieldName"><%= t 'user.new.confirm password' %></td><td><%= password_field('user', 'pass_crypt_confirmation',{:size => 30, :maxlength => 255, :tabindex => 5}) %></td></tr>
   
   <tr><td colspan="2">&nbsp;<!--vertical spacer--></td></tr>
-  <tr><td class="fieldName"><%= t 'user.new.openID' %></td><td><%= text_field('user', 'openid_url',{:size => 50, :maxlength => 255, :tabindex => 6, :value => @openID}) %></td></tr>
+  <tr><td class="fieldName"><%= t 'user.new.openID' %></td><td><%= text_field('user', 'openid_url',{:size => 50, :maxlength => 255, :tabindex => 6, :value => @openID, :class => "openid_url"}) %></td></tr>
   <tr><td></td><td><span class="minorNote"><%= t 'user.new.openID description' %></span></td></tr>
   <tr><td colspan="2">&nbsp;<!--vertical spacer--></td></tr>
   <tr><td></td><td align="right"><input type="submit" value="<%= t'user.new.signup' %>" tabindex="7"></td></tr>
index ae6c2709db83b50b5d57a6e3547690a51e6d2f6c..34d8571f4085ab2be2d2dab950704d426e436b30 100644 (file)
@@ -740,6 +740,11 @@ abbr.geo {
   background: #fff;
 }
 
+.openid_url { 
+  background: url('../images/openid-inputicon.gif') repeat-y left;
+  padding-left: 16px;
+}
+
 /* Rules for Login page */
 .loginBox {
   float: left;