Merge branch '34349-select-branch-dropdown-is-too-close-to-branch-name' into 'master'
Resolve "Select branch dropdown is too close to branch name" Closes #34349 See merge request !12515
This commit is contained in:
commit
6205e45727
2 changed files with 24 additions and 17 deletions
|
@ -1,4 +1,5 @@
|
||||||
.tree-holder {
|
.tree-holder {
|
||||||
|
|
||||||
.nav-block {
|
.nav-block {
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
|
|
||||||
|
@ -15,6 +16,11 @@
|
||||||
.btn-group {
|
.btn-group {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.control {
|
||||||
|
float: left;
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.tree-ref-holder {
|
.tree-ref-holder {
|
||||||
|
|
|
@ -8,27 +8,28 @@
|
||||||
= render "head"
|
= render "head"
|
||||||
|
|
||||||
%div{ class: container_class }
|
%div{ class: container_class }
|
||||||
.row-content-block.second-block.content-component-block.flex-container-block
|
.tree-holder
|
||||||
.tree-ref-holder
|
.nav-block
|
||||||
= render 'shared/ref_switcher', destination: 'commits'
|
.tree-ref-container
|
||||||
|
.tree-ref-holder
|
||||||
|
= render 'shared/ref_switcher', destination: 'commits'
|
||||||
|
|
||||||
%ul.breadcrumb.repo-breadcrumb
|
%ul.breadcrumb.repo-breadcrumb
|
||||||
= commits_breadcrumbs
|
= commits_breadcrumbs
|
||||||
|
.tree-controls.hidden-xs.hidden-sm
|
||||||
|
- if @merge_request.present?
|
||||||
|
.control
|
||||||
|
= link_to _("View open merge request"), namespace_project_merge_request_path(@project.namespace, @project, @merge_request), class: 'btn'
|
||||||
|
- elsif create_mr_button?(@repository.root_ref, @ref)
|
||||||
|
.control
|
||||||
|
= link_to _("Create merge request"), create_mr_path(@repository.root_ref, @ref), class: 'btn btn-success'
|
||||||
|
|
||||||
.block-controls.hidden-xs.hidden-sm
|
|
||||||
- if @merge_request.present?
|
|
||||||
.control
|
.control
|
||||||
= link_to _("View open merge request"), namespace_project_merge_request_path(@project.namespace, @project, @merge_request), class: 'btn'
|
= form_tag(namespace_project_commits_path(@project.namespace, @project, @id), method: :get, class: 'commits-search-form') do
|
||||||
- elsif create_mr_button?(@repository.root_ref, @ref)
|
= search_field_tag :search, params[:search], { placeholder: _('Filter by commit message'), id: 'commits-search', class: 'form-control search-text-input input-short', spellcheck: false }
|
||||||
.control
|
.control
|
||||||
= link_to _("Create merge request"), create_mr_path(@repository.root_ref, @ref), class: 'btn btn-success'
|
= link_to namespace_project_commits_path(@project.namespace, @project, @ref, rss_url_options), title: _("Commits feed"), class: 'btn' do
|
||||||
|
= icon("rss")
|
||||||
.control
|
|
||||||
= form_tag(namespace_project_commits_path(@project.namespace, @project, @id), method: :get, class: 'commits-search-form') do
|
|
||||||
= search_field_tag :search, params[:search], { placeholder: _('Filter by commit message'), id: 'commits-search', class: 'form-control search-text-input input-short', spellcheck: false }
|
|
||||||
.control
|
|
||||||
= link_to namespace_project_commits_path(@project.namespace, @project, @ref, rss_url_options), title: _("Commits feed"), class: 'btn' do
|
|
||||||
= icon("rss")
|
|
||||||
|
|
||||||
%div{ id: dom_id(@project) }
|
%div{ id: dom_id(@project) }
|
||||||
%ol#commits-list.list-unstyled.content_list
|
%ol#commits-list.list-unstyled.content_list
|
||||||
|
|
Loading…
Reference in a new issue