loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request '[port] Improve CSV rendering (gitea#29638)' (#2687) from algernon/forgejo:gitea/port/29638 into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2687
Reviewed-by: Gusted <gusted@noreply.codeberg.org>

+16 -1
+16 -1
web_src/css/repo.css
··· 1432 1432 border: 1px solid var(--color-secondary); 1433 1433 } 1434 1434 1435 + /* the border css competes with .markup where all tables have outer border which would add a double 1436 + border here, remove only the outer borders from this table */ 1437 + .repository .data-table tr:first-child :is(td,th) { 1438 + border-top: none !important; 1439 + } 1440 + .repository .data-table tr:last-child :is(td,th) { 1441 + border-bottom: none !important; 1442 + } 1443 + .repository .data-table tr :is(td,th):first-child { 1444 + border-left: none !important; 1445 + } 1446 + .repository .data-table tr :is(td,th):last-child { 1447 + border-right: none !important; 1448 + } 1449 + 1435 1450 .repository .data-table td { 1436 1451 white-space: pre-line; 1437 1452 } ··· 1469 1484 min-width: 50px; 1470 1485 font-family: monospace; 1471 1486 line-height: 20px; 1472 - color: var(--color-secondary-dark-2); 1487 + color: var(--color-text-light-1); 1473 1488 white-space: nowrap; 1474 1489 vertical-align: top; 1475 1490 cursor: pointer;