Merge branch '26447-fix-tab-list-order' into 'master'
Fixed tab index order on branch commits list page Closes #26447 See merge request !8489
This commit is contained in:
commit
d55839120e
3 changed files with 19 additions and 4 deletions
|
@ -82,7 +82,12 @@
|
|||
}
|
||||
|
||||
.block-controls {
|
||||
float: right;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
-webkit-justify-content: flex-end;
|
||||
justify-content: flex-end;
|
||||
-webkit-flex: 1;
|
||||
flex: 1;
|
||||
|
||||
.control {
|
||||
float: left;
|
||||
|
@ -282,3 +287,8 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.flex-container-block {
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
}
|
||||
|
|
|
@ -9,10 +9,13 @@
|
|||
= render "head"
|
||||
|
||||
%div{ class: container_class }
|
||||
.row-content-block.second-block.content-component-block
|
||||
.row-content-block.second-block.content-component-block.flex-container-block
|
||||
.tree-ref-holder
|
||||
= render 'shared/ref_switcher', destination: 'commits'
|
||||
|
||||
%ul.breadcrumb.repo-breadcrumb
|
||||
= commits_breadcrumbs
|
||||
|
||||
.block-controls.hidden-xs.hidden-sm
|
||||
- if @merge_request.present?
|
||||
.control
|
||||
|
@ -30,8 +33,6 @@
|
|||
.control
|
||||
= link_to namespace_project_commits_path(@project.namespace, @project, @ref, { format: :atom, private_token: current_user.private_token }), title: "Commits Feed", class: 'btn' do
|
||||
= icon("rss")
|
||||
%ul.breadcrumb.repo-breadcrumb
|
||||
= commits_breadcrumbs
|
||||
|
||||
%div{ id: dom_id(@project) }
|
||||
%ol#commits-list.list-unstyled.content_list
|
||||
|
|
4
changelogs/unreleased/26447-fix-tab-list-order.yml
Normal file
4
changelogs/unreleased/26447-fix-tab-list-order.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Fix tab index order on branch commits list page
|
||||
merge_request:
|
||||
author: Ryan Harris
|
Loading…
Reference in a new issue