Commit 6ee3934028889c739eaf69e1c92b9854f7a29661

Authored by Dmitriy Zaporozhets
1 parent 34b0bea0

Remove borders for wiki content. Fix wiki history UI

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
app/views/projects/wikis/history.html.haml
... ... @@ -3,7 +3,7 @@
3 3 %span.light History for
4 4 = link_to @wiki.title.titleize, project_wiki_path(@project, @wiki)
5 5  
6   -%table
  6 +%table.table
7 7 %thead
8 8 %tr
9 9 %th Page version
... ...
app/views/projects/wikis/show.html.haml
... ... @@ -7,9 +7,14 @@
7 7 This is an old version of this page.
8 8 You can view the #{link_to "most recent version", project_wiki_path(@project, @wiki)} or browse the #{link_to "history", history_project_wiki_path(@project, @wiki)}.
9 9  
10   -.file-holder
11   - .file-content.wiki
  10 +%hr
  11 +
  12 +.wiki-holder
  13 + .wiki
12 14 = preserve do
13 15 = render_wiki_content(@wiki)
14 16  
15   -%p.span Last edited by #{commit_author_link(@wiki.commit, avatar: true, size: 16)} #{time_ago_with_tooltip(@wiki.commit.created_at)} ago
  17 +%hr
  18 +
  19 +.wiki-last-edit-by
  20 + Last edited by #{commit_author_link(@wiki.commit, avatar: true, size: 16)} #{time_ago_with_tooltip(@wiki.commit.created_at)} ago
... ...