Highlighting of source link target line (#13746).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11857 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2013-05-18 07:09:02 +00:00
parent 997bfbe78f
commit 6e35d2f0e9
2 changed files with 5 additions and 2 deletions

View File

@ -3,8 +3,8 @@
<tbody> <tbody>
<% line_num = 1 %> <% line_num = 1 %>
<% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %> <% syntax_highlight_lines(filename, Redmine::CodesetUtil.to_utf8_by_setting(content)).each do |line| %>
<tr> <tr id="L<%= line_num %>">
<th class="line-num" id="L<%= line_num %>"> <th class="line-num">
<a href="#L<%= line_num %>"><%= line_num %></a> <a href="#L<%= line_num %>"><%= line_num %></a>
</th> </th>
<td class="line-code"> <td class="line-code">

View File

@ -64,6 +64,9 @@ table.filecontent td.line-code pre {
font-family:"Liberation Mono", Courier, monospace; font-size:12px; font-family:"Liberation Mono", Courier, monospace; font-size:12px;
} }
table.filecontent tr:target th.line-num { background-color:#E0E0E0; color: #777; }
table.filecontent tr:target td.line-code { background-color:#DDEEFF; }
/* 12 different colors for the annonate view */ /* 12 different colors for the annonate view */
table.annotate tr.bloc-0 {background: #FFFFBF;} table.annotate tr.bloc-0 {background: #FFFFBF;}
table.annotate tr.bloc-1 {background: #EABFFF;} table.annotate tr.bloc-1 {background: #EABFFF;}