Commit b4a3ed33 authored by Phil Hughes's avatar Phil Hughes

Merge branch '233002-diff-file-input-cutoff' into 'master'

Fix top position of diff file search

Closes #233002

See merge request gitlab-org/gitlab!40634
parents bb004536 048d0cba
......@@ -468,7 +468,7 @@ export default {
<div
:data-can-create-note="getNoteableData.current_user.can_create_note"
class="files d-flex"
class="files d-flex gl-mt-2"
>
<div
v-if="showTreeList"
......
......@@ -1062,7 +1062,7 @@ table.code {
.diff-tree-list {
position: -webkit-sticky;
position: sticky;
$top-pos: $header-height + $mr-tabs-height + $mr-version-controls-height + 11px;
$top-pos: $header-height + $mr-tabs-height + $mr-version-controls-height + 15px;
top: $top-pos;
max-height: calc(100vh - #{$top-pos});
z-index: 202;
......
---
title: Fix file file input top position cutoff
merge_request: 40634
author:
type: fixed
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