Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the default CSS diff coloring, broken by check-in [5c9c51be5f033de2] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3b988301c77b2ef52fc4a862073cfc36 |
| User & Date: | drh 2017-11-30 11:34:16.680 |
Context
|
2017-11-30
| ||
| 11:50 | eliminate unused variables ... (check-in: c699e9fedf user: jan.nijtmans tags: trunk) | |
| 11:34 | Fix the default CSS diff coloring, broken by check-in [5c9c51be5f033de2] ... (check-in: 3b988301c7 user: drh tags: trunk) | |
| 10:15 | Eliminate fossil_utf8_to_console() for non-windows platforms: it isn't used then. Thanks to "bytevolcano" for the suggestion. ... (check-in: 434adc35fc user: jan.nijtmans tags: trunk) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
499 500 501 502 503 504 505 506 507 508 509 510 511 512 |
div.difftxtcol {
width: 45em;
overflow-x: auto;
}
div.diffmkrcol {
padding: 0 1em;
}
span.diffhr {
display: inline-block;
margin: .5em 0 1em;
color: #0000ff;
}
span.diffln {
color: #a0a0a0;
| > > > > > > > > > | 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 |
div.difftxtcol {
width: 45em;
overflow-x: auto;
}
div.diffmkrcol {
padding: 0 1em;
}
span.diffchng {
background-color: #c0c0ff;
}
span.diffadd {
background-color: #c0ffc0;
}
span.diffrm {
background-color: #ffc8c8;
}
span.diffhr {
display: inline-block;
margin: .5em 0 1em;
color: #0000ff;
}
span.diffln {
color: #a0a0a0;
|
| ︙ | ︙ |