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
c3aa5a68
Commit
c3aa5a68
authored
Aug 28, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
44a2b517
148c5ccb
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
9 deletions
+36
-9
GITLAB_WORKHORSE_VERSION
GITLAB_WORKHORSE_VERSION
+1
-1
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+1
-1
app/assets/stylesheets/pages/search.scss
app/assets/stylesheets/pages/search.scss
+5
-5
changelogs/unreleased/fix-search-input-dropdown.yml
changelogs/unreleased/fix-search-input-dropdown.yml
+5
-0
lib/gitlab/workhorse.rb
lib/gitlab/workhorse.rb
+4
-2
spec/lib/gitlab/workhorse_spec.rb
spec/lib/gitlab/workhorse_spec.rb
+13
-0
spec/requests/api/project_snapshots_spec.rb
spec/requests/api/project_snapshots_spec.rb
+7
-0
No files found.
GITLAB_WORKHORSE_VERSION
View file @
c3aa5a68
8.
8
.0
8.
9
.0
app/assets/stylesheets/framework/variables.scss
View file @
c3aa5a68
...
...
@@ -529,7 +529,7 @@ $award-emoji-width-xs: 90%;
*/
$search-input-border-color
:
rgba
(
$blue-400
,
0
.8
);
$search-input-width
:
200px
;
$search-input-
active
-width
:
320px
;
$search-input-
xl
-width
:
320px
;
$location-icon-color
:
#e7e9ed
;
/*
...
...
app/assets/stylesheets/pages/search.scss
View file @
c3aa5a68
...
...
@@ -48,6 +48,10 @@ input[type='checkbox']:hover {
background-color
ease-in-out
$default-transition-duration
,
width
ease-in-out
$default-transition-duration
;
@include
media-breakpoint-up
(
xl
)
{
width
:
$search-input-xl-width
;
}
&
:hover
{
box-shadow
:
none
;
}
...
...
@@ -116,7 +120,7 @@ input[type='checkbox']:hover {
overflow
:
auto
;
@include
media-breakpoint-up
(
xl
)
{
width
:
$search-input-
active
-width
;
width
:
$search-input-
xl
-width
;
}
}
...
...
@@ -131,10 +135,6 @@ input[type='checkbox']:hover {
border-color
:
$blue-300
;
box-shadow
:
none
;
@include
media-breakpoint-up
(
xl
)
{
width
:
$search-input-active-width
;
}
.search-input-wrap
{
.search-icon
,
.clear-icon
{
...
...
changelogs/unreleased/fix-search-input-dropdown.yml
0 → 100644
View file @
c3aa5a68
---
title
:
Fix top-nav search bar dropdown on xl displays
merge_request
:
31864
author
:
Kemais Ehlers
type
:
fixed
lib/gitlab/workhorse.rb
View file @
c3aa5a68
...
...
@@ -34,7 +34,8 @@ module Gitlab
GitConfigOptions
:
[],
GitalyServer
:
{
address:
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
),
features:
Feature
::
Gitaly
.
server_feature_flags
}
}
...
...
@@ -250,7 +251,8 @@ module Gitlab
def
gitaly_server_hash
(
repository
)
{
address:
Gitlab
::
GitalyClient
.
address
(
repository
.
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
repository
.
project
.
repository_storage
)
token:
Gitlab
::
GitalyClient
.
token
(
repository
.
project
.
repository_storage
),
features:
Feature
::
Gitaly
.
server_feature_flags
}
end
...
...
spec/lib/gitlab/workhorse_spec.rb
View file @
c3aa5a68
...
...
@@ -14,6 +14,12 @@ describe Gitlab::Workhorse do
[
key
,
command
,
params
]
end
before
do
allow
(
Feature
::
Gitaly
).
to
receive
(
:server_feature_flags
).
and_return
({
'gitaly-feature-foobar'
=>
'true'
})
end
describe
".send_git_archive"
do
let
(
:ref
)
{
'master'
}
let
(
:format
)
{
'zip'
}
...
...
@@ -41,6 +47,7 @@ describe Gitlab::Workhorse do
expected_params
=
metadata
.
merge
(
'GitalyRepository'
=>
repository
.
gitaly_repository
.
to_h
,
'GitalyServer'
=>
{
features:
{
'gitaly-feature-foobar'
=>
'true'
},
address:
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
}
...
...
@@ -69,6 +76,7 @@ describe Gitlab::Workhorse do
expect
(
command
).
to
eq
(
'git-archive'
)
expect
(
params
).
to
eq
({
'GitalyServer'
=>
{
features:
{
'gitaly-feature-foobar'
=>
'true'
},
address:
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
},
...
...
@@ -117,6 +125,7 @@ describe Gitlab::Workhorse do
expect
(
command
).
to
eq
(
"git-format-patch"
)
expect
(
params
).
to
eq
({
'GitalyServer'
=>
{
features:
{
'gitaly-feature-foobar'
=>
'true'
},
address:
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
},
...
...
@@ -178,6 +187,7 @@ describe Gitlab::Workhorse do
expect
(
command
).
to
eq
(
"git-diff"
)
expect
(
params
).
to
eq
({
'GitalyServer'
=>
{
features:
{
'gitaly-feature-foobar'
=>
'true'
},
address:
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
},
...
...
@@ -315,6 +325,7 @@ describe Gitlab::Workhorse do
let
(
:gitaly_params
)
do
{
GitalyServer
:
{
features:
{
'gitaly-feature-foobar'
=>
'true'
},
address:
Gitlab
::
GitalyClient
.
address
(
'default'
),
token:
Gitlab
::
GitalyClient
.
token
(
'default'
)
}
...
...
@@ -463,6 +474,7 @@ describe Gitlab::Workhorse do
expect
(
command
).
to
eq
(
'git-blob'
)
expect
(
params
).
to
eq
({
'GitalyServer'
=>
{
features:
{
'gitaly-feature-foobar'
=>
'true'
},
address:
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
token:
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
},
...
...
@@ -504,6 +516,7 @@ describe Gitlab::Workhorse do
expect
(
command
).
to
eq
(
'git-snapshot'
)
expect
(
params
).
to
eq
(
'GitalyServer'
=>
{
'features'
=>
{
'gitaly-feature-foobar'
=>
'true'
},
'address'
=>
Gitlab
::
GitalyClient
.
address
(
project
.
repository_storage
),
'token'
=>
Gitlab
::
GitalyClient
.
token
(
project
.
repository_storage
)
},
...
...
spec/requests/api/project_snapshots_spec.rb
View file @
c3aa5a68
...
...
@@ -6,6 +6,12 @@ describe API::ProjectSnapshots do
let
(
:project
)
{
create
(
:project
)
}
let
(
:admin
)
{
create
(
:admin
)
}
before
do
allow
(
Feature
::
Gitaly
).
to
receive
(
:server_feature_flags
).
and_return
({
'gitaly-feature-foobar'
=>
'true'
})
end
describe
'GET /projects/:id/snapshot'
do
def
expect_snapshot_response_for
(
repository
)
type
,
params
=
workhorse_send_data
...
...
@@ -13,6 +19,7 @@ describe API::ProjectSnapshots do
expect
(
type
).
to
eq
(
'git-snapshot'
)
expect
(
params
).
to
eq
(
'GitalyServer'
=>
{
'features'
=>
{
'gitaly-feature-foobar'
=>
'true'
},
'address'
=>
Gitlab
::
GitalyClient
.
address
(
repository
.
project
.
repository_storage
),
'token'
=>
Gitlab
::
GitalyClient
.
token
(
repository
.
project
.
repository_storage
)
},
...
...
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