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
Tatuya Kamada
gitlab-ce
Commits
a59b7090
Commit
a59b7090
authored
Nov 22, 2011
by
gitlabhq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
file code view restyled
parent
6a4f8b99
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
8 deletions
+22
-8
app/assets/stylesheets/highlight.css.scss
app/assets/stylesheets/highlight.css.scss
+1
-1
app/assets/stylesheets/projects.css.scss
app/assets/stylesheets/projects.css.scss
+19
-5
app/views/commits/_commits.html.haml
app/views/commits/_commits.html.haml
+1
-1
app/views/refs/_tree_item.html.haml
app/views/refs/_tree_item.html.haml
+1
-1
No files found.
app/assets/stylesheets/highlight.css.scss
View file @
a59b7090
...
...
@@ -33,7 +33,7 @@ td.linenos{
}
td
.linenos
{
background
:
#ECECEC
;
/*background:#F7F7F7;*/
color
:
#777
;
padding
:
10px
0px
0px
10px
;
float
:left
;
...
...
app/assets/stylesheets/projects.css.scss
View file @
a59b7090
...
...
@@ -71,9 +71,17 @@ a {
margin-bottom
:
1em
;
.view_file_header
{
padding
:
5px
5px
;
border-bottom
:
1px
solid
#CCC
;
background
:
#eee
;
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
26
,
color-stop
(
0
.076
,
#fefefe
)
,
to
(
#F6F7F8
));
background-image
:
-webkit-linear-gradient
(
#fefefe
7
.6%
,
#F6F7F8
);
background-image
:
-moz-linear-gradient
(
#fefefe
7
.6%
,
#F6F7F8
);
background-image
:
-o-linear-gradient
(
#fefefe
7
.6%
,
#F6F7F8
);
margin
:
0
;
font-weight
:
normal
;
font-weight
:
bold
;
text-align
:
left
;
color
:
#666
;
border-bottom
:
1px
solid
#DEE2E3
;
padding
:
.9em
1em
;
}
.view_file_content
{
background
:
#fff
;
...
...
@@ -96,6 +104,8 @@ td.code {
margin-left
:
55px
;
overflow
:auto
;
overflow-y
:hidden
;
border-left
:
1px
solid
#DEE2E3
;
background
:
white
;
}
}
.highlight
pre
{
...
...
@@ -103,9 +113,13 @@ td.code {
word-wrap
:normal
;
}
.highlighttable
tr
:hover
{
background
:white
;
table
.highlighttable
{
border
:
none
;
background
:
#F7F7F7
;
}
body
.project-page
table
.highlighttable
td
{
border
:
none
}
table
.highlighttable
tr
:hover
{
background
:none
;}
table
.highlighttable
pre
{
line-height
:
16px
!
important
;
font-size
:
12px
!
important
;
...
...
app/views/commits/_commits.html.haml
View file @
a59b7090
...
...
@@ -17,7 +17,7 @@
=
image_tag
"no_avatar.png"
,
:class
=>
"left"
,
:width
=>
40
,
:style
=>
"padding-right:5px;"
%span
.commit-title
%strong
=
truncate
(
commit
.
safe_message
,
:length
=>
fixed_mode?
?
60
:
12
0
)
=
truncate
(
commit
.
safe_message
,
:length
=>
6
0
)
%span
.commit-author
%strong
=
commit
.
author_name
=
time_ago_in_words
(
commit
.
committed_date
)
...
...
app/views/refs/_tree_item.html.haml
View file @
a59b7090
...
...
@@ -12,7 +12,7 @@
=
time_ago_in_words
(
content_commit
.
committed_date
)
ago
%td
.commit
=
link_to
truncate
(
content_commit
.
safe_message
,
:length
=>
40
),
project_commit_path
(
@project
,
content_commit
),
:class
=>
"tree-commit-link"
-
tm
=
@project
.
team_member_by_name_or_email
(
content_commit
.
author_email
,
content_commit
.
author_name
)
-
if
tm
=
link_to
"[
#{
tm
.
user_name
}
]"
,
project_team_member_path
(
@project
,
tm
)
=
link_to
truncate
(
content_commit
.
safe_message
,
:length
=>
tm
?
20
:
40
),
project_commit_path
(
@project
,
content_commit
),
:class
=>
"tree-commit-link"
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