Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Another line-height tweak for the diff view to keep underscores from being truncated in Chromium. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ebf69b498e00afb6b6cd95eefa95d6f5 |
| User & Date: | stephan 2021-09-28 11:51:16.814 |
Context
|
2021-09-28
| ||
| 12:09 | Query column miscount fix for (wiki list -t) as reported in [forum:5e6c3e3b78112df3]. ... (check-in: 3a2b13b8d0 user: stephan tags: trunk) | |
| 11:51 | Another line-height tweak for the diff view to keep underscores from being truncated in Chromium. ... (check-in: ebf69b498e user: stephan tags: trunk) | |
| 09:45 | Moved chat.js to fossil.page.chat.js, for consistency with the other single-page apps and to emphasize that it is not to be loaded on arbitrary pages. Changed chat's startup to wait until the page on-load event to avoid a related timing issue. ... (check-in: 3ec8c6c04d user: stephan tags: trunk) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
551 552 553 554 555 556 557 |
vertical-align: top;
padding: 0;
overflow: hidden /*work around inner PRE slight overflow/overlap*/;
}
table.diff pre {
margin: 0 0 0 0;
padding: 0 0.5em;
| | | 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 |
vertical-align: top;
padding: 0;
overflow: hidden /*work around inner PRE slight overflow/overlap*/;
}
table.diff pre {
margin: 0 0 0 0;
padding: 0 0.5em;
line-height: 1.275/*for mobile: forum post e6f4ee7de98b55c0*/;
text-size-adjust: none
/* ^^^ attempt to keep mobile from inflating some text */;
}
table.diff pre > ins,
table.diff pre > del {
/* Fill platform-dependent color gaps caused by
inflated line-height */;
|
| ︙ | ︙ |