diff --git a/app/views/student_work/_evaluation_work.html.erb b/app/views/student_work/_evaluation_work.html.erb
index caf2c49b5..2b8369b24 100644
--- a/app/views/student_work/_evaluation_work.html.erb
+++ b/app/views/student_work/_evaluation_work.html.erb
@@ -4,9 +4,9 @@
<% if is_my_work%>
<% student_id = student_work.user.user_extensions.nil? ? "--" : student_work.user.user_extensions.student_id%>
- <%= link_to student_id,user_path(student_work.user),:class => "c_blue02 hwork_center",:title => student_id%>
+ <%= link_to student_id,"javascript:void(0)",:class => "c_grey hwork_center",:title => student_id%>
<% else%>
- <%= link_to "--", "javascript:void(0)",:class => "c_blue02 hwork_center"%>
+ <%= link_to "--", "javascript:void(0)",:class => "c_grey hwork_center"%>
<% end%>
@@ -17,7 +17,7 @@
<% end%>
- <%= link_to student_work.name, student_work_path(student_work),:remote => true, :title => student_work.name%>
+ <%= link_to student_work.name, student_work_path(student_work),:remote => true, :title => student_work.name, :class => "c_blue02"%>
<% my_score = student_work_score(student_work,User.current) %>
diff --git a/app/views/student_work/_student_work.html.erb b/app/views/student_work/_student_work.html.erb
index 674454bc4..cff481b7a 100644
--- a/app/views/student_work/_student_work.html.erb
+++ b/app/views/student_work/_student_work.html.erb
@@ -2,13 +2,13 @@
" id="student_work_<%= student_work.id%>">
-
<% student_id = student_work.user.user_extensions.nil? ? "--" : student_work.user.user_extensions.student_id%>
- <%= link_to student_id,user_path(student_work.user),:class => "c_blue02 hwork_center",:title => student_id%>
+ <%= link_to student_id,"javascript:void(0)",:class => "c_grey hwork_center",:title => student_id%>
-
<%= link_to student_work.user.show_name,user_path(student_work.user),:class => "c_blue02 hwork_name",:title => student_work.user.show_name%>
-
- <%= link_to student_work.name, student_work_path(student_work),:remote => true,:title => student_work.name%>
+ <%= link_to student_work.name, student_work_path(student_work),:remote => true,:title => student_work.name, :class => "c_blue02"%>
-
<%= student_work.teacher_score.nil? ? "--" : format("%.2f",student_work.teacher_score)%>
diff --git a/public/stylesheets/courses.css b/public/stylesheets/courses.css
index 457d6da75..85db8361d 100644
--- a/public/stylesheets/courses.css
+++ b/public/stylesheets/courses.css
@@ -636,8 +636,8 @@ a:hover.icon_add{background:url(images/icons.png) -20px -310px no-repeat;}
.hwork_tit_e a{ width:455px; display:block; overflow:hidden; white-space: nowrap; text-overflow:ellipsis; }
.hwork_code{ width:60px; text-align:center; margin-right:15px;}
.hwork_code02{ width:60px; text-align:center; margin-right:10px;}
-a.hwork_center{ display:block; width:60px; text-align:center; margin-right:5px;overflow: hidden; white-space: nowrap; text-overflow:ellipsis;}
-a.hwork_name{ display:block;width:65px; text-align:center; margin-right:10px;overflow: hidden;white-space: nowrap; text-overflow:ellipsis;min-height: 1px;}
+a.hwork_center{ display:block; width:60px; margin-right:5px;overflow: hidden; white-space: nowrap; text-overflow:ellipsis;}
+a.hwork_name{ display:block;width:65px; margin-right:10px;overflow: hidden;white-space: nowrap; text-overflow:ellipsis;min-height: 1px;}
.show_hwork{ border:2px solid #64bdd9; width:646px; padding:10px; color:#666666; padding-bottom:0px; }
.show_hwork ul li{ margin-bottom:5px;}
.show_hwork_arrow{ position:relative; top:2px; left:25px;background:url(../images/course/arrow_up.jpg) 0 0 no-repeat; width:20px; height:11px;}