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
f99e69c4
Commit
f99e69c4
authored
Feb 15, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
1c695668
32c91331
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
17 deletions
+39
-17
app/assets/javascripts/pipelines/components/pipelines_actions.vue
...ts/javascripts/pipelines/components/pipelines_actions.vue
+7
-5
app/assets/javascripts/pipelines/components/pipelines_artifacts.vue
.../javascripts/pipelines/components/pipelines_artifacts.vue
+12
-11
app/assets/stylesheets/framework/awards.scss
app/assets/stylesheets/framework/awards.scss
+5
-1
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+2
-0
changelogs/unreleased/50433-make-emoji-picker-bigger.yml
changelogs/unreleased/50433-make-emoji-picker-bigger.yml
+5
-0
changelogs/unreleased/55893-artifacts-download.yml
changelogs/unreleased/55893-artifacts-download.yml
+5
-0
locale/gitlab.pot
locale/gitlab.pot
+3
-0
No files found.
app/assets/javascripts/pipelines/components/pipelines_actions.vue
View file @
f99e69c4
...
...
@@ -59,17 +59,19 @@ export default {
</
script
>
<
template
>
<div
class=
"btn-group"
>
<
gl-
button
<button
v-gl-tooltip
type=
"button"
:disabled=
"isLoading"
class=
"dropdown-new btn btn-default js-pipeline-dropdown-manual-actions"
title=
"Manual job
"
:title=
"__('Manual job')
"
data-toggle=
"dropdown"
aria-label=
"Manual job
"
:aria-label=
"__('Manual job')
"
>
<icon
name=
"play"
class=
"icon-play"
/>
<i
class=
"fa fa-caret-down"
aria-hidden=
"true"
>
</i>
<icon
name=
"play"
class=
"icon-play"
/>
<i
class=
"fa fa-caret-down"
aria-hidden=
"true"
></i>
<gl-loading-icon
v-if=
"isLoading"
/>
</
gl-
button>
</button>
<ul
class=
"dropdown-menu dropdown-menu-right"
>
<li
v-for=
"action in actions"
:key=
"action.path"
>
...
...
app/assets/javascripts/pipelines/components/pipelines_artifacts.vue
View file @
f99e69c4
<
script
>
import
{
GlLink
,
Gl
Button
,
Gl
TooltipDirective
}
from
'
@gitlab/ui
'
;
import
{
GlLink
,
GlTooltipDirective
}
from
'
@gitlab/ui
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
export
default
{
...
...
@@ -9,7 +9,6 @@ export default {
components
:
{
Icon
,
GlLink
,
GlButton
,
},
props
:
{
artifacts
:
{
...
...
@@ -21,20 +20,22 @@ export default {
</
script
>
<
template
>
<div
class=
"btn-group"
role=
"group"
>
<
gl-
button
<button
v-gl-tooltip
class=
"dropdown-toggle build-artifacts js-pipeline-dropdown-download"
title=
"Artifacts"
type=
"button"
class=
"dropdown-toggle build-artifacts btn btn-default js-pipeline-dropdown-download"
:title=
"__('Artifacts')"
data-toggle=
"dropdown"
aria-label=
"Artifacts
"
:aria-label=
"__('Artifacts')
"
>
<icon
name=
"download"
/>
<i
class=
"fa fa-caret-down"
aria-hidden=
"true"
>
</i>
</gl-button>
<icon
name=
"download"
/>
<i
class=
"fa fa-caret-down"
aria-hidden=
"true"
></i>
</button>
<ul
class=
"dropdown-menu dropdown-menu-right"
>
<li
v-for=
"(artifact, i) in artifacts"
:key=
"i"
>
<gl-link
:href=
"artifact.path"
rel=
"nofollow"
download
>
Download
{{
artifact
.
name
}}
artifacts
</gl-link
>
<gl-link
:href=
"artifact.path"
rel=
"nofollow"
download
>
Download
{{
artifact
.
name
}}
artifacts
</gl-link
>
</li>
</ul>
</div>
...
...
app/assets/stylesheets/framework/awards.scss
View file @
f99e69c4
...
...
@@ -15,7 +15,7 @@
margin-top
:
3px
;
padding
:
$gl-padding
;
z-index
:
300
;
width
:
300px
;
width
:
$award-emoji-width
;
font-size
:
14px
;
background-color
:
$white-light
;
border
:
1px
solid
$border-white-light
;
...
...
@@ -55,6 +55,10 @@
transform
:
none
;
}
}
@include
media-breakpoint-down
(
xs
)
{
width
:
$award-emoji-width-xs
;
}
}
.emoji-search
{
...
...
app/assets/stylesheets/framework/variables.scss
View file @
f99e69c4
...
...
@@ -412,6 +412,8 @@ $status-icon-size: 22px;
$award-emoji-menu-shadow
:
rgba
(
0
,
0
,
0
,
0
.175
);
$award-emoji-positive-add-bg
:
#fed159
;
$award-emoji-positive-add-lines
:
#bb9c13
;
$award-emoji-width
:
376px
;
$award-emoji-width-xs
:
300px
;
/*
* Search Box
...
...
changelogs/unreleased/50433-make-emoji-picker-bigger.yml
0 → 100644
View file @
f99e69c4
---
title
:
Make emoji picker bigger
merge_request
:
25187
author
:
Jacopo Beschi @jacopo-beschi
type
:
changed
changelogs/unreleased/55893-artifacts-download.yml
0 → 100644
View file @
f99e69c4
---
title
:
Fixes not working dropdowns in pipelines page
merge_request
:
author
:
type
:
fixed
locale/gitlab.pot
View file @
f99e69c4
...
...
@@ -5896,6 +5896,9 @@ msgstr ""
msgid "Manifest file import"
msgstr ""
msgid "Manual job"
msgstr ""
msgid "Map a FogBugz account ID to a GitLab user"
msgstr ""
...
...
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