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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
4ed7fa94
Commit
4ed7fa94
authored
Aug 07, 2018
by
André Luís
Committed by
Phil Hughes
Aug 07, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "System level labels UI broken"
parent
6b2b89f3
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
105 additions
and
18 deletions
+105
-18
app/assets/stylesheets/pages/labels.scss
app/assets/stylesheets/pages/labels.scss
+78
-0
app/views/admin/labels/_label.html.haml
app/views/admin/labels/_label.html.haml
+7
-7
app/views/admin/labels/index.html.haml
app/views/admin/labels/index.html.haml
+3
-2
app/views/shared/_label.html.haml
app/views/shared/_label.html.haml
+3
-3
app/views/shared/_label_row.html.haml
app/views/shared/_label_row.html.haml
+8
-5
changelogs/unreleased/48456-fix-system-level-labels-admin-ui.yml
...ogs/unreleased/48456-fix-system-level-labels-admin-ui.yml
+5
-0
spec/features/admin/admin_labels_spec.rb
spec/features/admin/admin_labels_spec.rb
+1
-1
No files found.
app/assets/stylesheets/pages/labels.scss
View file @
4ed7fa94
...
...
@@ -72,6 +72,9 @@
}
.manage-labels-list
{
padding
:
0
;
margin-bottom
:
0
;
>
li
:not
(
.empty-message
)
:not
(
.is-not-draggable
)
{
background-color
:
$white-light
;
margin-bottom
:
5px
;
...
...
@@ -81,6 +84,10 @@
border-radius
:
$border-radius-default
;
border
:
1px
solid
$theme-gray-100
;
&
:last-child
{
margin-bottom
:
0
;
}
&
.sortable-ghost
{
opacity
:
0
.3
;
}
...
...
@@ -243,7 +250,10 @@
.label-actions-list
{
list-style
:
none
;
flex-shrink
:
0
;
text-align
:
right
;
padding
:
0
;
position
:
relative
;
top
:
-3px
;
}
.label-badge
{
...
...
@@ -272,6 +282,16 @@
padding
:
0
;
}
.label-description
{
.description-text
{
margin-bottom
:
10px
;
.admin-labels
&
{
margin-bottom
:
0
;
}
}
}
.label-list-item
{
.
content-list
&
:
:
before
,
.
content-list
&::
after
{
...
...
@@ -319,6 +339,64 @@
fill
:
$blue-600
;
}
}
&
.remove-row
{
&
:hover
{
color
:
$gl-text-red
;
svg
{
fill
:
$gl-text-red
;
}
}
}
}
}
@media
(
max-width
:
map-get
(
$grid-breakpoints
,
md
)
-1
)
{
.manage-labels-list
{
>
li
:not
(
.empty-message
)
:not
(
.is-not-draggable
)
{
flex-wrap
:
wrap
;
}
.label-name
{
order
:
1
;
flex-grow
:
1
;
width
:
auto
;
max-width
:
100%
;
}
.label-actions-list
{
order
:
2
;
flex-shrink
:
1
;
text-align
:
left
;
}
.label-links
{
white-space
:
normal
;
}
.label-description
{
order
:
3
;
width
:
100%
;
>
.append-right-default.prepend-left-default
{
margin-left
:
0
;
margin-right
:
0
;
}
}
}
}
@media
(
max-width
:
910px
)
{
.priority-badge
{
display
:
block
;
width
:
100%
;
margin-left
:
0
;
margin-top
:
$gl-padding
;
.label-badge
{
display
:
inline-block
;
}
}
}
...
...
app/views/admin/labels/_label.html.haml
View file @
4ed7fa94
%li
{
id:
dom_id
(
label
)
}
.label-row
=
render_colored_label
(
label
,
tooltip:
false
)
=
markdown_field
(
label
,
:description
)
.float-right
=
link_to
_
(
'Edit'
),
edit_admin_label_path
(
label
),
class:
'btn btn-sm'
=
link_to
_
(
'Delete'
),
admin_label_path
(
label
),
class:
'btn btn-sm btn-remove remove-row'
,
method: :delete
,
remote:
true
,
data:
{
confirm:
"Delete this label? Are you sure?"
}
%li
.label-list-item
{
id:
dom_id
(
label
)
}
=
render
"shared/label_row"
,
label:
label
.label-actions-list
=
link_to
edit_admin_label_path
(
label
),
class:
'btn btn-transparent label-action has-tooltip'
,
title:
_
(
'Edit'
),
data:
{
placement:
'bottom'
},
aria_label:
_
(
'Edit'
)
do
=
sprite_icon
(
'pencil'
)
=
link_to
admin_label_path
(
label
),
class:
'btn btn-transparent remove-row label-action has-tooltip'
,
title:
_
(
'Delete'
),
data:
{
placement:
'bottom'
,
confirm:
"Delete this label? Are you sure?"
},
aria_label:
_
(
'Delete'
),
method: :delete
,
remote:
true
do
=
sprite_icon
(
'remove'
)
app/views/admin/labels/index.html.haml
View file @
4ed7fa94
...
...
@@ -7,10 +7,11 @@
=
_
(
'Labels'
)
%hr
.labels
.labels
.labels-container.admin-labels
-
if
@labels
.
present?
%ul
.
bordered-list.
manage-labels-list
%ul
.manage-labels-list
=
render
@labels
=
paginate
@labels
,
theme:
'gitlab'
-
else
.card.bg-light
...
...
app/views/shared/_label.html.haml
View file @
4ed7fa94
...
...
@@ -17,13 +17,13 @@
-
if
can?
(
current_user
,
:admin_label
,
@project
)
%li
.inline.js-toggle-priority
{
data:
{
url:
remove_priority_project_label_path
(
@project
,
label
),
dom_id:
dom_id
(
label
),
type:
label
.
type
}
}
%button
.label-action.add-priority.btn.btn-transparent.has-tooltip
{
title:
_
(
'Prioritize'
),
type:
'button'
,
data:
{
placement:
'
top
'
},
aria_label:
_
(
'Prioritize label'
)
}
%button
.label-action.add-priority.btn.btn-transparent.has-tooltip
{
title:
_
(
'Prioritize'
),
type:
'button'
,
data:
{
placement:
'
bottom
'
},
aria_label:
_
(
'Prioritize label'
)
}
=
sprite_icon
(
'star-o'
)
%button
.label-action.remove-priority.btn.btn-transparent.has-tooltip
{
title:
_
(
'Remove priority'
),
type:
'button'
,
data:
{
placement:
'
top
'
},
aria_label:
_
(
'Deprioritize label'
)
}
%button
.label-action.remove-priority.btn.btn-transparent.has-tooltip
{
title:
_
(
'Remove priority'
),
type:
'button'
,
data:
{
placement:
'
bottom
'
},
aria_label:
_
(
'Deprioritize label'
)
}
=
sprite_icon
(
'star'
)
-
if
can?
(
current_user
,
:admin_label
,
label
)
%li
.inline
=
link_to
edit_label_path
(
label
),
class:
'btn btn-transparent label-action edit
'
,
aria_label:
'Edit label'
do
=
link_to
edit_label_path
(
label
),
class:
'btn btn-transparent label-action edit
has-tooltip'
,
title:
_
(
'Edit'
),
data:
{
placement:
'bottom'
},
aria_label:
_
(
'Edit'
)
do
=
sprite_icon
(
'pencil'
)
%li
.inline
.dropdown
...
...
app/views/shared/_label_row.html.haml
View file @
4ed7fa94
-
subject
=
local_assigns
[
:subject
]
-
force_priority
=
local_assigns
.
fetch
(
:force_priority
,
false
)
-
show_label_issues_link
=
show_label_issuables_link?
(
label
,
:issues
,
project:
@project
)
-
show_label_merge_requests_link
=
show_label_issuables_link?
(
label
,
:merge_requests
,
project:
@project
)
-
show_label_issues_link
=
defined?
(
@project
)
&&
show_label_issuables_link?
(
label
,
:issues
,
project:
@project
)
-
show_label_merge_requests_link
=
defined?
(
@project
)
&&
show_label_issuables_link?
(
label
,
:merge_requests
,
project:
@project
)
.label-name
=
link_to_label
(
label
,
subject:
@project
,
tooltip:
false
)
-
if
defined?
(
@project
)
=
link_to_label
(
label
,
subject:
@project
,
tooltip:
false
)
-
else
=
render_colored_label
(
label
,
tooltip:
false
)
.label-description
.append-right-default.prepend-left-default
-
if
label
.
description
.
present?
.description-text
.append-bottom-10
.description-text
=
markdown_field
(
label
,
:description
)
%ul
.label-links
-
if
show_label_issues_link
...
...
@@ -19,5 +22,5 @@
%li
.label-link-item.inline
=
link_to_label
(
label
,
subject:
subject
,
type: :merge_request
)
{
_
(
'Merge requests'
)
}
-
if
force_priority
%li
.label-link-item.js-priority-badge.inline.prepend-left-10
%li
.label-link-item.
priority-badge.
js-priority-badge.inline.prepend-left-10
.label-badge.label-badge-blue
=
_
(
'Prioritized label'
)
changelogs/unreleased/48456-fix-system-level-labels-admin-ui.yml
0 → 100644
View file @
4ed7fa94
---
title
:
Fix the UI for listing system-level labels
merge_request
:
author
:
type
:
fixed
spec/features/admin/admin_labels_spec.rb
View file @
4ed7fa94
...
...
@@ -32,7 +32,7 @@ RSpec.describe 'admin issues labels' do
it
'deletes all labels'
,
:js
do
page
.
within
'.labels'
do
page
.
all
(
'.
btn-remove
'
).
each
do
|
remove
|
page
.
all
(
'.
remove-row
'
).
each
do
|
remove
|
accept_confirm
{
remove
.
click
}
wait_for_requests
end
...
...
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