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
Kazuhiko Shiozaki
gitlab-ce
Commits
6776dcf9
Commit
6776dcf9
authored
Sep 18, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add colors to build labels
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
2122d7b9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
4 deletions
+48
-4
app/assets/stylesheets/ci/projects.scss
app/assets/stylesheets/ci/projects.scss
+42
-0
app/views/ci/builds/_build.html.haml
app/views/ci/builds/_build.html.haml
+2
-1
app/views/ci/commits/_commit.html.haml
app/views/ci/commits/_commit.html.haml
+2
-1
app/views/ci/commits/show.html.haml
app/views/ci/commits/show.html.haml
+2
-2
No files found.
app/assets/stylesheets/ci/projects.scss
View file @
6776dcf9
...
...
@@ -13,6 +13,48 @@
.builds
,
.projects-table
{
.build-danger
{
.ci-status
{
color
:
$gl-danger
;
border-color
:
$gl-danger
;
}
}
.build-success
{
.ci-status
{
color
:
$gl-success
;
border-color
:
$gl-success
;
}
}
.build-info
{
.ci-status
{
color
:
$gl-info
;
border-color
:
$gl-info
;
}
}
.build-disabled
{
.ci-status
{
color
:
$gl-gray
;
border-color
:
$gl-gray
;
}
}
.build-warning
{
.ci-status
{
color
:
$gl-warning
;
border-color
:
$gl-warning
;
}
}
.ci-status
{
padding
:
2px
5px
;
margin-right
:
5px
;
border
:
1px
solid
#EEE
;
@include
border-radius
(
4px
);
}
.light
{
border-color
:
$border-color
;
}
...
...
app/views/ci/builds/_build.html.haml
View file @
6776dcf9
%tr
.build
{
class:
build_status_css_class
(
build
)}
%td
.status
%span
.ci-status
<
=
build
.
status
%td
.build-link
...
...
app/views/ci/commits/_commit.html.haml
View file @
6776dcf9
%tr
.build
{
class:
commit_status_css_class
(
commit
)}
%td
.status
%span
.ci-status
<
=
commit
.
status
-
if
commit
.
running?
&
middot
;
...
...
app/views/ci/commits/show.html.haml
View file @
6776dcf9
...
...
@@ -44,8 +44,8 @@
%h3
Status
.build
.alert
{
class:
commit_status_css_class
(
@commit
)}
.status
.build
{
class:
commit_status_css_class
(
@commit
)}
.
ci-
status
=
@commit
.
status
.
titleize
%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