diff --git a/app/views/messages/show.html.erb b/app/views/messages/show.html.erb
index fae3c4c38..51ed6a884 100644
--- a/app/views/messages/show.html.erb
+++ b/app/views/messages/show.html.erb
@@ -1,151 +1,181 @@
-
- <%= watcher_link(@topic, User.current) %>
- <%= link_to(
- l(:button_quote),
- {:action => 'quote', :id => @topic},
- :remote => true,
- :method => 'get',
- :class => 'icon icon-comment',
- :remote => true) if !@topic.locked? && authorize_for('messages', 'reply') %>
- <%= link_to(
- l(:button_edit),
- {:action => 'edit', :id => @topic},
- :class => 'icon icon-edit'
- ) if @message.editable_by?(User.current) %>
- <%= link_to(
- l(:button_delete),
- {:action => 'destroy', :id => @topic},
- :method => :post,
- :data => {:confirm => l(:text_are_you_sure)},
- :class => 'icon icon-del'
- ) if @message.destroyable_by?(User.current) %>
-
-
-
<%= link_to image_tag(url_to_avatar(@topic.author), :class => "avatar"), user_path(@topic.author) %>
-
<%=link_to @topic.author, user_path(@topic.author) %>
+
+ <%= watcher_link(@topic, User.current) %>
+ <%= link_to(
+ l(:button_quote),
+ {:action => 'quote', :id => @topic},
+ :remote => true,
+ :method => 'get',
+ :class => 'icon icon-comment',
+ :remote => true) if !@topic.locked? && authorize_for('messages', 'reply') %>
+ <%= link_to(
+ l(:button_edit),
+ {:action => 'edit', :id => @topic},
+ :class => 'icon icon-edit'
+ ) if @message.editable_by?(User.current) %>
+ <%= link_to(
+ l(:button_delete),
+ {:action => 'destroy', :id => @topic},
+ :method => :post,
+ :data => {:confirm => l(:text_are_you_sure)},
+ :class => 'icon icon-del'
+ ) if @message.destroyable_by?(User.current) %>
+
+
+
+ <%= link_to image_tag(url_to_avatar(@topic.author), :class => "avatar"), user_path(@topic.author) %>
+
+
+ <%= link_to @topic.author, user_path(@topic.author) %>
+
-
<%= label_tag l(:field_subject) %>: <%=link_to @topic.subject, project_boards_path(@topic.project) %>
-
<%= textilizable(@topic, :content) %>
- <%= link_to_attachments @topic, :author => false %>
-
-
<%= authoring @topic.created_on, @topic.author %>
+
+ <%= label_tag l(:field_subject) %>: <%= link_to @topic.subject, project_boards_path(@topic.project) %>
+
+
+ <%= textilizable(@topic, :content) %>
+ <%= link_to_attachments @topic, :author => false %>
+
+
+ <%= authoring @topic.created_on, @topic.author %>
+
+ <% if !@topic.locked? && authorize_for('messages', 'reply') %>
+
+ <%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %>
+
<% unless @replies.empty? %>
+
+
+
+
-<% reply_count = 0 %>
+<% reply_count = 0 %>
<% @replies.each do |message| %>
-
">
-
- <%= link_to(
- image_tag('comment.png'),
- {:action => 'quote', :id => message},
- :remote => true,
- :method => 'get',
- :title => l(:button_quote)) if !@topic.locked? && authorize_for('messages', 'reply') %>
- <%= link_to(
- image_tag('edit.png'),
- {:action => 'edit', :id => message},
- :title => l(:button_edit)
- ) if message.editable_by?(User.current) %>
- <%= link_to(
- image_tag('delete.png'),
- {:action => 'destroy', :id => message},
- :method => :post,
- :data => {:confirm => l(:text_are_you_sure)},
- :title => l(:button_delete)
- ) if message.destroyable_by?(User.current) %>
-
-
-
- <%= reply_count += 1 %>楼 |
- <%= link_to image_tag(url_to_avatar(message.author), :class => "avatar"), user_path(message.author) %> |
-
- <%= authoring message.created_on, message.author %> |
-
-
-
+
">
+
+
+
+ <%= reply_count += 1 %>楼 |
+
+
+ <%= link_to(
+ "引用",
+ {:action => 'quote', :id => message},
+ :remote => true,
+ :method => 'get',
+ :title => l(:button_quote)) if !@topic.locked? && authorize_for('messages', 'reply') %>
+ <%= link_to(
+ #image_tag('edit.png'),
+ "编辑",
+ {:action => 'edit', :id => message},
+ :title => l(:button_edit)
+ ) if message.editable_by?(User.current) %>
+ <%= link_to(
+ #image_tag('delete.png'),
+ "删除",
+ {:action => 'destroy', :id => message},
+ :method => :post,
+ :data => {:confirm => l(:text_are_you_sure)},
+ :title => l(:button_delete)
+ ) if message.destroyable_by?(User.current) %>
+ |
+
+
+ <%= link_to image_tag(url_to_avatar(message.author), :class => "avatar"), user_path(message.author) %> |
+
+
+
+ <%= authoring message.created_on, message.author %> |
+
+
+
+
<% end %>
-
+
<% end %>
-<% if !@topic.locked? && authorize_for('messages', 'reply') %>
-
<%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %>
+
+
+
-<%= form_for @reply, :as => :reply, :url => {:action => 'reply', :id => @topic}, :html => {:multipart => true, :id => 'message-form'} do |f| %>
- <%= render :partial => 'form', :locals => {:f => f, :replying => true} %>
- <%= submit_tag l(:button_submit) %>
- <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board}, 'message-form') %>
-<% end %>
-
+ <%= form_for @reply, :as => :reply, :url => {:action => 'reply', :id => @topic}, :html => {:multipart => true, :id => 'message-form'} do |f| %>
+ <%= render :partial => 'form', :locals => {:f => f, :replying => true} %>
+ <%= submit_tag l(:button_submit) %>
+ <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board}, 'message-form') %>
+ <% end %>
+
<% end %>
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 46baeb5e7..032b40916 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -258,7 +258,7 @@ span.forums-avatar-right{
text-overflow: ellipsis;
}
.contextual-borad{
- float:right;
+ /*float:right;*/
white-space: nowrap;
line-height:1.4em;
margin-top:0px;