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
c457e384
Commit
c457e384
authored
Jul 23, 2020
by
Dimitrie Hoekstra
Committed by
Enrique Alcántara
Jul 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace fa-plus icons with GitLab SVG plus icon
parent
59c288db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
5 deletions
+11
-5
app/views/projects/buttons/_dropdown.html.haml
app/views/projects/buttons/_dropdown.html.haml
+3
-3
changelogs/unreleased/dimitrieh-master-patch-65978.yml
changelogs/unreleased/dimitrieh-master-patch-65978.yml
+5
-0
ee/app/assets/javascripts/related_issues/components/related_issues_block.vue
...cripts/related_issues/components/related_issues_block.vue
+3
-2
No files found.
app/views/projects/buttons/_dropdown.html.haml
View file @
c457e384
...
...
@@ -8,9 +8,9 @@
-
if
show_menu
.project-action-button.dropdown.inline
<
%a
.btn.dropdown-toggle.has-tooltip.qa-create-new-dropdown
{
href:
'#'
,
title:
_
(
'Create new...'
),
'data-toggle'
=>
'dropdown'
,
'data-container'
=>
'body'
,
'aria-label'
=>
_
(
'Create new...'
),
'data-display'
=>
'static'
}
=
icon
(
'plus
'
)
=
icon
(
"caret-down"
)
%a
.btn.
btn-default.gl-button.
dropdown-toggle.has-tooltip.qa-create-new-dropdown
{
href:
'#'
,
title:
_
(
'Create new...'
),
'data-toggle'
=>
'dropdown'
,
'data-container'
=>
'body'
,
'aria-label'
=>
_
(
'Create new...'
),
'data-display'
=>
'static'
}
=
sprite_icon
(
'plus'
,
css_class:
'gl-icon
'
)
=
sprite_icon
(
"chevron-down"
,
css_class:
'gl-icon'
)
%ul
.dropdown-menu.dropdown-menu-right.project-home-dropdown
-
if
can_create_issue
||
merge_project
||
can_create_project_snippet
%li
.dropdown-header
=
_
(
'This project'
)
...
...
changelogs/unreleased/dimitrieh-master-patch-65978.yml
0 → 100644
View file @
c457e384
---
title
:
Replace fa-plus icons with GitLab SVG plus icon
merge_request
:
36972
author
:
type
:
changed
ee/app/assets/javascripts/related_issues/components/related_issues_block.vue
View file @
c457e384
<
script
>
import
{
GlLink
}
from
'
@gitlab/ui
'
;
import
{
GlLink
,
GlIcon
}
from
'
@gitlab/ui
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
AddIssuableForm
from
'
./add_issuable_form.vue
'
;
import
RelatedIssuesList
from
'
./related_issues_list.vue
'
;
...
...
@@ -15,6 +15,7 @@ export default {
components
:
{
Icon
,
GlLink
,
GlIcon
,
AddIssuableForm
,
RelatedIssuesList
,
},
...
...
@@ -160,7 +161,7 @@ export default {
data-qa-selector=
"related_issues_plus_button"
@
click=
"$emit('toggleAddRelatedIssuesForm', $event)"
>
<
i
class=
"fa fa-plus"
aria-hidden=
"true"
></i
>
<
gl-icon
name=
"plus"
aria-hidden=
"true"
/
>
</button>
</div>
</h3>
...
...
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