]> git.openstreetmap.org Git - rails.git/commitdiff
Add current state to all nav elements
authorJohn Firebaugh <john.firebaugh@gmail.com>
Wed, 2 Oct 2013 18:52:56 +0000 (11:52 -0700)
committerJohn Firebaugh <john.firebaugh@gmail.com>
Sun, 13 Oct 2013 21:46:06 +0000 (14:46 -0700)
app/assets/stylesheets/common.css.scss
app/helpers/application_helper.rb
app/views/layouts/_header.html.erb

index 35a5ced5f2606ebd4a83a58de72ff7568cf861e5..8de88f478e673274cfd81a5841f6fb62ec7686e5 100644 (file)
@@ -393,20 +393,17 @@ nav.primary {
       border-top-color: #ccc;
     }
   }
       border-top-color: #ccc;
     }
   }
-}
 
 
-.site-index #view_tab,
-.changeset-list #history_tab,
-.site-export #export_tab,
-.site-edit #edit_tab {
-  background-color: $green;
+  > ul li.current {
+    background-color: $green;
 
 
-  .tab {
-    color: #fff;
-  }
+    .tab {
+      color: #fff;
+    }
 
 
-  .caret {
-    border-top-color: #fff;
+    .caret {
+      border-top-color: #fff;
+    }
   }
 }
 
   }
 }
 
@@ -423,6 +420,10 @@ nav.secondary {
     padding: 5px 5px;
   }
 
     padding: 5px 5px;
   }
 
+  > ul li.current a {
+    color: darken($darkgrey, 25%);
+  }
+
   .user-menu {
     $border: 1px solid $grey;
 
   .user-menu {
     $border: 1px solid $grey;
 
index 4765cb35b3b6fe1fbd506bfc248d32454fc8e09a..f74d5cbf294722cf86243874331b0db8aa6fb823 100644 (file)
@@ -96,4 +96,8 @@ module ApplicationHelper
   def body_class
     [params[:controller], "#{params[:controller]}-#{params[:action]}", @extra_body_class].compact.join(" ")
   end
   def body_class
     [params[:controller], "#{params[:controller]}-#{params[:action]}", @extra_body_class].compact.join(" ")
   end
+
+  def current_page_class(path)
+    :current if current_page?(path)
+  end
 end
 end
index c4f2ebad6d563e04b9397eff14e85d627fad5056..5a72eeeb374ecbfa42597965974973d18745e74a 100644 (file)
@@ -7,9 +7,9 @@
   </h1>
   <nav class='primary'>
     <ul>
   </h1>
   <nav class='primary'>
     <ul>
-      <li id="view_tab">
+      <li id="view_tab" class="<%= current_page_class(root_path) %>">
         <%= link_to t('layouts.view'), root_path, :class => 'tab geolink llz layers' %>
         <%= link_to t('layouts.view'), root_path, :class => 'tab geolink llz layers' %>
-      </li><li id="edit_tab" class="dropdown">
+      </li><li id="edit_tab" class="dropdown <%= current_page_class(edit_path) %>">
       <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink llz object",
                   :id => 'editanchor',
                   :data => { :editor => preferred_editor }
       <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink llz object",
                   :id => 'editanchor',
                   :data => { :editor => preferred_editor }
           </li>
         <% end %>
       </ul>
           </li>
         <% end %>
       </ul>
-      </li><li id="history_tab">
+      </li><li id="history_tab" class="<%= current_page_class(browse_changesets_path) %>">
         <%= link_to t('layouts.history'), browse_changesets_path, :class => 'tab geolink llz' %>
         <%= link_to t('layouts.history'), browse_changesets_path, :class => 'tab geolink llz' %>
-      </li><li id="export_tab">
+      </li><li id="export_tab" class="<%= current_page_class(export_path) %>">
         <%= link_to t('layouts.export'), export_path, :class => 'tab geolink llz' %>
       </li>
     </ul>
   </nav>
   <nav class='secondary'>
     <ul>
         <%= link_to t('layouts.export'), export_path, :class => 'tab geolink llz' %>
       </li>
     </ul>
   </nav>
   <nav class='secondary'>
     <ul>
-      <li><%= link_to t('layouts.gps_traces'), traces_path %></li>
-      <li><%= link_to t('layouts.user_diaries'), diary_path %></li>
-      <li><%= link_to t('layouts.help'), help_path %></li>
-      <li><%= link_to t('layouts.about'), about_path %></li>
+      <li class="<%= current_page_class(traces_path) %>"><%= link_to t('layouts.gps_traces'), traces_path %></li>
+      <li class="<%= current_page_class(diary_path) %>"><%= link_to t('layouts.user_diaries'), diary_path %></li>
+      <li class="<%= current_page_class(help_path) %>"><%= link_to t('layouts.help'), help_path %></li>
+      <li class="<%= current_page_class(about_path) %>"><%= link_to t('layouts.about'), about_path %></li>
     </ul>
     <% if @user %>
       <div class='dropdown user-menu'>
     </ul>
     <% if @user %>
       <div class='dropdown user-menu'>