Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Prevent the cell background colors from extending beyond the outer rounded borders of the diff table in WebKit-based browsers. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b666bbc54d746e3ac141d0c0166048bf |
| User & Date: | florian 2025-09-26 12:48:00.000 |
Context
|
2025-09-26
| ||
| 13:36 | Bring the built-in SQLite and the regexp implementation into alignment with upstream. ... (check-in: 9642cde384 user: drh tags: trunk) | |
| 12:58 | Sync with trunk. ... (check-in: c321b7e490 user: florian tags: standard-cli-colors) | |
| 12:57 | Sync with trunk. ... (check-in: 779fe3e1b2 user: florian tags: diff-word-wrap) | |
| 12:53 | Sync with trunk. ... (check-in: f3ff04466d user: florian tags: diff-keyboard-navigation) | |
| 12:50 | Sync with trunk. ... (check-in: 9cea672b5d user: florian tags: timeline-keyboard-navigation) | |
| 12:48 | Prevent the cell background colors from extending beyond the outer rounded borders of the diff table in WebKit-based browsers. ... (check-in: b666bbc54d user: florian tags: trunk) | |
| 11:58 | Add the -h option to the "ls" command to display file hashes for a specific check-in when in verbose mode. ... (check-in: 4c0ff6ed62 user: danield tags: trunk) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
558 559 560 561 562 563 564 565 566 567 568 569 570 571 |
/* Rules governing diff layout and colors */
table.diff {
width: 100%;
border-spacing: 0;
border-radius: 5px;
border: 1px solid black;
font-size: 80%;
}
table.diff td.diffln{
padding: 0;
}
table.diff td.diffln > pre{
padding: 0 0.25em 0 0.5em;
| > | 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 |
/* Rules governing diff layout and colors */
table.diff {
width: 100%;
border-spacing: 0;
border-radius: 5px;
border: 1px solid black;
overflow: hidden; /* Prevent background from overlapping rounded borders. */
font-size: 80%;
}
table.diff td.diffln{
padding: 0;
}
table.diff td.diffln > pre{
padding: 0 0.25em 0 0.5em;
|
| ︙ | ︙ |