Merge pull request #20803 from overleaf/dp-resolved-comments-scroll

Add a max-height and scroll to tracked changes menu

GitOrigin-RevId: 93d4be0f057f4785a8d383f718078619467f3e2a
This commit is contained in:
David
2024-10-08 13:23:21 +01:00
committed by Copybot
parent e4848a9447
commit da7d0caa52

View File

@@ -140,11 +140,16 @@
border-bottom: 1px solid @rp-border-grey;
background-color: white;
text-align: center;
z-index: 4;
}
// TODO: Update this when we move the track changes menu to the new design
.rp-tc-state {
background-color: white;
max-height: calc(
100vh - var(--review-panel-top) - @review-panel-header-height
);
overflow-y: auto;
}
.review-panel-tools {