Commit a9fba2cd authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix modal dialogs

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 42fc32d8
...@@ -96,6 +96,10 @@ pre.well-pre { ...@@ -96,6 +96,10 @@ pre.well-pre {
color: #999; color: #999;
text-shadow: none; text-shadow: none;
} }
&.label-inverse {
background-color: #333333;
}
} }
/** Big Labels **/ /** Big Labels **/
......
...@@ -15,29 +15,9 @@ ...@@ -15,29 +15,9 @@
} }
} }
.accept_group { .accept-group {
float: left;
border: 1px solid #ADA;
padding: 2px;
@include border-radius(5px);
background: #CEB;
.accept_merge_request {
font-size: 13px;
float: left;
}
.remove_branch_holder {
margin-left: 20px;
margin-right: 10px;
float: left;
}
label {
color: #444;
text-align: left
}
} }
.how_to_merge_link { .how_to_merge_link {
@extend .primary; @extend .primary;
} }
......
#modal-shortcuts.modal.hide #modal-shortcuts.modal.hide
.modal-header .modal-dialog
%a.close{href: "#", "data-dismiss" => "modal"} × .modal-content
%h3 Keyboard Shortcuts .modal-header
.modal-body %a.close{href: "#", "data-dismiss" => "modal"} ×
%h5 Global Shortcuts %h3 Keyboard Shortcuts
%p .modal-body
%span.label.label-inverse s %h5 Global Shortcuts
&ndash; %p
Focus Search %span.label.label-inverse s
%p &ndash;
%span.label.label-inverse ? Focus Search
&ndash; %p
Show this dialog %span.label.label-inverse ?
&ndash;
Show this dialog
%h5 Project Files browsing %h5 Project Files browsing
%p %p
%span.label.label-inverse %span.label.label-inverse
%i.icon-arrow-up %i.icon-arrow-up
&ndash; &ndash;
Move selection up Move selection up
%p %p
%span.label.label-inverse %span.label.label-inverse
%i.icon-arrow-down %i.icon-arrow-down
&ndash; &ndash;
Move selection down Move selection down
%p %p
%span.label.label-inverse Enter %span.label.label-inverse Enter
&ndash; &ndash;
Open selection Open selection
%div#modal-remove-blob.modal.hide #modal-remove-blob.modal.hide
.modal-header .modal-dialog
%a.close{href: "#", "data-dismiss" => "modal"} × .modal-content
%h3.page-title Remove #{@blob.name} .modal-header
%p.light %a.close{href: "#", "data-dismiss" => "modal"} ×
From branch %h3.page-title Remove #{@blob.name}
%strong= @ref %p.light
From branch
%strong= @ref
.modal-body .modal-body
= form_tag project_blob_path(@project, @id), method: :delete do = form_tag project_blob_path(@project, @id), method: :delete do
.form-group.commit_message-group .form-group.commit_message-group
= label_tag 'commit_message', class: "control-label" do = label_tag 'commit_message', class: "control-label" do
Commit message Commit message
.col-sm-10 .col-sm-10
= text_area_tag 'commit_message', params[:commit_message], placeholder: "Removed this file because...", required: true, rows: 3 = text_area_tag 'commit_message', params[:commit_message], placeholder: "Removed this file because...", required: true, rows: 3
.form-group .form-group
.col-sm-10 .col-sm-10
= submit_tag 'Remove file', class: 'btn btn-remove' = submit_tag 'Remove file', class: 'btn btn-remove'
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal" = link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"
%div#modal_merge_info.modal.hide %div#modal_merge_info.modal.hide
.modal-header .modal-dialog
%a.close{href: "#", "data-dismiss" => "modal"} × .modal-content
%h3 How to merge .modal-header
.modal-body %a.close{href: "#", "data-dismiss" => "modal"} ×
- if @merge_request.for_fork? %h3 How to merge
- source_remote = @merge_request.source_project.namespace.nil? ? "source" :@merge_request.source_project.namespace.path .modal-body
- target_remote = @merge_request.target_project.namespace.nil? ? "target" :@merge_request.target_project.namespace.path - if @merge_request.for_fork?
%p - source_remote = @merge_request.source_project.namespace.nil? ? "source" :@merge_request.source_project.namespace.path
%strong Step 1. - target_remote = @merge_request.target_project.namespace.nil? ? "target" :@merge_request.target_project.namespace.path
Checkout target branch and get recent objects from GitLab %p
Assuming remote for #{@merge_request.target_project.path_with_namespace} is called #{target_remote} %strong Step 1.
remote for #{@merge_request.source_project_path} is called #{source_remote} Checkout target branch and get recent objects from GitLab
%pre.dark Assuming remote for #{@merge_request.target_project.path_with_namespace} is called #{target_remote}
:preserve remote for #{@merge_request.source_project_path} is called #{source_remote}
git checkout #{target_remote} #{@merge_request.target_branch} %pre.dark
git fetch #{source_remote} :preserve
%p git checkout #{target_remote} #{@merge_request.target_branch}
%strong Step 2. git fetch #{source_remote}
Merge source branch into target branch and push changes to GitLab %p
%pre.dark %strong Step 2.
:preserve Merge source branch into target branch and push changes to GitLab
git merge #{source_remote}/#{@merge_request.source_branch} %pre.dark
git push #{target_remote} #{@merge_request.target_branch} :preserve
- else git merge #{source_remote}/#{@merge_request.source_branch}
%p git push #{target_remote} #{@merge_request.target_branch}
%strong Step 1. - else
Checkout target branch and get recent objects from GitLab %p
%pre.dark %strong Step 1.
:preserve Checkout target branch and get recent objects from GitLab
git checkout #{@merge_request.target_branch} %pre.dark
git fetch origin :preserve
%p git checkout #{@merge_request.target_branch}
%strong Step 2. git fetch origin
Merge source branch into target branch and push changes to GitLab %p
%pre.dark %strong Step 2.
:preserve Merge source branch into target branch and push changes to GitLab
git merge origin/#{@merge_request.source_branch} %pre.dark
git push origin #{@merge_request.target_branch} :preserve
git merge origin/#{@merge_request.source_branch}
git push origin #{@merge_request.target_branch}
:javascript :javascript
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
%strong %strong
= link_to "click here", "#modal_merge_info", class: "how_to_merge_link vlink", title: "How To Merge", "data-toggle" => "modal" = link_to "click here", "#modal_merge_info", class: "how_to_merge_link vlink", title: "How To Merge", "data-toggle" => "modal"
for instructions for instructions
.accept_group .accept-group
= f.submit "Accept Merge Request", class: "btn btn-create accept_merge_request" = f.submit "Accept Merge Request", class: "btn btn-create accept_merge_request"
- unless @merge_request.disallow_source_branch_removal? - unless @merge_request.disallow_source_branch_removal?
.remove_branch_holder .remove_branch_holder
......
%div#modal-new-wiki.modal.hide %div#modal-new-wiki.modal.hide
.modal-header .modal-dialog
%a.close{href: "#", "data-dismiss" => "modal"} × .modal-content
%h3.page-title New Wiki Page .modal-header
.modal-body %a.close{href: "#", "data-dismiss" => "modal"} ×
= label_tag :new_wiki_path do %h3.page-title New Wiki Page
%span Page slug .modal-body
= text_field_tag :new_wiki_path, nil, placeholder: 'how-to-setup', class: 'input-lg', required: true, :'data-wikis-path' => project_wikis_path(@project) = label_tag :new_wiki_path do
%p.hint %span Page slug
Please don't use spaces and slashes = text_field_tag :new_wiki_path, nil, placeholder: 'how-to-setup', class: 'input-lg', required: true, :'data-wikis-path' => project_wikis_path(@project)
.modal-footer %p.hint
= link_to 'Build', '#', class: 'build-new-wiki btn btn-create' Please don't use spaces and slashes
.modal-footer
= link_to 'Build', '#', class: 'build-new-wiki btn btn-create'
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment