From 01f56a761f69f8f618972ef5a3cc15dbde5827a3 Mon Sep 17 00:00:00 2001 From: sw <939547590@qq.com> Date: Sat, 11 Apr 2015 17:28:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E9=85=8D=E7=BD=AE---?= =?UTF-8?q?=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/projects/settings/_modules.html.erb | 26 +++++------ .../projects/settings/_new_modules.html.erb | 43 +++++++++++-------- public/javascripts/project.js | 2 +- public/stylesheets/project.css | 6 +-- 4 files changed, 38 insertions(+), 39 deletions(-) diff --git a/app/views/projects/settings/_modules.html.erb b/app/views/projects/settings/_modules.html.erb index 7b8ff3e6e..3b751278f 100644 --- a/app/views/projects/settings/_modules.html.erb +++ b/app/views/projects/settings/_modules.html.erb @@ -1,20 +1,14 @@ -<%= form_for @project, - :url => { :action => 'modules', :id => @project }, - :html => {:id => 'modules-form', - :method => :post} do |f| %> +<%= form_for @project,:url => { :action => 'modules', :id => @project },:html => {:id => 'modules-form',:method => :post} do |f| %> +
+ <%= l(:text_select_project_modules) %> -
-<%= l(:text_select_project_modules) %> + <% Redmine::AccessControl.available_project_modules.each do |m| %> -<% Redmine::AccessControl.available_project_modules.each do |m| %> - -

- -<% end %> -
-

<%= check_all_links 'modules-form' %>

- -

<%= submit_tag l(:button_save) %>

+

+ <% end %> +
+

<%= check_all_links 'modules-form' %>

+

<%= submit_tag l(:button_save) %>

<% end %> diff --git a/app/views/projects/settings/_new_modules.html.erb b/app/views/projects/settings/_new_modules.html.erb index e2696a23e..c14656b94 100644 --- a/app/views/projects/settings/_new_modules.html.erb +++ b/app/views/projects/settings/_new_modules.html.erb @@ -1,19 +1,24 @@ -
-

请选择此项目可以使用的模块:

- -
-

全选   |   清除

-

保存

\ No newline at end of file +

请选择此项目可以使用的模块:

+<%= form_for @project,:url => { :action => 'modules', :id => @project },:html => {:id => 'modules-form',:method => :post} do |f| %> +
+ +
+

+ 全选 +   |   + 清除 +

+

+ 保存 +

+<% end %> + diff --git a/public/javascripts/project.js b/public/javascripts/project.js index 148fe44cc..618268f41 100644 --- a/public/javascripts/project.js +++ b/public/javascripts/project.js @@ -174,7 +174,7 @@ function project_setting(n) } else { - $("#pro_st_tb_"+i).removeClass().addClass("pro_st_dis"); + $("#pro_st_tb_"+i).removeClass().addClass("pro_st_normaltab"); $("#pro_st_tbc_0"+i).removeClass().addClass("pro_st_undis"); } } diff --git a/public/stylesheets/project.css b/public/stylesheets/project.css index ddb23e282..556717e9e 100644 --- a/public/stylesheets/project.css +++ b/public/stylesheets/project.css @@ -363,9 +363,9 @@ blockquote { .pro_st_tb_{ border-bottom:3px solid #e4e4e4; text-align:center; margin-bottom:10px; } .pro_st_tb_ ul{height:24px;} .pro_st_tb_ li{float:left;height: 24px;width: auto; padding:0 10px;cursor:pointer; } -.pro_st_normaltab { color:#15bccf ; border-bottom:3px solid #e4e4e4; } -.pro_st_hovertab { color:#656767; font-weight:bold; border-bottom:3px solid #15bccf; } -.pro_st_normaltab a { color:#64bdd9 ; } +.pro_st_normaltab{ color:#15bccf ; border-bottom:3px solid #e4e4e4; } +.pro_st_hovertab{ color:#656767; font-weight:bold; border-bottom:3px solid #15bccf; } +.pro_st_normaltab a{ color:#64bdd9 ; } .pro_st_hovertab a{color:#fff; background-color:#64bdd9; text-decoration:none;} .pro_st_dis{display:block; } .pro_st_undis{display:none;}