OSDN Git Service

MR: merged badge. Removed colors from MR list
authorrandx <dmitriy.zaporozhets@gmail.com>
Tue, 26 Jun 2012 16:08:44 +0000 (19:08 +0300)
committerrandx <dmitriy.zaporozhets@gmail.com>
Tue, 26 Jun 2012 16:08:44 +0000 (19:08 +0300)
app/assets/stylesheets/common.scss
app/assets/stylesheets/gitlab_bootstrap.scss
app/assets/stylesheets/nav.scss
app/helpers/merge_requests_helper.rb
app/views/issues/_show.html.haml
app/views/issues/index.html.haml
app/views/issues/show.html.haml
app/views/merge_requests/_merge_request.html.haml
app/views/merge_requests/index.html.haml
app/views/merge_requests/show.html.haml

index ec5faff..6cd71ac 100644 (file)
@@ -694,8 +694,8 @@ li.note {
     }
   }
   &.merged { 
-    background: #FEF;
-    border-color:#EDE;
+    background: #F5f5f5;
+    border-color:#E5E5E5;
     .icon { 
       background: #DAD;
       border:1px solid #B8B;
index 091003e..a347eeb 100644 (file)
@@ -174,6 +174,9 @@ a:focus {
 
 .label { 
   background-color: #474D57;
+  &.label-important { 
+    background-color: #B94A48;
+  }
 }
 
 .nav-tabs > li > a, .nav-pills > li > a {
index 9403539..86a7c26 100644 (file)
@@ -8,7 +8,7 @@ nav.main_menu {
   margin:30px 0;
   background:#eee;
   border:1px solid #bbb;
-  height:38px;
+  height:36px;
   background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf));
   background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf);
   background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf);
@@ -55,7 +55,7 @@ nav.main_menu {
       border-bottom-left-radius: 4px;
       border-left: 0;
     }
-    padding: 10px 25px;
+    padding: 9px 25px;
     display: inline-block;
     color: $style_color;
     position: relative;
index 29e7c6f..f9bfc8c 100644 (file)
@@ -36,7 +36,6 @@ module MergeRequestsHelper
     classes = "merge_request"
     classes << " closed" if mr.closed
     classes << " merged" if mr.merged?
-    classes << " today" if mr.today?
     classes
   end
 end
index e7dc3f8..492cedf 100644 (file)
@@ -19,6 +19,6 @@
     %strong= issue.assignee_name
     - if issue.upvotes > 0
       %span.badge.badge-success= "+#{issue.upvotes}"
-
+  
   = link_to project_issue_path(issue.project, issue) do
     %p.row_title= truncate(issue.title, :length => 100)
index ade80da..1c34ad2 100644 (file)
 
   .issues_legend
     .list_legend
+      .icon.today
+      .text Today
+
+    .list_legend
       .icon.critical
       .text Critical
 
     .list_legend
       .icon.closed
       .text Closed
-
-    .list_legend
-      .icon.today
-      .text Today
   .clearfix
 
   %div#issues-table-holder.ui-box
index 4b94339..0d3c4e1 100644 (file)
@@ -1,5 +1,6 @@
 %h3
   Issue ##{@issue.id}
+
   %small
     created at
     = @issue.created_at.stamp("Aug 21, 2011")
         %strong
           = truncate(milestone.title, :length => 20)
 
+    .right
+      - if @issue.critical
+        %span.label.label-important
+          Critical
+
   - if @issue.description.present?
     .bottom_box_content
       = preserve do
index e744a96..794e927 100644 (file)
@@ -1,8 +1,11 @@
 %li.wll{ :class => mr_css_classes(merge_request) }
-  .list_legend
-    .icon
   .right
     .left
+      - if merge_request.merged?
+        %span.btn.small.disabled.padded
+          %strong
+            %i.icon-ok
+            = "MERGED"
       - if merge_request.notes.any?
         %span.btn.small.disabled.padded= pluralize merge_request.notes.count, 'note'
       %span.btn.small.disabled.padded
index d98e52b..7eed3b9 100644 (file)
@@ -6,19 +6,6 @@
 
 %br
 
-.mrs_legend
-  .list_legend
-    .icon.today
-    .text Today
-
-  .list_legend
-    .icon.merged
-    .text Merged
-
-  .list_legend
-    .icon.closed
-    .text Closed
-.clearfix
 
 .ui-box
   .title
index 7707b79..6f34566 100644 (file)
@@ -6,6 +6,11 @@
   %span.pretty_label.branch= @merge_request.target_branch
 
   %span.right
+    - if @merge_request.merged?
+      %span.btn.small.disabled.padded
+        %strong
+          %i.icon-ok
+          = "MERGED"
     - if can?(current_user, :modify_merge_request, @merge_request)
       - if @merge_request.open?
         = link_to 'Close', project_merge_request_path(@project, @merge_request, :merge_request => {:closed => true }, :status_only => true), :method => :put, :class => "btn small padded danger", :title => "Close merge request"