Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-06 23:21:07 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-06-06 23:21:07 +0400
commit910a99f90b27b0b6de0140ce89f356b746d43113 (patch)
tree07d0820255068a54fd903f84d29fe2a705e633f7 /app
parentdd03841fea7aa2d71130c7167b61d3c959ddaf19 (diff)
Improve tree view for mobile
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/views/projects/tree/_blob_item.html.haml2
-rw-r--r--app/views/projects/tree/_submodule_item.html.haml3
-rw-r--r--app/views/projects/tree/_tree.html.haml7
-rw-r--r--app/views/projects/tree/_tree_item.html.haml2
4 files changed, 6 insertions, 8 deletions
diff --git a/app/views/projects/tree/_blob_item.html.haml b/app/views/projects/tree/_blob_item.html.haml
index 6fee604b554..0971a426527 100644
--- a/app/views/projects/tree/_blob_item.html.haml
+++ b/app/views/projects/tree/_blob_item.html.haml
@@ -5,4 +5,4 @@
= link_to blob_item.name, project_blob_path(@project, tree_join(@id || @commit.id, blob_item.name))
%td.tree_time_ago.cgray
= render 'spinner'
- %td.tree_commit{ colspan: 2 }
+ %td.hidden-xs.tree_commit{ colspan: 2 }
diff --git a/app/views/projects/tree/_submodule_item.html.haml b/app/views/projects/tree/_submodule_item.html.haml
index 3e2655cc4f6..474604df654 100644
--- a/app/views/projects/tree/_submodule_item.html.haml
+++ b/app/views/projects/tree/_submodule_item.html.haml
@@ -11,5 +11,4 @@
- else
= link_to "#{submodule_item.id[0..10]}", commit
%td
- %td
- %td
+ %td.hidden-xs
diff --git a/app/views/projects/tree/_tree.html.haml b/app/views/projects/tree/_tree.html.haml
index f049aa58e06..dbb74a1cafb 100644
--- a/app/views/projects/tree/_tree.html.haml
+++ b/app/views/projects/tree/_tree.html.haml
@@ -20,7 +20,7 @@
%tr
%th Name
%th Last Update
- %th.hidden-sm
+ %th.hidden-sm.hidden-xs
Last Commit
%span.last-commit
&nbsp;
@@ -30,15 +30,14 @@
= link_to @commit.short_id, project_commit_path(@project, @commit)
&ndash;
= truncate(@commit.title, length: 50)
- %th= link_to "history", project_commits_path(@project, @id), class: "pull-right"
+ = link_to "history", project_commits_path(@project, @id), class: "pull-right"
- if @path.present?
%tr.tree-item
%td.tree-item-file-name
= link_to "..", project_tree_path(@project, up_dir_path(tree)), class: 'prepend-left-10'
%td
- %td
- %td
+ %td.hidden-xs
= render_tree(tree)
diff --git a/app/views/projects/tree/_tree_item.html.haml b/app/views/projects/tree/_tree_item.html.haml
index 1b3900bcbae..760e95e84f0 100644
--- a/app/views/projects/tree/_tree_item.html.haml
+++ b/app/views/projects/tree/_tree_item.html.haml
@@ -5,4 +5,4 @@
= link_to tree_item.name, project_tree_path(@project, tree_join(@id || @commit.id, tree_item.name))
%td.tree_time_ago.cgray
= render 'spinner'
- %td.tree_commit{ colspan: 2 }
+ %td.hidden-xs.tree_commit{ colspan: 2 }