Commit 2d9d806d authored by Stan Hu's avatar Stan Hu

Merge branch 'ce-to-ee-2018-06-22' into 'master'

CE upstream - 2018-06-22 18:21 UTC

Closes gitaly#222

See merge request gitlab-org/gitlab-ee!6251
parents 550d65c8 759c2f10
...@@ -896,7 +896,7 @@ GEM ...@@ -896,7 +896,7 @@ GEM
activesupport (>= 4.2) activesupport (>= 4.2)
spring-commands-rspec (1.0.4) spring-commands-rspec (1.0.4)
spring (>= 0.9.1) spring (>= 0.9.1)
sprockets (3.7.1) sprockets (3.7.2)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
rack (> 1, < 3) rack (> 1, < 3)
sprockets-rails (3.2.1) sprockets-rails (3.2.1)
......
...@@ -173,6 +173,12 @@ table { ...@@ -173,6 +173,12 @@ table {
display: none; display: none;
} }
h3.popover-header {
// Default bootstrap popovers use <h3>
// which we default to having a top margin
margin-top: 0;
}
// Add to .label so that old system notes that are saved to the db // Add to .label so that old system notes that are saved to the db
// will still receive the correct styling // will still receive the correct styling
.badge, .badge,
......
...@@ -335,10 +335,6 @@ ...@@ -335,10 +335,6 @@
&.is-active, &.is-active,
&.is-active .board-card-assignee:hover a { &.is-active .board-card-assignee:hover a {
background-color: $row-hover; background-color: $row-hover;
&:first-child:not(:only-child) {
box-shadow: -10px 0 10px 1px $row-hover;
}
} }
.badge { .badge {
......
---
title: Fix boards issue highlight
merge_request: 20063
author: George Tsiolis
type: changed
...@@ -381,15 +381,11 @@ module Gitlab ...@@ -381,15 +381,11 @@ module Gitlab
# empty repo. See Repository#diff for keys allowed in the +options+ # empty repo. See Repository#diff for keys allowed in the +options+
# hash. # hash.
def diff_from_parent(options = {}) def diff_from_parent(options = {})
Gitlab::GitalyClient.migrate(:commit_raw_diffs) do |is_enabled| @repository.gitaly_commit_client.diff_from_parent(self, options)
if is_enabled
@repository.gitaly_commit_client.diff_from_parent(self, options)
else
rugged_diff_from_parent(options)
end
end
end end
# Not to be called directly, but right now its used for tests and in old
# migrations
def rugged_diff_from_parent(options = {}) def rugged_diff_from_parent(options = {})
options ||= {} options ||= {}
break_rewrites = options[:break_rewrites] break_rewrites = options[:break_rewrites]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment