Fix sticky diff header background (#27697)

Fixes: https://github.com/go-gitea/gitea/issues/27604

Add negative margins so the header covers any shadow of active elements.
No rendering change of the content of the header because the padding
counteracts the effect.

<img width="128" alt="image"
src="https://github.com/go-gitea/gitea/assets/115237/3d0f55b6-9351-4985-a290-da9a92d15b4e">
pull/27704/head^2
silverwind 1 year ago committed by GitHub
parent 881806a50b
commit 4539a7b0b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      web_src/css/repo.css

@ -1497,7 +1497,8 @@
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 8; z-index: 8;
padding: 7px 0; padding: 7px 5px;
margin: 0 -5px; /* negative margin so it covers active file shadow */
height: 44px; /* this height should match sticky-2nd-row */ height: 44px; /* this height should match sticky-2nd-row */
background: var(--color-body); background: var(--color-body);
} }

Loading…
Cancel
Save