diff --git a/app/views/memos/edit.html.erb b/app/views/memos/edit.html.erb
index cf8770c8c..35543398f 100644
--- a/app/views/memos/edit.html.erb
+++ b/app/views/memos/edit.html.erb
@@ -27,8 +27,7 @@
+ <%= label_tag l(:field_subject) %>: <%=h @memo.subject %>
+
<%= textAreailizable(@memo,:content) %>
diff --git a/app/views/stores/index.html.erb b/app/views/stores/index.html.erb
index 5df6ecca8..47ea32b91 100644
--- a/app/views/stores/index.html.erb
+++ b/app/views/stores/index.html.erb
@@ -1,71 +1,68 @@
<% content_for :top_field do%>
- <%= render 'search_bar' %>
+ <%= render 'search_bar' %>
<% end %>
-
-<% @attach_array.each do |k|%>
-
-
- <%= @str_arr.shift %>
-
+
+ <% @attach_array.each do |k|%>
+
+
+ <%= @str_arr.shift %>
+
-
-
-
<%=l(:label_attachment)%>
-
<%=l(:field_downloads)%>
-
<%=l(:button_download)%>
-
-
+
+
+
<%=l(:label_attachment)%>
+
<%=l(:field_downloads)%>
+
<%=l(:button_download)%>
+
+
-
- <% k.each do |c1|%>
-
-
- <%= link_to c1.filename, (attachFromUrl c1), {:title => c1.filename, :target => "_blank"} %>
-
-
- <%= c1.downloads %>
-
-
- <%= link_to_attachment c1, {:download => true, :text => image_tag("/images/button/download.png", width: "22px", alt: l(:button_download)) }%>
-
-
- <% end -%>
-
+
+ <% k.each do |c1|%>
+
+
+ <%= link_to c1.filename, (attachFromUrl c1), {:title => c1.filename, :target => "_blank"} %>
+
+
+ <%= c1.downloads %>
+
+
+ <%= link_to_attachment c1, {:download => true, :text => image_tag("/images/button/download.png", width: "22px", alt: l(:button_download)) }%>
+
+
+ <% end -%>
+
-
-<% end; reset_cycle %>
+
+ <% end; reset_cycle %>
\ No newline at end of file
diff --git a/config/locales/zh.yml b/config/locales/zh.yml
index f71241223..fa8cf91f9 100644
--- a/config/locales/zh.yml
+++ b/config/locales/zh.yml
@@ -1936,7 +1936,7 @@ zh:
label_forum_edit: 编辑讨论区
label_memo_create: 发布
label_memo_new: 新建主题
- label_memo_edit: 修改主题label_board_new
+ label_memo_edit: 修改主题
label_memo_new_from_forum: 发布帖子
label_forum: 公共贴吧
label_forum_new: 新建贴吧
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 72b379585..1fda63f93 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -2794,3 +2794,19 @@ div.repos_explain{
padding-top: 20px;
padding-bottom: 20px;
}
+
+.button-canel{
+ padding-bottom: 5px;
+ width: auto;
+ height: 25px;
+ font-family: '微软雅黑',Arial,Helvetica,sans-serif;
+ font-size: 12px;
+ color: #ffffff;
+ padding: 3px 9px;
+ background: #15bccf;
+ border-radius: 4px;
+ border: 1px solid #15bccf;
+ box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 0px 2px rgb(255, 255, 255) inset;
+ text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2), 0px 1px 0px rgb(255, 255, 255);
+ cursor: pointer;
+}