Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | /brlist: use background color change, instead of bold, for selected branches to avoid layout changes from the text changing size, as discussed in and around [forum:/forumpost/606cbfdff6 | forum post 606cbfdff6]. Background color is the same as timelineSelected for all skins except xekri, which needs a bit more contrast. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9322a0bc2042ccfe0a288af2cc2f2572 |
| User & Date: | stephan 2021-04-29 12:52:16.280 |
Context
|
2021-04-30
| ||
| 15:13 | de-minify the custom CSS for the bootstrap skin, so that it is readable and editable. ... (check-in: 95a7269142 user: drh tags: trunk) | |
|
2021-04-29
| ||
| 12:52 | /brlist: use background color change, instead of bold, for selected branches to avoid layout changes from the text changing size, as discussed in and around [forum:/forumpost/606cbfdff6 | forum post 606cbfdff6]. Background color is the same as timelineSelected for all skins except xekri, which needs a bit more contrast. ... (check-in: 9322a0bc20 user: stephan tags: trunk) | |
|
2021-04-28
| ||
| 20:23 | Updates to the change log. ... (check-in: 64edf41afe user: drh tags: trunk) | |
Changes
Changes to skins/ardoise/css.txt.
| ︙ | ︙ | |||
957 958 959 960 961 962 963 |
background: #442800
}
span.timelineSelected {
border-radius: 5px;
border: solid #ff8000;
vertical-align: top;
text-align: left;
| | | 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 |
background: #442800
}
span.timelineSelected {
border-radius: 5px;
border: solid #ff8000;
vertical-align: top;
text-align: left;
background-color: #442800;
}
.timelineSelected {
box-shadow: none;
}
.timelineSecondary {}
.timelineSecondary > .timelineColumnarCell,
.timelineSecondary > .timelineCompactCell,
|
| ︙ | ︙ | |||
1408 1409 1410 1411 1412 1413 1414 1415 |
background-color: #222;
}
.capsumRead {
background-color: #262;
}
.capsumWrite {
background-color: #662;
}
| > > > > | 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 |
background-color: #222;
}
.capsumRead {
background-color: #262;
}
.capsumWrite {
background-color: #662;
}
body.branch .brlist > table > tbody > tr:hover:not(.selected),
body.branch .brlist > table > tbody > tr.selected {
background-color: #442800;
}
|
Changes to skins/darkmode/css.txt.
| ︙ | ︙ | |||
551 552 553 554 555 556 557 |
overflow-x: auto;
}
body.report table.report tr td { color: black }
body.report table.report a { color: blue }
body.tkt td.tktDspValue { color: black }
body.tkt td.tktDspValue a { color: blue }
| > > > > > | 551 552 553 554 555 556 557 558 559 560 561 562 |
overflow-x: auto;
}
body.report table.report tr td { color: black }
body.report table.report a { color: blue }
body.tkt td.tktDspValue { color: black }
body.tkt td.tktDspValue a { color: blue }
body.branch .brlist > table > tbody > tr:hover:not(.selected),
body.branch .brlist > table > tbody > tr.selected {
background-color: #442800;
}
|
Changes to skins/eagle/css.txt.
| ︙ | ︙ | |||
431 432 433 434 435 436 437 |
}
.capsumRead {
background-color: #006d00;
}
.capsumWrite {
background-color: #e5e500;
}
| > > > > > | 431 432 433 434 435 436 437 438 439 440 441 442 |
}
.capsumRead {
background-color: #006d00;
}
.capsumWrite {
background-color: #e5e500;
}
body.branch .brlist > table > tbody > tr:hover:not(.selected),
body.branch .brlist > table > tbody > tr.selected {
background-color: #7EA2D9;
}
|
Changes to skins/xekri/css.txt.
| ︙ | ︙ | |||
1136 1137 1138 1139 1140 1141 1142 |
padding: 0 0.5em;
border-radius: 0.25em;
}
.debug {
color: black;
}
| > > > > > | 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 |
padding: 0 0.5em;
border-radius: 0.25em;
}
.debug {
color: black;
}
body.branch .brlist > table > tbody > tr:hover:not(.selected),
body.branch .brlist > table > tbody > tr.selected {
background-color: #444;
}
|
Changes to src/default.css.
| ︙ | ︙ | |||
1771 1772 1773 1774 1775 1776 1777 |
max-height: 45%;
}
input[type="checkbox"].diff-toggle {
float: right;
}
| | | | 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 |
max-height: 45%;
}
input[type="checkbox"].diff-toggle {
float: right;
}
body.branch .brlist > table > tbody > tr:hover:not(.selected),
body.branch .brlist > table > tbody > tr.selected {
background-color: #ffc;
}
body.branch .brlist > table > tbody td:first-child > input {
cursor: pointer;
}
body.branch .brlist > table > tbody > tr > td:nth-child(1) {
display: flex;
flex-direction: row;
|
| ︙ | ︙ |