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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
dbd58111
Commit
dbd58111
authored
Jul 13, 2016
by
Annabel Dunstone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix icon alignment; reduce side padding on table cells; add tag and fork icon for pipeline ref
parent
7968484d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
15 deletions
+27
-15
app/assets/stylesheets/pages/pipelines.scss
app/assets/stylesheets/pages/pipelines.scss
+23
-14
app/views/projects/ci/pipelines/_pipeline.html.haml
app/views/projects/ci/pipelines/_pipeline.html.haml
+4
-1
No files found.
app/assets/stylesheets/pages/pipelines.scss
View file @
dbd58111
.pipelines
{
.stage
{
max-width
:
8
0px
;
width
:
8
0px
;
max-width
:
9
0px
;
width
:
9
0px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
...
...
@@ -30,13 +30,17 @@
}
.table.builds
{
min-width
:
1
1
00px
;
min-width
:
1
2
00px
;
tr
{
th
{
padding
:
16px
;
padding
:
16px
8px
;
border
:
none
;
}
td
{
padding
:
10px
8px
;
}
}
tbody
{
...
...
@@ -46,9 +50,8 @@
.branch-commit
{
.branch-name
{
margin-left
:
8px
;
font-weight
:
bold
;
max-width
:
1
8
0px
;
max-width
:
1
5
0px
;
overflow
:
hidden
;
display
:
inline-block
;
white-space
:
nowrap
;
...
...
@@ -57,10 +60,15 @@
}
svg
{
margin
:
0
6px
;
height
:
14px
;
width
:
auto
;
vertical-align
:
middle
;
fill
:
$table-text-gray
;
}
.fa
{
font-size
:
12px
;
color
:
$table-text-gray
;
}
.commit-id
{
...
...
@@ -88,6 +96,12 @@
}
}
.icon-container
{
display
:
inline-block
;
text-align
:
center
;
width
:
20px
;
}
.duration
,
.finished-at
{
color
:
$table-text-gray
;
...
...
@@ -98,15 +112,10 @@
}
svg
{
height
:
12px
;
width
:
auto
;
width
:
12px
;
height
:
auto
;
vertical-align
:
middle
;
}
.fa
,
svg
{
margin-right
:
5px
;
}
}
.pipeline-actions
{
...
...
app/views/projects/ci/pipelines/_pipeline.html.haml
View file @
dbd58111
...
...
@@ -10,7 +10,10 @@
=
link_to
namespace_project_pipeline_path
(
@project
.
namespace
,
@project
,
pipeline
.
id
)
do
%span
##{pipeline.id}
-
if
pipeline
.
ref
.icon-container
=
pipeline
.
tag?
?
icon
(
'tag'
)
:
icon
(
'code-fork'
)
=
link_to
pipeline
.
ref
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
pipeline
.
ref
),
class:
"monospace branch-name"
.icon-container
=
custom_icon
(
"icon_commit"
)
=
link_to
pipeline
.
short_sha
,
namespace_project_commit_path
(
@project
.
namespace
,
@project
,
pipeline
.
sha
),
class:
"commit-id monospace"
-
if
pipeline
.
tag?
...
...
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