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
43e49f52
Commit
43e49f52
authored
Mar 25, 2016
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix-link-colors' into 'master'
Fix link colors after recent UI refactoring cc @jschatz1 See merge request !3404
parents
63c8a05b
d903465c
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
36 additions
and
20 deletions
+36
-20
files.scss
app/assets/stylesheets/framework/files.scss
+4
-0
commits.scss
app/assets/stylesheets/pages/commits.scss
+4
-0
projects.scss
app/assets/stylesheets/pages/projects.scss
+4
-0
status.scss
app/assets/stylesheets/pages/status.scss
+21
-17
_commit_list.html.haml
app/views/projects/commits/_commit_list.html.haml
+2
-2
_commits.html.haml
app/views/projects/commits/_commits.html.haml
+1
-1
No files found.
app/assets/stylesheets/framework/files.scss
View file @
43e49f52
...
...
@@ -50,6 +50,10 @@
}
}
a
{
color
:
$gl-dark-link-color
;
}
.left-options
{
margin-top
:
-3px
;
}
...
...
app/assets/stylesheets/pages/commits.scss
View file @
43e49f52
...
...
@@ -99,6 +99,10 @@ li.commit {
color
:
$gl-gray
;
}
.avatar
{
margin-right
:
8px
;
}
.committed_ago
{
display
:
inline-block
;
}
...
...
app/assets/stylesheets/pages/projects.scss
View file @
43e49f52
...
...
@@ -229,6 +229,10 @@
padding
:
0
3px
;
color
:
#999
;
}
a
{
color
:
$gl-dark-link-color
;
}
}
.last-push-widget
{
...
...
app/assets/stylesheets/pages/status.scss
View file @
43e49f52
.ci-status
{
.container-fluid
.content
{
.ci-status
{
padding
:
2px
7px
;
margin-right
:
5px
;
border
:
1px
solid
#eee
;
...
...
@@ -24,6 +25,8 @@
border-color
:
$gl-info
;
}
&
.ci-canceled
,
&
.ci-skipped
,
&
.ci-disabled
{
color
:
$gl-gray
;
border-color
:
$gl-gray
;
...
...
@@ -34,21 +37,22 @@
color
:
$gl-warning
;
border-color
:
$gl-warning
;
}
}
}
.ci-status-icon-success
{
@extend
.cgreen
;
}
.ci-status-icon-failed
{
@extend
.cred
;
}
.ci-status-icon-running
,
.ci-status-icon-pending
{
// These are standard text color
}
.ci-status-icon-canceled
,
.ci-status-icon-disabled
,
.ci-status-icon-not-found
,
.ci-status-icon-skipped
{
@extend
.cgray
;
.ci-status-icon-success
{
color
:
$gl-success
;
}
.ci-status-icon-failed
{
color
:
$gl-danger
;
}
.ci-status-icon-running
,
.ci-status-icon-pending
{
color
:
$gl-warning
;
}
.ci-status-icon-canceled
,
.ci-status-icon-disabled
,
.ci-status-icon-not-found
,
.ci-status-icon-skipped
{
color
:
$gl-gray
;
}
}
app/views/projects/commits/_commit_list.html.haml
View file @
43e49f52
...
...
@@ -5,10 +5,10 @@
.panel-heading
Commits (
#{
@commits
.
count
}
)
-
if
hidden
>
0
%ul
.
well
-list
%ul
.
content
-list
-
commits
.
each
do
|
commit
|
=
render
"projects/commits/inline_commit"
,
commit:
commit
,
project:
@project
%li
.warning-row.unstyled
#{
number_with_delimiter
(
hidden
)
}
additional commits have been omitted to prevent performance issues.
-
else
%ul
.
well
-list
=
render
commits
,
project:
@project
%ul
.
content
-list
=
render
commits
,
project:
@project
app/views/projects/commits/_commits.html.haml
View file @
43e49f52
...
...
@@ -12,7 +12,7 @@
.light
=
pluralize
(
commits
.
count
,
'commit'
)
.col-md-10.col-sm-12
%ul
.
bordered
-list
%ul
.
content
-list
=
render
commits
,
project:
project
%hr
.lists-separator
...
...
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