BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
c566acbd
Commit
c566acbd
authored
Jan 12, 2017
by
Eric Eastwood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve button accessibility on pipelines page
parent
6c65f7a7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
26 deletions
+44
-26
pipeline_actions.js.es6
...s/javascripts/vue_pipelines_index/pipeline_actions.js.es6
+28
-19
stage.js.es6
app/assets/javascripts/vue_pipelines_index/stage.js.es6
+4
-3
pipelines.scss
app/assets/stylesheets/pages/pipelines.scss
+4
-0
_pipeline.html.haml
app/views/projects/ci/pipelines/_pipeline.html.haml
+4
-4
26445-accessible-piplelines-buttons.yml
...gelogs/unreleased/26445-accessible-piplelines-buttons.yml
+4
-0
No files found.
app/assets/javascripts/vue_pipelines_index/pipeline_actions.js.es6
View file @
c566acbd
...
...
@@ -22,47 +22,51 @@
<div class="controls pull-right">
<div class="btn-group inline">
<div class="btn-group">
<
a
<
button
v-if='actions'
class="dropdown-toggle btn btn-default js-pipeline-dropdown-manual-actions"
class="dropdown-toggle btn btn-default
has-tooltip
js-pipeline-dropdown-manual-actions"
data-toggle="dropdown"
title="Manual build"
alt="Manual Build"
data-placement="top"
data-toggle="dropdown"
aria-label="Manual build"
>
<span v-html='svgs.iconPlay'></span>
<i class="fa fa-caret-down"></i>
</
a
>
<span v-html='svgs.iconPlay'
aria-hidden="true"
></span>
<i class="fa fa-caret-down"
aria-hidden="true"
></i>
</
button
>
<ul class="dropdown-menu dropdown-menu-align-right">
<li v-for='action in pipeline.details.manual_actions'>
<a
rel="nofollow"
data-method="post"
:href='action.path'
title="Manual build"
>
<span v-html='svgs.iconPlay'></span>
<span
title="Manual build"
>{{action.name}}</span>
<span v-html='svgs.iconPlay'
aria-hidden="true"
></span>
<span>{{action.name}}</span>
</a>
</li>
</ul>
</div>
<div class="btn-group">
<
a
<
button
v-if='artifacts'
class="dropdown-toggle btn btn-default build-artifacts js-pipeline-dropdown-download"
class="dropdown-toggle btn btn-default build-artifacts has-tooltip js-pipeline-dropdown-download"
data-toggle="dropdown"
title="Artifacts"
data-placement="top"
data-toggle="dropdown"
type="button
"
aria-label="Artifacts
"
>
<i class="fa fa-download"></i>
<i class="fa fa-caret-down"></i>
</
a
>
<i class="fa fa-download"
aria-hidden="true"
></i>
<i class="fa fa-caret-down"
aria-hidden="true"
></i>
</
button
>
<ul class="dropdown-menu dropdown-menu-align-right">
<li v-for='artifact in pipeline.details.artifacts'>
<a
rel="nofollow"
:href='artifact.path'
>
<i class="fa fa-download"></i>
<i class="fa fa-download"
aria-hidden="true"
></i>
<span>{{download(artifact.name)}}</span>
</a>
</li>
...
...
@@ -76,9 +80,12 @@
title="Retry"
rel="nofollow"
data-method="post"
data-placement="top"
data-toggle="dropdown"
:href='pipeline.retry_path'
aria-label="Retry"
>
<i class="fa fa-repeat"></i>
<i class="fa fa-repeat"
aria-hidden="true"
></i>
</a>
<a
v-if='pipeline.flags.cancelable'
...
...
@@ -86,10 +93,12 @@
title="Cancel"
rel="nofollow"
data-method="post"
data-placement="top"
data-toggle="dropdown"
:href='pipeline.cancel_path'
data-original-title
="Cancel"
aria-label
="Cancel"
>
<i class="fa fa-remove"></i>
<i class="fa fa-remove"
aria-hidden="true"
></i>
</a>
</div>
</div>
...
...
app/assets/javascripts/vue_pipelines_index/stage.js.es6
View file @
c566acbd
...
...
@@ -82,12 +82,13 @@
data-placement="top"
data-toggle="dropdown"
type="button"
:aria-label='stage.title'
>
<span v-html="svg"></span>
<i class="fa fa-caret-down
"></i>
<span v-html="svg"
aria-hidden="true"
></span>
<i class="fa fa-caret-down
" aria-hidden="true
"></i>
</button>
<ul class="dropdown-menu mini-pipeline-graph-dropdown-menu js-builds-dropdown-container">
<div class="arrow-up"></div>
<div class="arrow-up"
aria-hidden="true"
></div>
<div
@click='keepGraph($event)'
:class="dropdownClass"
...
...
app/assets/stylesheets/pages/pipelines.scss
View file @
c566acbd
...
...
@@ -288,6 +288,10 @@
}
}
}
.tooltip
{
white-space
:
nowrap
;
}
}
.build-link
{
...
...
app/views/projects/ci/pipelines/_pipeline.html.haml
View file @
c566acbd
...
...
@@ -78,7 +78,7 @@
.btn-group.inline
-
if
actions
.
any?
.btn-group
%button
.dropdown-toggle.btn.btn-default.
js-pipeline-dropdown-manual-actions
{
type:
'button'
,
'data-toggle'
=>
'dropdown
'
}
%button
.dropdown-toggle.btn.btn-default.
has-tooltip.js-pipeline-dropdown-manual-actions
{
type:
'button'
,
title:
'Manual build'
,
data:
{
toggle:
'dropdown'
,
placement:
'top'
},
'aria-label'
:
'Manual build
'
}
=
custom_icon
(
'icon_play'
)
=
icon
(
'caret-down'
,
'aria-hidden'
=>
'true'
)
%ul
.dropdown-menu.dropdown-menu-align-right
...
...
@@ -89,7 +89,7 @@
%span
=
build
.
name
-
if
artifacts
.
present?
.btn-group
%button
.dropdown-toggle.btn.btn-default.build-artifacts.
js-pipeline-dropdown-download
{
type:
'button'
,
'data-toggle'
=>
'dropdown
'
}
%button
.dropdown-toggle.btn.btn-default.build-artifacts.
has-tooltip.js-pipeline-dropdown-download
{
type:
'button'
,
title:
'Artifacts'
,
data:
{
toggle:
'dropdown'
,
placement:
'top'
},
'aria-label'
:
'Artifacts
'
}
=
icon
(
"download"
)
=
icon
(
'caret-down'
)
%ul
.dropdown-menu.dropdown-menu-align-right
...
...
@@ -102,8 +102,8 @@
-
if
can?
(
current_user
,
:update_pipeline
,
pipeline
.
project
)
.cancel-retry-btns.inline
-
if
pipeline
.
retryable?
=
link_to
retry_namespace_project_pipeline_path
(
pipeline
.
project
.
namespace
,
pipeline
.
project
,
pipeline
.
id
),
class:
'btn has-tooltip'
,
title:
"Retry"
,
method: :post
do
=
link_to
retry_namespace_project_pipeline_path
(
pipeline
.
project
.
namespace
,
pipeline
.
project
,
pipeline
.
id
),
class:
'btn has-tooltip'
,
title:
'Retry'
,
data:
{
toggle:
'dropdown'
,
placement:
'top'
},
'aria-label'
:
'Retry'
,
method: :post
do
=
icon
(
"repeat"
)
-
if
pipeline
.
cancelable?
=
link_to
cancel_namespace_project_pipeline_path
(
pipeline
.
project
.
namespace
,
pipeline
.
project
,
pipeline
.
id
),
class:
'btn btn-remove has-tooltip'
,
title:
"Cancel"
,
method: :post
do
=
link_to
cancel_namespace_project_pipeline_path
(
pipeline
.
project
.
namespace
,
pipeline
.
project
,
pipeline
.
id
),
class:
'btn btn-remove has-tooltip'
,
title:
'Cancel'
,
data:
{
toggle:
'dropdown'
,
placement:
'top'
},
'aria-label'
:
'Cancel'
,
method: :post
do
=
icon
(
"remove"
)
changelogs/unreleased/26445-accessible-piplelines-buttons.yml
0 → 100644
View file @
c566acbd
---
title
:
Improve button accessibility on pipelines page
merge_request
:
8561
author
:
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