Commit 46cedcbe7568459f7106c5a097ef99a5357d37d7

Authored by Rodrigo Souto
Committed by Antonio Terceiro
1 parent 3837aa6b

Removing list bullets from tag search view

app/views/search/tag.rhtml
... ... @@ -9,7 +9,9 @@
9 9 <% cache_timeout(@tag_cache_key, 4.hour.from_now) do %>
10 10 <div class='search-tagged-items'>
11 11 <% @tagged.each do |hit| %>
12   - <%= render :partial => partial_for_class(hit.class), :object => hit %>
  12 + <ul class="clean-list">
  13 + <%= render :partial => partial_for_class(hit.class), :object => hit %>
  14 + </ul>
13 15 <br style='clear: left;'/>
14 16 <% end %>
15 17  
... ...
public/stylesheets/application.css
... ... @@ -4359,3 +4359,9 @@ h1#agenda-title {
4359 4359 font-style: italic;
4360 4360 color: #555;
4361 4361 }
  4362 +
  4363 +.clean-list {
  4364 + list-style-type: none;
  4365 + padding-left: 0px;
  4366 + margin: 0px;
  4367 +}
... ...