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
f2cb958c
Commit
f2cb958c
authored
Jul 20, 2018
by
George Tsiolis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace icons in Boards vue components
parent
ef67147a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
5 deletions
+18
-5
app/assets/javascripts/boards/components/modal/list.vue
app/assets/javascripts/boards/components/modal/list.vue
+6
-4
app/assets/javascripts/boards/components/modal/lists_dropdown.vue
...ts/javascripts/boards/components/modal/lists_dropdown.vue
+5
-1
app/assets/stylesheets/framework/dropdowns.scss
app/assets/stylesheets/framework/dropdowns.scss
+7
-0
No files found.
app/assets/javascripts/boards/components/modal/list.vue
View file @
f2cb958c
<
script
>
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
bp
from
'
../../../breakpoints
'
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
IssueCardInner
from
'
../issue_card_inner.vue
'
;
...
...
@@ -6,6 +7,7 @@
export
default
{
components
:
{
IssueCardInner
,
Icon
,
},
props
:
{
issueLinkBase
:
{
...
...
@@ -147,13 +149,13 @@
:issue=
"issue"
:issue-link-base=
"issueLinkBase"
:root-path=
"rootPath"
/>
<
spa
n
<
ico
n
v-if=
"issue.selected"
:aria-label=
"'Issue #' + issue.id + ' selected'"
name=
"mobile-issue-close"
aria-checked=
"true"
class=
"issue-card-selected text-center"
>
<i
class=
"fa fa-check"
></i>
</span>
class=
"issue-card-selected text-center"
/>
</div>
</div>
</div>
...
...
app/assets/javascripts/boards/components/modal/lists_dropdown.vue
View file @
f2cb958c
<
script
>
import
{
Link
}
from
'
@gitlab-org/gitlab-ui
'
;
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
ModalStore
from
'
../../stores/modal_store
'
;
import
boardsStore
from
'
../../stores/boards_store
'
;
export
default
{
components
:
{
'
gl-link
'
:
Link
,
Icon
,
},
data
()
{
return
{
...
...
@@ -35,7 +37,9 @@ export default {
class="dropdown-label-box">
</span>
{{
selected
.
title
}}
<i
class=
"fa fa-chevron-down"
></i>
<icon
name=
"angle-down"
/>
</button>
<div
class=
"dropdown-menu dropdown-menu-selectable dropdown-menu-drop-up"
>
<ul>
...
...
app/assets/stylesheets/framework/dropdowns.scss
View file @
f2cb958c
...
...
@@ -144,6 +144,13 @@
top
:
11px
;
right
:
8px
;
}
.ic-angle-down
{
position
:
absolute
;
top
:
8px
;
right
:
8px
;
color
:
$gray-darkest
;
}
}
@mixin
dropdown-item-hover
{
...
...
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