Merge pull request #21120 from overleaf/dp-overview-entry-gap

Adjust size of gap between review panel entries to 4px

GitOrigin-RevId: a09a6fde0e8eb15e0c753e436a1c09434581d6d8
This commit is contained in:
David 2024-10-21 09:54:49 +01:00 committed by Copybot
parent af7e388c41
commit efa376f4f4
3 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,7 @@ import { debounce } from 'lodash'
const COLLAPSED_HEADER_HEIGHT = 75
const OFFSET_FOR_ENTRIES_ABOVE = 70
const GAP_BETWEEN_ENTRIES = 4
export const positionItems = debounce(
(
@ -62,7 +63,7 @@ export const positionItems = debounce(
let top = getTopPosition(item, i === 0)
const bottom = top + rect.height
if (bottom > topLimit) {
top = topLimit - rect.height - 10
top = topLimit - rect.height - GAP_BETWEEN_ENTRIES
}
item.style.top = `${top}px`
item.style.visibility = 'visible'
@ -76,7 +77,7 @@ export const positionItems = debounce(
const rect = item.getBoundingClientRect()
let top = getTopPosition(item, false)
if (top < bottomLimit) {
top = bottomLimit + 10
top = bottomLimit + GAP_BETWEEN_ENTRIES
}
item.style.top = `${top}px`
item.style.visibility = 'visible'

View file

@ -448,6 +448,9 @@
}
.review-panel-overview-file-entries {
display: flex;
flex-direction: column;
gap: 4px;
overflow: hidden;
padding-top: 4px;
padding-bottom: 6px;

View file

@ -461,6 +461,9 @@
}
.review-panel-overview-file-entries {
display: flex;
flex-direction: column;
gap: var(--spacing-02);
overflow: hidden;
padding-top: var(--spacing-02);
padding-bottom: var(--spacing-03);