Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the default CSS for the timelineDetailCell column in the Columnar View. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
92bcce3325f26da0c654ddd2fa5b5671 |
| User & Date: | drh 2017-12-12 00:01:05.150 |
Context
|
2017-12-12
| ||
| 10:43 | Fix the download links on the /info page ... (check-in: dbc702cdc1 user: drh tags: trunk) | |
| 00:01 | Fix the default CSS for the timelineDetailCell column in the Columnar View. ... (check-in: 92bcce3325 user: drh tags: trunk) | |
|
2017-12-11
| ||
| 23:51 | Timeline styling changes: (1) The td.timelineModernCell and td.timelineColumnarCell elements omit the id attribute when they are the current check-out or the selection. (2) Default CSS is changed to give a light-gray color to modern and columnar cells that are not current or selected and do not have a branch color. (3) The detail string in the verbose and compact views is now surrounded by parentheses. ... (check-in: 99057f278c user: drh tags: trunk) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
75 76 77 78 79 80 81 |
}
.timelineModernCell, .timelineColumnarCell, .timelineDetailCell {
vertical-align: top;
text-align: left;
padding: 0.75em;
border-radius: 1em;
}
| | | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
}
.timelineModernCell, .timelineColumnarCell, .timelineDetailCell {
vertical-align: top;
text-align: left;
padding: 0.75em;
border-radius: 1em;
}
.timelineModernCell[id], .timelineColumnarCell[id], .timelineDetailCell[id] {
background-color: #efefef;
}
.timelineModernDetail {
font-size: 80%;
text-align: right;
float: right;
opacity: 0.75;
|
| ︙ | ︙ |