Fossil

Check-in [f25a987bae]
Login

Check-in [f25a987bae]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Added just a tiny bit of left/right padding on the new diff tables so that the line numbers don't run right up to the edge of the border.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f25a987bae16900be7f17858c7e2e62296b454aaf48f86dcc08c16e78559f18e
User & Date: stephan 2021-09-05 19:31:42.735
Context
2021-09-05
20:54
Further improvements to diff alignment. ... (check-in: e5b1c70e2a user: drh tags: trunk)
19:31
Added just a tiny bit of left/right padding on the new diff tables so that the line numbers don't run right up to the edge of the border. ... (check-in: f25a987bae user: stephan tags: trunk)
19:16
Add a #define for the diff block alignment algorithm threshold. ... (check-in: 0a4ae4408e user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/default.css.
533
534
535
536
537
538
539

540
541
542
543
544
545
546
}

/* Rules governing diff layout and colors */
table.diff {
  width: 98%;
  border-spacing: 0;
  border: 1px solid black;

}
table.diff td {
  vertical-align: top;
}
table.diff pre {
  margin: 0 0 0 0;
}







>







533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
}

/* Rules governing diff layout and colors */
table.diff {
  width: 98%;
  border-spacing: 0;
  border: 1px solid black;
  padding: 0 0.5em;
}
table.diff td {
  vertical-align: top;
}
table.diff pre {
  margin: 0 0 0 0;
}