Showing 2 changed files with 6 additions and 1 deletions
+2
devel/css_color.txt
... ...
@@ -0,0 +1,2 @@
1
+# CSS color
2
+link blue:#4183C4
+4 -1
templates/main/blob.html.ep
... ...
@@ -113,6 +113,9 @@
113 113
     .blob_header .author_date {
114 114
       color: #666;
115 115
     }
116
+    .blob_header a.comment {
117
+      color:#4183C4;
118
+    }
116 119
     .blob_header .bottom {
117 120
       padding:5px;
118 121
       padding-left:10px;
... ...
@@ -144,7 +147,7 @@
144 147
       <div class="top">
145 148
         <b><%= $commit_log->{author} %></b>
146 149
         <span class="author_date"><%= $commit_log->{author_date} %></span>
147
-        <a href="<%= url_for("/$user/$repository/commit/$id") %>">
150
+        <a class="comment" href="<%= url_for("/$user/$repository/commit/$id") %>">
148 151
           <%= $commit->{title} %>
149 152
         </a>
150 153
       </div>