Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the default CSS so that the cursor is a pointer over the timeline check-in comment and the following ellipsis, as a hint to that one can click on those elements. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b39ad68f7c53f6f9f06221f95982795f |
| User & Date: | drh 2017-11-26 11:14:54.824 |
Context
|
2017-11-26
| ||
| 15:47 | Use three U+002e characters to form the ellipsis in timelines, rather than the U+22ef, since some browsers do not know how to render U+22ef. ... (check-in: 1b78291f08 user: drh tags: trunk) | |
| 11:14 | Change the default CSS so that the cursor is a pointer over the timeline check-in comment and the following ellipsis, as a hint to that one can click on those elements. ... (check-in: b39ad68f7c user: drh tags: trunk) | |
| 02:23 | Clicking on the ellipsis expands the (detail) section in a timeline. ... (check-in: a794d858ec user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
828 829 830 831 832 833 834 835 836 837 838 839 840 841 |
@ font-weight: bold;
},
{ "td.timelineTime",
"the format for the timeline time display",
@ vertical-align: top;
@ text-align: right;
@ white-space: nowrap;
},
{ "td.timelineGraph",
"the format for the graph placeholder cells in timelines",
@ width: 20px;
@ text-align: left;
@ vertical-align: top;
},
| > > > > > > > > > > > > > > | 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 |
@ font-weight: bold;
},
{ "td.timelineTime",
"the format for the timeline time display",
@ vertical-align: top;
@ text-align: right;
@ white-space: nowrap;
},
{ "td.timelineGraph",
"the format for the graph placeholder cells in timelines",
@ width: 20px;
@ text-align: left;
@ vertical-align: top;
},
{ "span.timelineComment",
"The check-in comment text in a timeline",
@ cursor: pointer;
},
{ "span.timelineEllipsis",
"The ellipsis mark at the end of a check-in comment in a timeline",
@ cursor: pointer;
},
{ "td.timelineGraph",
"the format for the graph placeholder cells in timelines",
@ width: 20px;
@ text-align: left;
@ vertical-align: top;
},
|
| ︙ | ︙ |