diff --git a/app/assets/stylesheets/common/inline.css.scss b/app/assets/stylesheets/common/inline.css.scss index b4c1a87d5..c46772814 100644 --- a/app/assets/stylesheets/common/inline.css.scss +++ b/app/assets/stylesheets/common/inline.css.scss @@ -14,3 +14,8 @@ span.link { span.wait { color: #CCC; } + +span.count { + color: #CCC; + margin-left: 0.5em; +} \ No newline at end of file diff --git a/app/views/artist_versions/index.html.erb b/app/views/artist_versions/index.html.erb index f6577aa2d..d72cdb1e1 100644 --- a/app/views/artist_versions/index.html.erb +++ b/app/views/artist_versions/index.html.erb @@ -3,7 +3,7 @@
| Name | diff --git a/app/views/note_versions/index.html.erb b/app/views/note_versions/index.html.erb index 00e283e58..cf7df0f99 100644 --- a/app/views/note_versions/index.html.erb +++ b/app/views/note_versions/index.html.erb @@ -26,7 +26,7 @@ <% end %><%= link_to note_version.updater.name, user_path(note_version.updater) %> | -<%= note_version.updated_at.strftime("%Y-%m-%d %H:%M") %> | +<%= compact_time note_version.updated_at %> | <% if CurrentUser.is_member? %> <%= link_to "Revert", revert_note_path(note_version.note_id, :version_id => note_version.id), :remote => true, :method => :put, :confirm => "Do you really want to revert to this version?" %> diff --git a/app/views/tag_aliases/index.html.erb b/app/views/tag_aliases/index.html.erb index 14ee02da8..9899b8513 100644 --- a/app/views/tag_aliases/index.html.erb +++ b/app/views/tag_aliases/index.html.erb @@ -20,8 +20,8 @@ |
|---|---|---|---|---|
| <%= link_to tag_alias.antecedent_name, posts_path(:tags => tag_alias.antecedent_name) %> (<%= tag_alias.antecedent_tag.post_count rescue 0 %>) | -<%= link_to tag_alias.consequent_name, posts_path(:tags => tag_alias.consequent_name) %> (<%= tag_alias.consequent_tag.post_count rescue 0 %>) | +<%= link_to tag_alias.antecedent_name, posts_path(:tags => tag_alias.antecedent_name) %> <%= tag_alias.antecedent_tag.post_count rescue 0 %> | +<%= link_to tag_alias.consequent_name, posts_path(:tags => tag_alias.consequent_name) %> <%= tag_alias.consequent_tag.post_count rescue 0 %> | <% if tag_alias.forum_topic_id %> <%= link_to tag_alias.forum_topic_id, forum_topic_path(tag_alias.forum_topic_id) %> diff --git a/app/views/tag_implications/index.html.erb b/app/views/tag_implications/index.html.erb index aab606d65..20d49af01 100644 --- a/app/views/tag_implications/index.html.erb +++ b/app/views/tag_implications/index.html.erb @@ -20,8 +20,8 @@ |
| <%= link_to tag_implication.antecedent_name, posts_path(:tags => tag_implication.antecedent_name) %> (<%= tag_implication.antecedent_tag.post_count rescue 0 %>) | -<%= link_to tag_implication.consequent_name, posts_path(:tags => tag_implication.consequent_name) %> (<%= tag_implication.consequent_tag.post_count rescue 0 %>) | +<%= link_to tag_implication.antecedent_name, posts_path(:tags => tag_implication.antecedent_name) %> <%= tag_implication.antecedent_tag.post_count rescue 0 %> | +<%= link_to tag_implication.consequent_name, posts_path(:tags => tag_implication.consequent_name) %> <%= tag_implication.consequent_tag.post_count rescue 0 %> | <% if tag_implication.forum_topic_id %> <%= link_to tag_implication.forum_topic_id, forum_topic_path(tag_implication.forum_topic_id) %> |