Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
759c2f10
Commit
759c2f10
authored
Jun 22, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into ce-to-ee-2018-06-22
parents
267ffa26
59d48848
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
12 deletions
+15
-12
Gemfile.lock
Gemfile.lock
+1
-1
app/assets/stylesheets/bootstrap_migration.scss
app/assets/stylesheets/bootstrap_migration.scss
+6
-0
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+0
-4
changelogs/unreleased/fix-boards-issue-highlight.yml
changelogs/unreleased/fix-boards-issue-highlight.yml
+5
-0
lib/gitlab/git/commit.rb
lib/gitlab/git/commit.rb
+3
-7
No files found.
Gemfile.lock
View file @
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)
...
...
app/assets/stylesheets/bootstrap_migration.scss
View file @
759c2f10
...
@@ -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
,
...
...
app/assets/stylesheets/pages/boards.scss
View file @
759c2f10
...
@@ -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
{
...
...
changelogs/unreleased/fix-boards-issue-highlight.yml
0 → 100644
View file @
759c2f10
---
title
:
Fix boards issue highlight
merge_request
:
20063
author
:
George Tsiolis
type
:
changed
lib/gitlab/git/commit.rb
View file @
759c2f10
...
@@ -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
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment