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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
a0a488ed
Commit
a0a488ed
authored
Oct 13, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply new design to files page
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
5313c388
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
87 additions
and
88 deletions
+87
-88
CHANGELOG
CHANGELOG
+1
-0
app/assets/javascripts/line_highlighter.js.coffee
app/assets/javascripts/line_highlighter.js.coffee
+3
-3
app/assets/stylesheets/framework/tables.scss
app/assets/stylesheets/framework/tables.scss
+1
-1
app/assets/stylesheets/framework/tw_bootstrap_variables.scss
app/assets/stylesheets/framework/tw_bootstrap_variables.scss
+2
-0
app/assets/stylesheets/framework/variables.scss
app/assets/stylesheets/framework/variables.scss
+1
-0
app/assets/stylesheets/pages/tree.scss
app/assets/stylesheets/pages/tree.scss
+13
-21
app/views/projects/blob/_blob.html.haml
app/views/projects/blob/_blob.html.haml
+1
-1
app/views/projects/repositories/_download_archive.html.haml
app/views/projects/repositories/_download_archive.html.haml
+2
-2
app/views/projects/tree/_readme.html.haml
app/views/projects/tree/_readme.html.haml
+7
-6
app/views/projects/tree/_tree.html.haml
app/views/projects/tree/_tree.html.haml
+54
-52
spec/javascripts/fixtures/line_highlighter.html.haml
spec/javascripts/fixtures/line_highlighter.html.haml
+1
-1
spec/javascripts/line_highlighter_spec.js.coffee
spec/javascripts/line_highlighter_spec.js.coffee
+1
-1
No files found.
CHANGELOG
View file @
a0a488ed
...
...
@@ -47,6 +47,7 @@ v 8.1.0 (unreleased)
- Persist filters when sorting on admin user page (Jerry Lukins)
- Add spellcheck=false to certain input fields
- Invalidate stored service password if the endpoint URL is changed
- Apply new design for Files page
v 8.0.4
- Fix Message-ID header to be RFC 2111-compliant to prevent e-mails being dropped (Stan Hu)
...
...
app/assets/javascripts/line_highlighter.js.coffee
View file @
a0a488ed
...
...
@@ -6,7 +6,7 @@
#
# ### Example Markup
#
# <div id="
tree
-content-holder">
# <div id="
blob
-content-holder">
# <div class="file-content">
# <div class="line-numbers">
# <a href="#L1" id="L1" data-line-number="1">1</a>
...
...
@@ -53,7 +53,7 @@ class @LineHighlighter
$
.
scrollTo
(
"#L
#{
range
[
0
]
}
"
,
offset
:
-
150
)
bindEvents
:
->
$
(
'#
tree
-content-holder'
).
on
'mousedown'
,
'a[data-line-number]'
,
@
clickHandler
$
(
'#
blob
-content-holder'
).
on
'mousedown'
,
'a[data-line-number]'
,
@
clickHandler
# While it may seem odd to bind to the mousedown event and then throw away
# the click event, there is a method to our madness.
...
...
@@ -62,7 +62,7 @@ class @LineHighlighter
# active state even when the event is cancelled, resulting in an ugly border
# around the link and/or a persisted underline text decoration.
$
(
'#
tree
-content-holder'
).
on
'click'
,
'a[data-line-number]'
,
(
event
)
->
$
(
'#
blob
-content-holder'
).
on
'click'
,
'a[data-line-number]'
,
(
event
)
->
event
.
preventDefault
()
clickHandler
:
(
event
)
=>
...
...
app/assets/stylesheets/framework/tables.scss
View file @
a0a488ed
...
...
@@ -28,7 +28,7 @@ table {
border-bottom
:
1px
solid
$border-color
!
important
;
}
td
{
border-color
:
#F1F1F1
!
important
;
border-color
:
$table-border-color
!
important
;
border-bottom
:
1px
solid
;
}
}
...
...
app/assets/stylesheets/framework/tw_bootstrap_variables.scss
View file @
a0a488ed
...
...
@@ -156,3 +156,5 @@ $nav-link-padding: 13px $gl-padding;
$pre-bg
:
#f8fafc
!
default
;
$pre-color
:
$gl-gray
!
default
;
$pre-border-color
:
#e7e9ed
;
$table-bg-accent
:
$background-color
;
app/assets/stylesheets/framework/variables.scss
View file @
a0a488ed
...
...
@@ -16,6 +16,7 @@ $avatar_radius: 50%;
$code_font_size
:
13px
;
$code_line_height
:
1
.5
;
$border-color
:
#dce0e6
;
$table-border-color
:
#eef0f2
;
$background-color
:
#F7F8FA
;
$header-height
:
58px
;
$fixed-layout-width
:
1200px
;
...
...
app/assets/stylesheets/pages/tree.scss
View file @
a0a488ed
.tree-holder
{
.tree-
content
-holder
{
float
:
left
;
width
:
100%
;
.tree-
table
-holder
{
margin-left
:
-
$gl-padding
;
margin-right
:
-
$gl-padding
;
}
.tree_progress
{
...
...
@@ -13,10 +13,15 @@
}
.tree-table
{
@extend
.table
;
@include
border-radius
(
0
);
margin-bottom
:
0
;
tr
{
>
td
,
>
th
{
padding
:
10px
$gl-padding
;
line-height
:
32px
;
border-color
:
$table-border-color
!
important
;
}
&
:hover
{
td
{
background
:
$hover
;
...
...
@@ -27,9 +32,9 @@
}
&
.selected
{
td
{
background
:
$
background-color
;
border-top
:
1px
solid
#EEE
;
border-bottom
:
1px
solid
#EEE
;
background
:
$
gray-dark
;
border-top
:
1px
solid
$border-gray-dark
;
border-bottom
:
1px
solid
$border-gray-dark
;
}
}
}
...
...
@@ -85,19 +90,6 @@
margin-right
:
15px
;
}
.readme-holder
{
margin
:
0
auto
;
.readme-file-title
{
font-size
:
14px
;
font-weight
:
bold
;
margin-bottom
:
20px
;
color
:
#777
;
border-bottom
:
1px
solid
#DDD
;
padding
:
10px
0
;
}
}
.blob-commit-info
{
list-style
:
none
;
margin
:
0
;
...
...
app/views/projects/blob/_blob.html.haml
View file @
a0a488ed
...
...
@@ -19,7 +19,7 @@
-
blob_commit
=
@repository
.
last_commit_for_path
(
@commit
.
id
,
blob
.
path
)
=
render
blob_commit
,
project:
@project
%div
#
tree-content-holder
.tree
-content-holder
%div
#
blob-content-holder
.blob
-content-holder
%article
.file-holder
.file-title
=
blob_icon
blob
.
mode
,
blob
.
name
...
...
app/views/projects/repositories/_download_archive.html.haml
View file @
a0a488ed
...
...
@@ -3,10 +3,10 @@
-
split_button
=
split_button
||
false
-
if
split_button
==
true
%span
.btn-group
{
class:
btn_class
}
=
link_to
archive_namespace_project_repository_path
(
@project
.
namespace
,
@project
,
ref:
ref
,
format:
'zip'
),
class:
'btn col-xs-10'
,
rel:
'nofollow'
do
=
link_to
archive_namespace_project_repository_path
(
@project
.
namespace
,
@project
,
ref:
ref
,
format:
'zip'
),
class:
'btn
btn-success
col-xs-10'
,
rel:
'nofollow'
do
%i
.fa.fa-download
%span
Download zip
%a
.col-xs-2.btn.dropdown-toggle
{
'data-toggle'
=>
'dropdown'
}
%a
.col-xs-2.btn.
btn-success.
dropdown-toggle
{
'data-toggle'
=>
'dropdown'
}
%span
.caret
%span
.sr-only
Select Archive Format
...
...
app/views/projects/tree/_readme.html.haml
View file @
a0a488ed
%article
.readme-holder
#README
=
link_to
'#README'
do
%h4
.readme-file-title
%i
.fa.fa-file
=
readme
.
name
.wiki
%article
.file-holder.readme-holder
#README
.file-title
=
link_to
'#README'
do
%strong
%i
.fa.fa-file
=
readme
.
name
.file-content.wiki
=
render_readme
(
readme
)
app/views/projects/tree/_tree.html.haml
View file @
a0a488ed
%ul
.breadcrumb.repo-breadcrumb
%li
=
link_to
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
@ref
)
do
=
@project
.
path
-
tree_breadcrumbs
(
tree
,
6
)
do
|
title
,
path
|
.gray-content-block
%ul
.breadcrumb.repo-breadcrumb
%li
-
if
path
=
link_to
truncate
(
title
,
length:
40
),
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
path
)
-
else
=
link_to
title
,
'#'
-
if
allowed_tree_edit?
%li
%span
.dropdown
%a
.dropdown-toggle.btn.btn-xs.add-to-tree
{
href:
'#'
,
"data-toggle"
=>
"dropdown"
}
=
icon
(
'plus'
)
%ul
.dropdown-menu
%li
=
link_to
namespace_project_new_blob_path
(
@project
.
namespace
,
@project
,
@id
),
title:
'Create file'
,
id:
'new-file-link'
do
=
icon
(
'pencil fw'
)
Create file
%li
=
link_to
'#modal-upload-blob'
,
{
'data-target'
=>
'#modal-upload-blob'
,
'data-toggle'
=>
'modal'
}
do
=
icon
(
'file fw'
)
Upload file
%li
.divider
%li
=
link_to
'#modal-create-new-dir'
,
{
'data-target'
=>
'#modal-create-new-dir'
,
'data-toggle'
=>
'modal'
}
do
=
icon
(
'folder fw'
)
New directory
=
link_to
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
@ref
)
do
=
@project
.
path
-
tree_breadcrumbs
(
tree
,
6
)
do
|
title
,
path
|
%li
-
if
path
=
link_to
truncate
(
title
,
length:
40
),
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
path
)
-
else
=
link_to
title
,
'#'
-
if
allowed_tree_edit?
%li
%span
.dropdown
%a
.dropdown-toggle.btn.add-to-tree
{
href:
'#'
,
"data-toggle"
=>
"dropdown"
}
=
icon
(
'plus'
)
%ul
.dropdown-menu
%li
=
link_to
namespace_project_new_blob_path
(
@project
.
namespace
,
@project
,
@id
),
title:
'Create file'
,
id:
'new-file-link'
do
=
icon
(
'pencil fw'
)
Create file
%li
=
link_to
'#modal-upload-blob'
,
{
'data-target'
=>
'#modal-upload-blob'
,
'data-toggle'
=>
'modal'
}
do
=
icon
(
'file fw'
)
Upload file
%li
.divider
%li
=
link_to
'#modal-create-new-dir'
,
{
'data-target'
=>
'#modal-create-new-dir'
,
'data-toggle'
=>
'modal'
}
do
=
icon
(
'folder fw'
)
New directory
%div
#tree-content-holder
.tree-content-holder.prepend-top-20
%table
#tree-slider
{
class:
"table_#{@hex_path} tree-table"
}
%thead
%tr
%th
Name
%th
Last Update
%th
.hidden-xs
.pull-left
Last Commit
.last-commit.hidden-sm.pull-left
%i
.fa.fa-angle-right
%small
.light
=
link_to
@commit
.
short_id
,
namespace_project_commit_path
(
@project
.
namespace
,
@project
,
@commit
)
–
=
truncate
(
@commit
.
title
,
length:
50
)
=
link_to
'History'
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'pull-right'
%div
#tree-content-holder
.tree-content-holder
.tree-table-holder
%table
.table
#tree-slider
{
class:
"table_#{@hex_path} tree-table table-striped"
}
%thead
%tr
%th
Name
%th
Last Update
%th
.hidden-xs
.pull-left
Last Commit
.last-commit.hidden-sm.pull-left
%i
.fa.fa-angle-right
%small
.light
=
link_to
@commit
.
short_id
,
namespace_project_commit_path
(
@project
.
namespace
,
@project
,
@commit
)
–
=
truncate
(
@commit
.
title
,
length:
50
)
=
link_to
'History'
,
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'pull-right'
-
if
@path
.
present?
%tr
.tree-item
%td
.tree-item-file-name
=
link_to
".."
,
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
up_dir_path
),
class:
'prepend-left-10'
%td
%td
.hidden-xs
-
if
@path
.
present?
%tr
.tree-item
%td
.tree-item-file-name
=
link_to
".."
,
namespace_project_tree_path
(
@project
.
namespace
,
@project
,
up_dir_path
),
class:
'prepend-left-10'
%td
%td
.hidden-xs
=
render_tree
(
tree
)
=
render_tree
(
tree
)
-
if
tree
.
readme
=
render
"projects/tree/readme"
,
readme:
tree
.
readme
...
...
spec/javascripts/fixtures/line_highlighter.html.haml
View file @
a0a488ed
#
tree
-content-holder
#
blob
-content-holder
.file-content
.line-numbers
-
1
.
upto
(
25
)
do
|
i
|
...
...
spec/javascripts/line_highlighter_spec.js.coffee
View file @
a0a488ed
...
...
@@ -39,7 +39,7 @@ describe 'LineHighlighter', ->
expect
(
spy
).
toHaveBeenPrevented
()
it
'handles garbage input from the hash'
,
->
func
=
->
new
LineHighlighter
(
'#
tree
-content-holder'
)
func
=
->
new
LineHighlighter
(
'#
blob
-content-holder'
)
expect
(
func
).
not
.
toThrow
()
describe
'#clickHandler'
,
->
...
...
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