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
bef29f07
Commit
bef29f07
authored
Jan 27, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
project, commits page with bootstrap
parent
fed0da80
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
120 additions
and
169 deletions
+120
-169
merge_requests.js
app/assets/javascripts/merge_requests.js
+6
-6
buttons.scss
app/assets/stylesheets/buttons.scss
+0
-23
commits.css.scss
app/assets/stylesheets/commits.css.scss
+51
-61
common.scss
app/assets/stylesheets/common.scss
+21
-38
projects.css.scss
app/assets/stylesheets/projects.css.scss
+0
-0
reset_bootstrap.scss
app/assets/stylesheets/reset_bootstrap.scss
+4
-0
top_panel.scss
app/assets/stylesheets/top_panel.scss
+20
-15
_project_side.html.haml
app/views/layouts/_project_side.html.haml
+0
-2
show.html.haml
app/views/merge_requests/show.html.haml
+13
-18
_tree.html.haml
app/views/refs/_tree.html.haml
+5
-6
No files found.
app/assets/javascripts/merge_requests.js
View file @
bef29f07
...
...
@@ -4,17 +4,17 @@ var MergeRequest = {
init
:
function
()
{
$
(
".
merge-
tabs a"
).
live
(
"click"
,
function
()
{
$
(
".
merge-tabs a"
).
removeClass
(
"active"
);
$
(
this
).
addClass
(
"active"
);
$
(
".tabs a"
).
live
(
"click"
,
function
()
{
$
(
".
tabs a"
).
parent
(
).
removeClass
(
"active"
);
$
(
this
).
parent
().
addClass
(
"active"
);
});
$
(
".
merge-
tabs a.merge-notes-tab"
).
live
(
"click"
,
function
()
{
$
(
".tabs a.merge-notes-tab"
).
live
(
"click"
,
function
()
{
$
(
".merge-request-commits, .merge-request-diffs"
).
hide
();
$
(
".merge-request-notes"
).
show
();
});
$
(
".
merge-
tabs a.merge-commits-tab"
).
live
(
"click"
,
function
()
{
$
(
".tabs a.merge-commits-tab"
).
live
(
"click"
,
function
()
{
if
(
!
MergeRequest
.
commits_loaded
)
{
MergeRequest
.
loadCommits
();
}
...
...
@@ -22,7 +22,7 @@ var MergeRequest = {
$
(
".merge-request-commits"
).
show
();
});
$
(
".
merge-
tabs a.merge-diffs-tab"
).
live
(
"click"
,
function
()
{
$
(
".tabs a.merge-diffs-tab"
).
live
(
"click"
,
function
()
{
if
(
!
MergeRequest
.
diffs_loaded
)
{
MergeRequest
.
loadDiff
();
}
...
...
app/assets/stylesheets/buttons.scss
View file @
bef29f07
...
...
@@ -116,26 +116,3 @@ input.button{margin-bottom: 1.5em}
.button-green
{
background
:
#A6B807
;
color
:
white
}
.commit-button
{
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
26
,
color-stop
(
0
.192
,
#fff
)
,
to
(
#f4f4f4
));
background-image
:
-webkit-linear-gradient
(
#fff
19
.2%
,
#f4f4f4
);
background-image
:
-moz-linear-gradient
(
#fff
19
.2%
,
#f4f4f4
);
background-image
:
-o-linear-gradient
(
#fff
19
.2%
,
#f4f4f4
);
box-shadow
:
0
-1px
0
white
inset
;
display
:
block
;
border
:
1px
solid
#eee
;
border-radius
:
5px
;
margin-bottom
:
2px
;
position
:
relative
;
padding-right
:
20px
!
important
;
}
.commit-button
i
{
background
:
url('images.png')
no-repeat
-138px
-27px
;
width
:
6px
;
height
:
9px
;
float
:
right
;
position
:
absolute
;
top
:
6px
;
right
:
5px
;
}
app/assets/stylesheets/commits.css.scss
View file @
bef29f07
/* Commit Page */
.commit-info
{
float
:
right
;}
.commit-info
data
{
padding
:
4px
10px
;
font-size
:
11px
;
}
.commits-date
{
display
:
block
;
width
:
100%
;
margin-bottom
:
20px
}
.commits-date
.data
{
padding
:
0
}
a
.commit
{
padding
:
10px
;
border-bottom
:
1px
solid
#eee
;
overflow
:
hidden
;
display
:
block
;}
a
.commit
{
padding
:
10px
;
border-bottom
:
none
;
overflow
:
hidden
;
display
:
block
;}
a
.commit
:last-child
{
border-bottom
:
0
}
a
.commit
img
{
float
:
left
;
margin-right
:
10px
;}
a
.commit
.commit-title
{
display
:
block
;}
a
.commit
.commit-title
{
margin-bottom
:
10px
}
a
.commit
.commit-author
{
color
:
#999
;
font-weight
:
normal
;
font-style
:
italic
;}
a
.commit
.commit-author
strong
{
font-weight
:
bold
;
font-style
:
normal
;}
/**
*
* COMMIT SHOw
*
*/
/* eo Commit Page */
/** Commit diff view **/
.diff_file
{
border
:
1px
solid
#CCC
;
margin-bottom
:
1em
;
...
...
@@ -49,6 +37,11 @@ a.commit .commit-author strong{font-weight: bold; font-style: normal;}
border
:none
;
margin
:
0px
;
padding
:
0px
;
tr
{
td
{
font-size
:
12px
;
}
}
}
.old_line
,
.new_line
{
margin
:
0px
;
...
...
@@ -87,14 +80,6 @@ a.commit .commit-author strong{font-weight: bold; font-style: normal;}
}
}
pre
.commit_message
{
white-space
:
pre-wrap
;
font-family
:
"Helvetica"
,
sans-serif
;
color
:
#555
;
font-weight
:bold
;
font-size
:
15px
;
}
/** COMMIT BLOCK **/
.commit-title
{
display
:
block
;}
.commit-title
{
margin-bottom
:
10px
}
...
...
@@ -124,45 +109,50 @@ ul.bordered-list li:last-child { border:none }
}
}
.per_line_form
{
font-family
:
"Helvetica"
,
sans-serif
;
background
:
#2FA0BB
;
td
{
padding
:
0
;
}
form
{
margin
:
5px
;
width
:
756px
;
border
:
1px
solid
#CCC
;
padding
:
20px
;
background
:
white
;
}
tr
.line_notes_row
{
border-bottom
:
1px
solid
#DDD
;
}
/**
*
* COMMIT LIST
*
*/
tr
.line_notes_row
{
font-family
:
"Helvetica"
,
sans-serif
;
&
:hover
{
background
:none
;
}
td
{
margin
:
0px
;
padding
:
0px
;
border-bottom
:
1px
solid
#DEE2E3
;
.commit-info
{
float
:
right
;}
.commit-info
data
{
padding
:
4px
10px
;
font-size
:
11px
;
}
a
.commit
{
padding
:
10px
;
border-bottom
:
1px
solid
#eee
;
overflow
:
hidden
;
display
:
block
;}
a
.commit
:last-child
{
border-bottom
:
0
}
a
.commit
img
{
float
:
left
;
margin-right
:
10px
;}
a
.commit
.commit-title
{
display
:
block
;}
a
.commit
.commit-title
{
margin-bottom
:
10px
}
a
.commit
.commit-author
{
color
:
#999
;
font-weight
:
normal
;
font-style
:
italic
;}
a
.commit
.commit-author
strong
{
font-weight
:
bold
;
font-style
:
normal
;}
ul
{
display
:block
;
list-style
:none
;
margin
:
0px
;
padding
:
0px
;
.commit-button
{
background-image
:
-webkit-gradient
(
linear
,
0
0
,
0
26
,
color-stop
(
0
.192
,
#fff
)
,
to
(
#f4f4f4
));
background-image
:
-webkit-linear-gradient
(
#fff
19
.2%
,
#f4f4f4
);
background-image
:
-moz-linear-gradient
(
#fff
19
.2%
,
#f4f4f4
);
background-image
:
-o-linear-gradient
(
#fff
19
.2%
,
#f4f4f4
);
box-shadow
:
0
-1px
0
white
inset
;
display
:
block
;
border
:
1px
solid
#eee
;
border-radius
:
5px
;
margin-bottom
:
2px
;
position
:
relative
;
padding-right
:
20px
!
important
;
}
li
{
border-top
:
1px
solid
#DEE2E3
;
padding
:
10px
;
}
}
}
.commit-button
i
{
background
:
url('images.png')
no-repeat
-138px
-27px
;
width
:
6px
;
height
:
9px
;
float
:
right
;
position
:
absolute
;
top
:
6px
;
right
:
5px
;
}
app/assets/stylesheets/common.scss
View file @
bef29f07
...
...
@@ -9,7 +9,8 @@ $active_bg_color:#79C3E0;
$active_bd_color
:
#2FA0BB
;
$border_color
:
#CCC
;
$lite_border_color
:
#EEE
;
$app_width
:
980px
;
$min_app_width
:
940px
;
$max_app_width
:
980px
;
$app_padding
:
20px
;
$bg_color
:
#FFF
;
$styled_border_color
:
#2FA0BB
;
...
...
@@ -90,58 +91,40 @@ $blue_link: "#2fa0bb";
/** LAYOUT **/
.container-fluid
{
max-width
:
980px
;
min-width
:
$min_app_width
;
max-width
:
$max_app_width
;
margin
:auto
;
margin-top
:
8
0px
;
margin-top
:
6
0px
;
}
.container-fluid
>
.sidebar
{
width
:
110px
;
left
:
0
;
top
:
0
;
height
:
100%
;
bottom
:
0
;
position
:
absolute
;
float
:
left
;
display
:
inline-block
;
background
:
#FFF
;
padding
:
$app_padding
;
padding-right
:
0px
;
margin
:
0
;
width
:
140px
;
border-right
:
1px
solid
$border_color
;
aside
{
width
:
109px
}
height
:
100%
;
}
.container-fluid
>
.content
{
margin-left
:
130px
;
}
/** GITLAB reset **/
a
{
color
:
$link_color
;
&
:hover
{
text-decoration
:none
;
}
margin-left
:
160px
;
}
@import
"reset_bootstrap.scss"
;
@import
"top_panel.scss"
;
@import
"projects.css.scss"
;
@import
"style.scss"
;
@import
"commits.css.scss"
;
@import
"notes.css.scss"
;
@import
"merge_requests.css.scss"
;
@import
"issues.css.scss"
;
@import
"commits.css.scss"
;
//@import "style.scss";
//@import "notes.css.scss";
//@import "merge_requests.css.scss";
//@import "issues.css.scss";
//@import "commits.css.scss";
@import
"dashboard.scss"
;
@import
"tree.scss"
;
@import
"tags.scss"
;
@import
"buttons.scss"
;
//
@import "dashboard.scss";
//
@import "tree.scss";
//
@import "tags.scss";
//
@import "buttons.scss";
/** CODE HIGHTLIGHT **/
@import
"highlight.css.scss"
;
@import
"highlight.black.css.scss"
;
//
@import "highlight.css.scss";
//
@import "highlight.black.css.scss";
app/assets/stylesheets/projects.css.scss
View file @
bef29f07
This diff is collapsed.
Click to expand it.
app/assets/stylesheets/reset_bootstrap.scss
0 → 100644
View file @
bef29f07
a
{
color
:
$link_color
;
&
:hover
{
text-decoration
:none
;
}
}
app/assets/stylesheets/top_panel.scss
View file @
bef29f07
...
...
@@ -65,7 +65,8 @@ body header {
.wrapper
{
margin
:auto
;
width
:
$app_width
;
min-width
:
$min_app_width
;
max-width
:
$max_app_width
;
position
:relative
;
.top_panel_content
{
...
...
@@ -185,10 +186,9 @@ float: right;
}
.account-box.hover
{
height
:
138px
;}
.account-box
:hover
>
.account-links
{
display
:
block
;}
header
.account-links
{
background
:
#79C3E0
;
display
:
none
;
border-radius
:
5px
;
width
:
100px
;
margin-top
:
0
;
float
:
right
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,.
2
);
position
:relative
;}
header
.account-links
{
background
:
#79C3E0
;
display
:
none
;
border-radius
:
5px
;
width
:
100px
;
margin-top
:
0
;
float
:
right
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,.
2
);
position
:relative
;}
header
.account-links
:before
{
content
:
"."
;
width
:
0
;
...
...
@@ -196,7 +196,7 @@ header .account-links:before {
position
:absolute
;
border
:
5px
solid
transparent
;
border-color
:rgba
(
255
,
255
,
255
,
0
)
;
border-bottom-color
:
#
fafafa
;
border-bottom-color
:
#
333
;
text-indent
:
-9999px
;
top
:
-10px
;
line-height
:
0
;
...
...
@@ -204,17 +204,22 @@ header .account-links:before {
z-index
:
10
;
}
/* Inspired by http://maxvoltar.com/temp/nowplaying/ */
header
.account-links
{
background
:
white
;
display
:
none
;
z-index
:
100000
;
border-radius
:
5px
;
width
:
100px
;
position
:
absolute
;
right
:
20px
;
top
:
46px
;
margin-top
:
0
;
float
:
right
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,.
2
);
}
header
.account-links
a
{
color
:
#666
;
padding
:
6px
10px
;
display
:
block
;
text-shadow
:
none
;
border-bottom
:
1px
solid
#eee
}
header
.account-links
a
:hover
{
background
:
#3aacec
;
background
:
-webkit-gradient
(
linear
,
0%
0%
,
0%
100%
,
from
(
#39acec
)
,
to
(
#279ada
)
,
color-stop
(
.05
,
#4cbefe
));
background
:
-moz-linear-gradient
(
top
,
#39acec
,
#4cbefe
5%
,
#279ada
);
background
:
linear-gradient
(
top
,
#39acec
,
#4cbefe
5%
,
#279ada
);
color
:
#fff
;
text-shadow
:
#1488c8
0
-1px
0
;
header
.account-links
{
background
:
#333
;
display
:
none
;
z-index
:
100000
;
border-radius
:
5px
;
width
:
100px
;
position
:
absolute
;
right
:
20px
;
top
:
46px
;
margin-top
:
0
;
float
:
right
;
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,.
2
);
}
header
.account-links
a
{
color
:
#EEE
;
padding
:
6px
10px
;
display
:
block
;
text-shadow
:
none
;
border-bottom
:
1px
solid
#555
}
header
.account-links
a
:hover
{
background
:
#444
;}
.account-box.hover
.arrow-up
{
top
:
41px
;
right
:
6px
;
position
:
absolute
}
header
.account-links
a
:first-child
{
-webkit-border-top-left-radius
:
5px
;
...
...
app/views/layouts/_project_side.html.haml
View file @
bef29f07
...
...
@@ -13,7 +13,5 @@
Issues
=
link_to
wall_project_path
(
@project
),
:class
=>
current_page?
(
:controller
=>
"projects"
,
:action
=>
"wall"
,
:id
=>
@project
)
?
"current"
:
nil
do
Wall
-
if
@project
.
common_notes
.
today
.
count
>
0
%span
{
:class
=>
"number"
}=
@project
.
common_notes
.
today
.
count
=
link_to
project_merge_requests_path
(
@project
),
:class
=>
(
controller
.
controller_name
==
"merge_requests"
)
?
"current"
:
nil
do
Requests
app/views/merge_requests/show.html.haml
View file @
bef29f07
...
...
@@ -26,31 +26,26 @@
=
@merge_request
.
created_at
.
stamp
(
"Aug 21, 2011 9:23pm"
)
%hr
%br
%h3
=
simple_format
@merge_request
.
title
%div
.well
=
simple_format
@merge_request
.
title
.clear
%br
%br
.
merge-
tabs
=
link_to
"#notes"
,
:class
=>
"merge-notes-tab active tab"
do
%span
Notes
=
link_to
"#commits"
,
"data-url"
=>
commits_project_merge_request_path
(
@project
,
@merge_request
),
:class
=>
"merge-commits-tab tab"
do
%span
Commits
=
link_to
"#diffs"
,
"data-url"
=>
diffs_project_merge_request_path
(
@project
,
@merge_request
),
:class
=>
"merge-diffs-tab tab"
do
%span
Diff
.tabs
%li
.active
=
link_to
"#notes"
,
:class
=>
"merge-notes-tab tab"
do
Notes
%li
=
link_to
"#commits"
,
"data-url"
=>
commits_project_merge_request_path
(
@project
,
@merge_request
),
:class
=>
"merge-commits-tab tab"
do
Commits
%li
=
link_to
"#diffs"
,
"data-url"
=>
diffs_project_merge_request_path
(
@project
,
@merge_request
),
:class
=>
"merge-diffs-tab tab"
do
Diff
-
if
can?
(
current_user
,
:admin_project
,
@project
)
||
@merge_request
.
author
==
current_user
.right
-
if
@merge_request
.
closed
=
link_to
'Reopen'
,
project_merge_request_path
(
@project
,
@merge_request
,
:merge_request
=>
{
:closed
=>
false
},
:status_only
=>
true
),
:method
=>
:put
,
:class
=>
"
red-butto
n"
=
link_to
'Reopen'
,
project_merge_request_path
(
@project
,
@merge_request
,
:merge_request
=>
{
:closed
=>
false
},
:status_only
=>
true
),
:method
=>
:put
,
:class
=>
"
bt
n"
-
else
=
link_to
'Close'
,
project_merge_request_path
(
@project
,
@merge_request
,
:merge_request
=>
{
:closed
=>
true
},
:status_only
=>
true
),
:method
=>
:put
,
:class
=>
"
positive-butto
n"
,
:title
=>
"Close merge request"
=
link_to
'Close'
,
project_merge_request_path
(
@project
,
@merge_request
,
:merge_request
=>
{
:closed
=>
true
},
:status_only
=>
true
),
:method
=>
:put
,
:class
=>
"
bt
n"
,
:title
=>
"Close merge request"
%img
{
:src
=>
"/assets/ajax-loader-facebook.gif"
,
:class
=>
"dashboard-loader"
}
.merge-request-notes
...
...
app/views/refs/_tree.html.haml
View file @
bef29f07
#tree-breadcrumbs
%
div
%ul
.breadcrumb
%
li
=
link_to
tree_project_ref_path
(
@project
,
@ref
,
:path
=>
nil
),
:remote
=>
true
do
=
@project
.
code
-
tree
.
breadcrumbs
(
6
)
do
|
link
|
\/
=
link
-
tree
.
breadcrumbs
(
6
)
do
|
link
|
\/
%li
=
link
%span
.tree_progress
.clear
#tree-content-holder
...
...
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