File view buttons
This commit is contained in:
parent
8cc9ab5017
commit
a8b1622632
6 changed files with 168 additions and 110 deletions
|
@ -380,7 +380,7 @@ a.deploy-project-label {
|
|||
padding: 0;
|
||||
background: transparent;
|
||||
border: none;
|
||||
line-height: 36px;
|
||||
line-height: 34px;
|
||||
margin: 0;
|
||||
|
||||
> li + li::before {
|
||||
|
|
|
@ -1,6 +1,72 @@
|
|||
.tree-holder {
|
||||
> .nav-block {
|
||||
margin: 11px 0;
|
||||
.nav-block {
|
||||
margin: 10px 0;
|
||||
|
||||
@media (min-width: $screen-sm-min) {
|
||||
display: flex;
|
||||
|
||||
.tree-ref-container {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.tree-controls {
|
||||
text-align: right;
|
||||
|
||||
.btn-group {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.tree-ref-holder {
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.repo-breadcrumb {
|
||||
li:last-of-type {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.add-to-tree-dropdown {
|
||||
position: absolute;
|
||||
left: 18px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $screen-xs-max) {
|
||||
.repo-breadcrumb {
|
||||
margin-top: 10px;
|
||||
position: relative;
|
||||
|
||||
.dropdown-menu {
|
||||
min-width: 100%;
|
||||
width: 100%;
|
||||
left: inherit;
|
||||
right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.add-to-tree-dropdown {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.tree-controls {
|
||||
margin-bottom: 10px;
|
||||
|
||||
.btn,
|
||||
.dropdown,
|
||||
.btn-group {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.btn {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.file-finder {
|
||||
|
@ -131,11 +197,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.tree-ref-holder {
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.blob-commit-info {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
|
@ -159,16 +220,6 @@
|
|||
color: $md-link-color;
|
||||
}
|
||||
|
||||
.tree-controls {
|
||||
float: right;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
|
||||
.project-action-button {
|
||||
margin-left: $btn-side-margin;
|
||||
}
|
||||
}
|
||||
|
||||
.repo-charts {
|
||||
.sub-header {
|
||||
margin: 20px 0;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
= link_to namespace_project_find_file_path(@project.namespace, @project, @ref), class: 'btn btn-grouped shortcuts-find-file', rel: 'nofollow' do
|
||||
= link_to namespace_project_find_file_path(@project.namespace, @project, @ref), class: 'btn shortcuts-find-file', rel: 'nofollow' do
|
||||
= icon('search')
|
||||
%span= _('Find file')
|
||||
|
|
|
@ -1,9 +1,26 @@
|
|||
- blame = local_assigns.fetch(:blame, false)
|
||||
.nav-block
|
||||
.tree-ref-container
|
||||
.tree-ref-holder
|
||||
= render 'shared/ref_switcher', destination: 'blob', path: @path
|
||||
|
||||
%ul.breadcrumb.repo-breadcrumb
|
||||
%li
|
||||
= link_to namespace_project_tree_path(@project.namespace, @project, @ref) do
|
||||
= @project.path
|
||||
- path_breadcrumbs do |title, path|
|
||||
- title = truncate(title, length: 40)
|
||||
%li
|
||||
- if path == @path
|
||||
= link_to namespace_project_blob_path(@project.namespace, @project, tree_join(@ref, path)) do
|
||||
%strong= title
|
||||
- else
|
||||
= link_to title, namespace_project_tree_path(@project.namespace, @project, tree_join(@ref, path))
|
||||
|
||||
.tree-controls
|
||||
= render 'projects/find_file_link'
|
||||
|
||||
.btn-group.prepend-left-10{ role: "group" }<
|
||||
.btn-group{ role: "group" }<
|
||||
-# only show normal/blame view links for text files
|
||||
- if blob.readable_text?
|
||||
- if blame
|
||||
|
@ -18,19 +35,3 @@
|
|||
|
||||
= link_to 'Permalink', namespace_project_blob_path(@project.namespace, @project,
|
||||
tree_join(@commit.sha, @path)), class: 'btn js-data-file-blob-permalink-url'
|
||||
|
||||
.tree-ref-holder
|
||||
= render 'shared/ref_switcher', destination: 'blob', path: @path
|
||||
|
||||
%ul.breadcrumb.repo-breadcrumb
|
||||
%li
|
||||
= link_to namespace_project_tree_path(@project.namespace, @project, @ref) do
|
||||
= @project.path
|
||||
- path_breadcrumbs do |title, path|
|
||||
- title = truncate(title, length: 40)
|
||||
%li
|
||||
- if path == @path
|
||||
= link_to namespace_project_blob_path(@project.namespace, @project, tree_join(@ref, path)) do
|
||||
%strong= title
|
||||
- else
|
||||
= link_to title, namespace_project_tree_path(@project.namespace, @project, tree_join(@ref, path))
|
||||
|
|
|
@ -1,79 +1,81 @@
|
|||
.tree-ref-container
|
||||
.tree-ref-holder
|
||||
= render 'shared/ref_switcher', destination: 'tree', path: @path
|
||||
|
||||
%ul.breadcrumb.repo-breadcrumb
|
||||
%li
|
||||
= link_to namespace_project_tree_path(@project.namespace, @project, @ref) do
|
||||
= @project.path
|
||||
- path_breadcrumbs do |title, path|
|
||||
%li
|
||||
= link_to truncate(title, length: 40), namespace_project_tree_path(@project.namespace, @project, tree_join(@ref, path))
|
||||
|
||||
- if current_user
|
||||
%li
|
||||
- if !on_top_of_branch?
|
||||
%span.btn.add-to-tree.disabled.has-tooltip{ title: _("You can only add files when you are on a branch"), data: { container: 'body' } }
|
||||
= icon('plus')
|
||||
- else
|
||||
%span.dropdown
|
||||
%a.dropdown-toggle.btn.add-to-tree{ href: '#', "data-toggle" => "dropdown", "data-target" => ".add-to-tree-dropdown" }
|
||||
= icon('plus')
|
||||
.add-to-tree-dropdown
|
||||
%ul.dropdown-menu
|
||||
- if can_edit_tree?
|
||||
%li
|
||||
= link_to namespace_project_new_blob_path(@project.namespace, @project, @id) do
|
||||
= icon('pencil fw')
|
||||
#{ _('New file') }
|
||||
%li
|
||||
= link_to '#modal-upload-blob', { 'data-target' => '#modal-upload-blob', 'data-toggle' => 'modal' } do
|
||||
= icon('file fw')
|
||||
#{ _('Upload file') }
|
||||
%li
|
||||
= link_to '#modal-create-new-dir', { 'data-target' => '#modal-create-new-dir', 'data-toggle' => 'modal' } do
|
||||
= icon('folder fw')
|
||||
#{ _('New directory') }
|
||||
- elsif can?(current_user, :fork_project, @project)
|
||||
%li
|
||||
- continue_params = { to: namespace_project_new_blob_path(@project.namespace, @project, @id),
|
||||
notice: edit_in_new_fork_notice,
|
||||
notice_now: edit_in_new_fork_notice_now }
|
||||
- fork_path = namespace_project_forks_path(@project.namespace, @project, namespace_key: current_user.namespace.id,
|
||||
continue: continue_params)
|
||||
= link_to fork_path, method: :post do
|
||||
= icon('pencil fw')
|
||||
#{ _('New file') }
|
||||
%li
|
||||
- continue_params = { to: request.fullpath,
|
||||
notice: edit_in_new_fork_notice + " Try to upload a file again.",
|
||||
notice_now: edit_in_new_fork_notice_now }
|
||||
- fork_path = namespace_project_forks_path(@project.namespace, @project, namespace_key: current_user.namespace.id,
|
||||
continue: continue_params)
|
||||
= link_to fork_path, method: :post do
|
||||
= icon('file fw')
|
||||
#{ _('Upload file') }
|
||||
%li
|
||||
- continue_params = { to: request.fullpath,
|
||||
notice: edit_in_new_fork_notice + " Try to create a new directory again.",
|
||||
notice_now: edit_in_new_fork_notice_now }
|
||||
- fork_path = namespace_project_forks_path(@project.namespace, @project, namespace_key: current_user.namespace.id,
|
||||
continue: continue_params)
|
||||
= link_to fork_path, method: :post do
|
||||
= icon('folder fw')
|
||||
#{ _('New directory') }
|
||||
|
||||
%li.divider
|
||||
%li
|
||||
= link_to new_namespace_project_branch_path(@project.namespace, @project) do
|
||||
= icon('code-fork fw')
|
||||
#{ _('New branch') }
|
||||
%li
|
||||
= link_to new_namespace_project_tag_path(@project.namespace, @project) do
|
||||
= icon('tags fw')
|
||||
#{ _('New tag') }
|
||||
|
||||
.tree-controls
|
||||
= render 'projects/find_file_link'
|
||||
|
||||
= link_to s_('Commits|History'), namespace_project_commits_path(@project.namespace, @project, @id), class: 'btn btn-grouped'
|
||||
= link_to s_('Commits|History'), namespace_project_commits_path(@project.namespace, @project, @id), class: 'btn'
|
||||
|
||||
= render 'projects/buttons/download', project: @project, ref: @ref
|
||||
|
||||
.tree-ref-holder
|
||||
= render 'shared/ref_switcher', destination: 'tree', path: @path
|
||||
|
||||
%ul.breadcrumb.repo-breadcrumb
|
||||
%li
|
||||
= link_to namespace_project_tree_path(@project.namespace, @project, @ref) do
|
||||
= @project.path
|
||||
- path_breadcrumbs do |title, path|
|
||||
%li
|
||||
= link_to truncate(title, length: 40), namespace_project_tree_path(@project.namespace, @project, tree_join(@ref, path))
|
||||
|
||||
- if current_user
|
||||
%li
|
||||
- if !on_top_of_branch?
|
||||
%span.btn.add-to-tree.disabled.has-tooltip{ title: _("You can only add files when you are on a branch"), data: { container: 'body' } }
|
||||
= icon('plus')
|
||||
- else
|
||||
%span.dropdown
|
||||
%a.dropdown-toggle.btn.add-to-tree{ href: '#', "data-toggle" => "dropdown" }
|
||||
= icon('plus')
|
||||
%ul.dropdown-menu
|
||||
- if can_edit_tree?
|
||||
%li
|
||||
= link_to namespace_project_new_blob_path(@project.namespace, @project, @id) do
|
||||
= icon('pencil fw')
|
||||
#{ _('New file') }
|
||||
%li
|
||||
= link_to '#modal-upload-blob', { 'data-target' => '#modal-upload-blob', 'data-toggle' => 'modal' } do
|
||||
= icon('file fw')
|
||||
#{ _('Upload file') }
|
||||
%li
|
||||
= link_to '#modal-create-new-dir', { 'data-target' => '#modal-create-new-dir', 'data-toggle' => 'modal' } do
|
||||
= icon('folder fw')
|
||||
#{ _('New directory') }
|
||||
- elsif can?(current_user, :fork_project, @project)
|
||||
%li
|
||||
- continue_params = { to: namespace_project_new_blob_path(@project.namespace, @project, @id),
|
||||
notice: edit_in_new_fork_notice,
|
||||
notice_now: edit_in_new_fork_notice_now }
|
||||
- fork_path = namespace_project_forks_path(@project.namespace, @project, namespace_key: current_user.namespace.id,
|
||||
continue: continue_params)
|
||||
= link_to fork_path, method: :post do
|
||||
= icon('pencil fw')
|
||||
#{ _('New file') }
|
||||
%li
|
||||
- continue_params = { to: request.fullpath,
|
||||
notice: edit_in_new_fork_notice + " Try to upload a file again.",
|
||||
notice_now: edit_in_new_fork_notice_now }
|
||||
- fork_path = namespace_project_forks_path(@project.namespace, @project, namespace_key: current_user.namespace.id,
|
||||
continue: continue_params)
|
||||
= link_to fork_path, method: :post do
|
||||
= icon('file fw')
|
||||
#{ _('Upload file') }
|
||||
%li
|
||||
- continue_params = { to: request.fullpath,
|
||||
notice: edit_in_new_fork_notice + " Try to create a new directory again.",
|
||||
notice_now: edit_in_new_fork_notice_now }
|
||||
- fork_path = namespace_project_forks_path(@project.namespace, @project, namespace_key: current_user.namespace.id,
|
||||
continue: continue_params)
|
||||
= link_to fork_path, method: :post do
|
||||
= icon('folder fw')
|
||||
#{ _('New directory') }
|
||||
|
||||
%li.divider
|
||||
%li
|
||||
= link_to new_namespace_project_branch_path(@project.namespace, @project) do
|
||||
= icon('code-fork fw')
|
||||
#{ _('New branch') }
|
||||
%li
|
||||
= link_to new_namespace_project_tag_path(@project.namespace, @project) do
|
||||
= icon('tags fw')
|
||||
#{ _('New tag') }
|
||||
|
|
4
changelogs/unreleased/25102-files-view-button.yml
Normal file
4
changelogs/unreleased/25102-files-view-button.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Fix mobile view of files view buttons
|
||||
merge_request:
|
||||
author:
|
Loading…
Reference in a new issue