1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Use CSS inset shorthand (#30939)

Use [inset](https://developer.mozilla.org/en-US/docs/Web/CSS/inset)
shorthand instead of longhands. There may be more cases but these ones I
was able to definitely identify.
This commit is contained in:
silverwind
2024-05-11 16:28:56 +02:00
committed by GitHub
parent 40de54ece8
commit 3c2406a2f3
3 changed files with 3 additions and 12 deletions

View File

@@ -20,10 +20,7 @@ Gitea's private styles use `g-` prefix.
.g-table-auto-ellipsis td.auto-ellipsis span {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
inset: 0;
padding: inherit;
white-space: nowrap;
overflow: hidden;