diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-12 12:08:52 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-12 12:08:52 +0300 |
commit | 083990c795c74a0dfc76813e44706289a7ede43d (patch) | |
tree | a547b31f0c33fe09deb4d5165c9717b4a10a969e | |
parent | 0175e665893ca8f8fd660ff55841e95c02fcb987 (diff) | |
download | gitlab-ce-083990c795c74a0dfc76813e44706289a7ede43d.tar.gz |
Minor UI improvements
-rw-r--r-- | app/assets/stylesheets/sections/snippets.scss | 1 | ||||
-rw-r--r-- | app/views/projects/merge_requests/index.html.haml | 1 | ||||
-rw-r--r-- | app/views/projects/merge_requests/show/_mr_accept.html.haml | 2 | ||||
-rw-r--r-- | app/views/projects/snippets/_form.html.haml | 7 | ||||
-rw-r--r-- | app/views/projects/snippets/index.html.haml | 8 | ||||
-rw-r--r-- | app/views/snippets/_form.html.haml | 5 | ||||
-rw-r--r-- | app/views/snippets/current_user_index.html.haml | 15 | ||||
-rw-r--r-- | features/steps/project/project_snippets.rb | 2 |
8 files changed, 29 insertions, 12 deletions
diff --git a/app/assets/stylesheets/sections/snippets.scss b/app/assets/stylesheets/sections/snippets.scss index 7dab0bfe014..e67ca794f25 100644 --- a/app/assets/stylesheets/sections/snippets.scss +++ b/app/assets/stylesheets/sections/snippets.scss @@ -1,6 +1,7 @@ .snippet.file-holder { .file-title { .snippet-file-name { + padding: 4px 10px; position: relative; top: -4px; left: -4px; diff --git a/app/views/projects/merge_requests/index.html.haml b/app/views/projects/merge_requests/index.html.haml index 7970745e4c8..35de9149d82 100644 --- a/app/views/projects/merge_requests/index.html.haml +++ b/app/views/projects/merge_requests/index.html.haml @@ -4,6 +4,7 @@ New Merge Request %h3.page-title Merge Requests + %span (#{@merge_requests.total_count}) .row diff --git a/app/views/projects/merge_requests/show/_mr_accept.html.haml b/app/views/projects/merge_requests/show/_mr_accept.html.haml index 621a3cfa25e..7cae196d0a1 100644 --- a/app/views/projects/merge_requests/show/_mr_accept.html.haml +++ b/app/views/projects/merge_requests/show/_mr_accept.html.haml @@ -32,7 +32,7 @@ .automerge_widget.cannot_be_merged{style: "display:none"} .alert.alert-disabled %span - = link_to "Show how to merge", "#modal_merge_info", class: "how_to_merge_link btn btn-small padded", title: "How To Merge", "data-toggle" => "modal" + = link_to "Show how to merge", "#modal_merge_info", class: "how_to_merge_link btn padded", title: "How To Merge", "data-toggle" => "modal" %strong This request can't be merged with GitLab. You should do it manually diff --git a/app/views/projects/snippets/_form.html.haml b/app/views/projects/snippets/_form.html.haml index 14a42f34f25..e83f5d0d65d 100644 --- a/app/views/projects/snippets/_form.html.haml +++ b/app/views/projects/snippets/_form.html.haml @@ -27,8 +27,11 @@ = f.hidden_field :content, class: 'snippet-file-content' .form-actions - = f.submit 'Save', class: "btn-save btn" - = link_to "Cancel", project_snippets_path(@project), class: " btn" + - if @snippet.new_record? + = f.submit 'Create snippet', class: "btn-create btn" + - else + = f.submit 'Save', class: "btn-save btn" + = link_to "Cancel", project_snippets_path(@project), class: " btn btn-cancel" - unless @snippet.new_record? .pull-right= link_to 'Destroy', project_snippet_path(@project, @snippet), confirm: 'Are you sure?', method: :delete, class: "btn pull-right danger delete-snippet", id: "destroy_snippet_#{@snippet.id}" diff --git a/app/views/projects/snippets/index.html.haml b/app/views/projects/snippets/index.html.haml index 2e8dddefffc..c40f63d05b3 100644 --- a/app/views/projects/snippets/index.html.haml +++ b/app/views/projects/snippets/index.html.haml @@ -1,10 +1,12 @@ %h3.page-title Snippets - %small share code pastes with others out of git repository - - if can? current_user, :write_project_snippet, @project - = link_to new_project_snippet_path(@project), class: "btn btn-small add_new pull-right", title: "New Snippet" do + = link_to new_project_snippet_path(@project), class: "btn btn-new pull-right", title: "New Snippet" do Add new snippet + +%p.light + Share code pastes with others out of git repository + %hr %ul.bordered-list = render partial: "projects/snippets/snippet", collection: @snippets diff --git a/app/views/snippets/_form.html.haml b/app/views/snippets/_form.html.haml index fa0d5157a2e..e77550e7be3 100644 --- a/app/views/snippets/_form.html.haml +++ b/app/views/snippets/_form.html.haml @@ -14,7 +14,8 @@ .controls= f.text_field :title, placeholder: "Example Snippet", class: 'input-xlarge', required: true .control-group = f.label "Private?" - .controls= f.check_box :private, {class: ''} + .controls + = f.check_box :private, {class: ''} .control-group .file-editor = f.label :file_name, "File" @@ -32,7 +33,7 @@ - else = f.submit 'Save', class: "btn-save btn" - = link_to "Cancel", snippets_path(@project), class: " btn" + = link_to "Cancel", snippets_path(@project), class: "btn btn-cancel" - unless @snippet.new_record? .pull-right= link_to 'Destroy', snippet_path(@snippet), confirm: 'Removed snippet cannot be restored! Are you sure?', method: :delete, class: "btn pull-right danger delete-snippet", id: "destroy_snippet_#{@snippet.id}" diff --git a/app/views/snippets/current_user_index.html.haml b/app/views/snippets/current_user_index.html.haml index a2a9aef04eb..51030f965a1 100644 --- a/app/views/snippets/current_user_index.html.haml +++ b/app/views/snippets/current_user_index.html.haml @@ -14,11 +14,20 @@ .span3 %ul.nav.nav-pills.nav-stacked = nav_tab :scope, nil do - = link_to "All", user_snippets_path(@user) + = link_to user_snippets_path(@user) do + All + %span.pull-right + = @user.snippets.count = nav_tab :scope, 'private' do - = link_to "Private", user_snippets_path(@user, scope: 'private') + = link_to user_snippets_path(@user, scope: 'private') do + Private + %span.pull-right + = @user.snippets.private.count = nav_tab :scope, 'public' do - = link_to "Public", user_snippets_path(@user, scope: 'public') + = link_to user_snippets_path(@user, scope: 'public') do + Public + %span.pull-right + = @user.snippets.public.count .span9.my-snippets = render 'snippets' diff --git a/features/steps/project/project_snippets.rb b/features/steps/project/project_snippets.rb index d3904599ce1..86c0685256a 100644 --- a/features/steps/project/project_snippets.rb +++ b/features/steps/project/project_snippets.rb @@ -58,7 +58,7 @@ class ProjectSnippets < Spinach::FeatureSteps within('.file-editor') do find(:xpath, "//input[@id='project_snippet_content']").set 'Content of snippet three' end - click_button "Save" + click_button "Create snippet" end Then 'I should see snippet "Snippet three"' do |