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
Jérome Perrin
gitlab-ce
Commits
29c41e9a
Commit
29c41e9a
authored
Feb 20, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pollishing UI
parent
6a445b42
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
7 deletions
+14
-7
app/assets/stylesheets/common.scss
app/assets/stylesheets/common.scss
+1
-0
app/assets/stylesheets/tree.scss
app/assets/stylesheets/tree.scss
+7
-0
app/views/commits/_commit.html.haml
app/views/commits/_commit.html.haml
+4
-3
app/views/issues/_show.html.haml
app/views/issues/_show.html.haml
+1
-2
app/views/merge_requests/_merge_request.html.haml
app/views/merge_requests/_merge_request.html.haml
+1
-2
No files found.
app/assets/stylesheets/common.scss
View file @
29c41e9a
...
...
@@ -338,6 +338,7 @@ img.lil_av {
.borders
{
border
:
1px
solid
#ccc
;
@include
shade
;
}
.well.padded
{
...
...
app/assets/stylesheets/tree.scss
View file @
29c41e9a
...
...
@@ -117,6 +117,7 @@ table.highlighttable .linenodiv pre {
cursor
:pointer
;
}
.tree-item-file-name
{
font-weight
:bold
;
a
{
...
...
@@ -166,3 +167,9 @@ table.highlighttable .linenodiv pre {
@include
shade
;
margin-bottom
:
20px
;
}
a
.tree-commit-link
{
&
:hover
{
text-decoration
:
underline
;
}
}
app/views/commits/_commit.html.haml
View file @
29c41e9a
%li
.wll.commit
.right.span2
=
link_to
"Browse Code »"
,
tree_project_ref_path
(
@project
,
commit
.
id
),
:class
=>
"btn small right"
%p
%strong
=
link_to
"Browse Code »"
,
tree_project_ref_path
(
@project
,
commit
.
id
),
:class
=>
"right"
=
link_to
project_commit_path
(
@project
,
:id
=>
commit
.
id
)
do
%p
%code
.left
=
commit
.
id
.
to_s
[
0
..
10
]
%strong
=
commit
.
author_name
%strong
.cgray
=
commit
.
author_name
–
=
image_tag
gravatar_icon
(
commit
.
author_email
),
:class
=>
"avatar"
,
:width
=>
16
%s
pan
=
truncate
(
commit
.
safe_message
,
:length
=>
50
)
rescue
"--broken encoding"
%s
trong
=
truncate
(
commit
.
safe_message
,
:length
=>
50
)
rescue
"--broken encoding"
%span
.right.cgray
=
time_ago_in_words
(
commit
.
committed_date
)
...
...
app/views/issues/_show.html.haml
View file @
29c41e9a
...
...
@@ -22,8 +22,7 @@
=
link_to
project_issue_path
(
issue
.
project
,
issue
)
do
%p
Issue ##{issue.id}:
=
truncate
(
issue
.
title
,
:length
=>
50
)
%strong
=
truncate
(
issue
.
title
,
:length
=>
60
)
...
...
app/views/merge_requests/_merge_request.html.haml
View file @
29c41e9a
...
...
@@ -11,5 +11,4 @@
%span
.label
=
merge_request
.
target_branch
=
link_to
project_merge_request_path
(
merge_request
.
project
,
merge_request
)
do
%p
Merge Request ##{merge_request.id}:
=
truncate
(
merge_request
.
title
,
:length
=>
50
)
%strong
=
truncate
(
merge_request
.
title
,
:length
=>
60
)
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