Merge branch '48603-merge-request-refactor-title-and-copy-to-clipboard-button-are-behind-the-action-buttons' into 'master'
Resolve "Merge request refactor: Title and copy to clipboard button are behind the action buttons" Closes #48603 See merge request gitlab-org/gitlab-ce!20274
This commit is contained in:
commit
016707e4e7
3 changed files with 28 additions and 9 deletions
|
@ -201,7 +201,7 @@ export default {
|
|||
|
||||
<div
|
||||
v-if="!diffFile.submodule && addMergeRequestButtons"
|
||||
class="file-actions d-none d-md-block"
|
||||
class="file-actions d-none d-sm-block"
|
||||
>
|
||||
<template
|
||||
v-if="diffFile.blob && diffFile.blob.readableText"
|
||||
|
|
|
@ -322,14 +322,17 @@ span.idiff {
|
|||
}
|
||||
|
||||
.file-title-flex-parent {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background-color: $gray-light;
|
||||
border-bottom: 1px solid $border-color;
|
||||
padding: 5px $gl-padding;
|
||||
margin: 0;
|
||||
border-radius: $border-radius-default $border-radius-default 0 0;
|
||||
&,
|
||||
.file-holder & {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
background-color: $gray-light;
|
||||
border-bottom: 1px solid $border-color;
|
||||
padding: 5px $gl-padding;
|
||||
margin: 0;
|
||||
border-radius: $border-radius-default $border-radius-default 0 0;
|
||||
}
|
||||
|
||||
.file-header-content {
|
||||
white-space: nowrap;
|
||||
|
@ -337,6 +340,17 @@ span.idiff {
|
|||
text-overflow: ellipsis;
|
||||
padding-right: 30px;
|
||||
position: relative;
|
||||
width: auto;
|
||||
|
||||
@media (max-width: map-get($grid-breakpoints, sm)-1) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.file-holder & {
|
||||
.file-actions {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-clipboard {
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Fix overlapping file title and file actions in MR changes tag
|
||||
merge_request:
|
||||
author:
|
||||
type: fixed
|
Loading…
Reference in a new issue