}
.dropdown-toggle {
- padding: 5px 10px 5px 5px;
+ display: inline-block;
+ padding: 6px 10px 4px 10px;
}
.caret {
- margin-top: 15px;
border-top-color: $green;
}
.dropdown-submenu:focus > a {
color: #ffffff;
text-decoration: none;
- background-color: #0081c2;
+ background-color: $green;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
- background-color: #0081c2;
+ background-color: $green;
outline: 0;
}
+++ /dev/null
-<div class="dropdown edit_menu">
- <%= link_to link_text, edit_path,
- :id => 'editanchor',
- :data => { :editor => preferred_editor },
- :class => "geolink tab #{link_class}" %>
- <a class='dropdown-toggle' data-toggle='dropdown' href='#'>
- <b class="caret"></b>
- </a>
- <ul class='dropdown-menu'>
- <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
- <li>
- <%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")),
- edit_path(:editor => editor),
- :data => { :editor => editor },
- :class => "geolink #{link_class}" %>
- </li>
- <% end %>
- </ul>
-</div>
<%= link_to t('layouts.history'), browse_changesets_path, :class => 'tab geolink llz' %>
</li><li id="export_tab">
<%= link_to t('layouts.export'), export_path, :class => 'tab geolink llz' %>
- </li><li id="edit_tab">
- <%= render :partial => 'layouts/edit_menu',
- :locals => { :link_text => t('layouts.edit'), :link_class => 'llz object' }%>
+ </li><li id="edit_tab" class="dropdown">
+ <%= link_to t('layouts.edit'), edit_path, :class => "tab geolink llz object",
+ :id => 'editanchor',
+ :data => { :editor => preferred_editor }
+ %><a class='dropdown-toggle' data-toggle='dropdown' href='#'><b class="caret"></b></a>
+ <ul class='dropdown-menu'>
+ <% Editors::RECOMMENDED_EDITORS.each do |editor| %>
+ <li>
+ <%= link_to t('layouts.edit_with', :editor => t("editor.#{editor}.description")),
+ edit_path(:editor => editor),
+ :data => { :editor => editor },
+ :class => "geolink llz object" %>
+ </li>
+ <% end %>
+ </ul>
</li>
</ul>
</nav>