Commit 02e827283d905477e816fbb940d8a4489df94826

Authored by Dmitriy Zaporozhets
1 parent faf7c79e

increased breadcrumbs with & commit messages

app/assets/stylesheets/projects.css.scss
... ... @@ -358,8 +358,12 @@ body.project-page table .commit {
358 358 color:white;
359 359 }
360 360 &.note {
361   - background: #2c5c66;
362   - color:white;
  361 + background-image: -webkit-gradient(linear, 0 0, 0 26, color-stop(0.076, #fefefe), to(#F6F7F8));
  362 + background-image: -webkit-linear-gradient(#fefefe 7.6%, #F6F7F8);
  363 + background-image: -moz-linear-gradient(#fefefe 7.6%, #F6F7F8);
  364 + background-image: -o-linear-gradient(#fefefe 7.6%, #F6F7F8);
  365 + color: #777;
  366 + border: 1px solid #DEDFE1;
363 367 }
364 368 &.issue {
365 369 background: #D12F19;
... ...
app/views/commits/_commits.html.haml
... ... @@ -17,7 +17,7 @@
17 17 = image_tag "no_avatar.png", :class => "left", :width => 40, :style => "padding-right:5px;"
18 18 %span.commit-title
19 19 %strong
20   - = truncate(commit.safe_message, :length => 60)
  20 + = truncate(commit.safe_message, :length => 70)
21 21 %span.commit-author
22 22 %strong= commit.author_name
23 23 = time_ago_in_words(commit.committed_date)
... ...
app/views/issues/_show.html.haml
... ... @@ -2,7 +2,7 @@
2 2 %td
3 3 %strong.issue-number{:class => sort_class}= "##{issue.id}"
4 4 %span
5   - = truncate(html_escape(issue.title), :length => 40)
  5 + = truncate(html_escape(issue.title), :length => 100)
6 6 %br
7 7 %br
8 8 %div.note-author
... ...
app/views/refs/_tree.html.haml
... ... @@ -4,7 +4,7 @@
4 4 %d
5 5 = link_to tree_project_ref_path(@project, @ref, :path => nil), :remote => true do
6 6 = @project.code
7   - - tree.breadcrumbs(2) do |link|
  7 + - tree.breadcrumbs(3) do |link|
8 8 \/
9 9 = link
10 10  
... ...