Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove the "border-collapse: collapse;" default CSS from the /timeline. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | sticky-timeline-style |
| Files: | files | file ages | folders |
| SHA3-256: |
926a5a38df94e13df51e0c4cad92fad7 |
| User & Date: | drh 2017-11-29 02:59:03.189 |
Context
|
2017-11-29
| ||
| 03:41 | In "Verbose" mode, put the hash up front, as was done with legacy. ... (check-in: 59980b6082 user: drh tags: sticky-timeline-style) | |
| 02:59 | Remove the "border-collapse: collapse;" default CSS from the /timeline. ... (check-in: 926a5a38df user: drh tags: sticky-timeline-style) | |
| 02:48 | Fixes to default styling. ... (check-in: e814b1e583 user: drh tags: sticky-timeline-style) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
780 781 782 783 784 785 786 |
@ color: red;
},
{ "span.timelineDisabled",
"The suppressed duplicates lines in timeline, ..",
@ font-style: italic;
@ font-size: small;
},
| < < < < < | 780 781 782 783 784 785 786 787 788 789 790 791 792 793 |
@ color: red;
},
{ "span.timelineDisabled",
"The suppressed duplicates lines in timeline, ..",
@ font-style: italic;
@ font-size: small;
},
{ "tr.timelineCurrent",
"the format for the timeline data cell of the current checkout",
@ padding: .1em .2em;
@ border: 1px dashed #446979;
@ box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
},
{ "tr.timelineSelected",
|
| ︙ | ︙ |
Changes to src/timeline.c.
| ︙ | ︙ | |||
1742 1743 1744 1745 1746 1747 1748 |
if( (zTagSql && db_int(0,"SELECT count(*) "
"FROM tagxref NATURAL JOIN tag WHERE %s",zTagSql/*safe-for-%s*/)<=nEntry)
){
nEntry = -1;
zCirca = 0;
}
switch( cViewStyle ){
| < > | 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 |
if( (zTagSql && db_int(0,"SELECT count(*) "
"FROM tagxref NATURAL JOIN tag WHERE %s",zTagSql/*safe-for-%s*/)<=nEntry)
){
nEntry = -1;
zCirca = 0;
}
switch( cViewStyle ){
case 'c': tmFlags |= TIMELINE_COMPACT; break;
case 'v': tmFlags |= TIMELINE_VERBOSE; break;
case 'j': tmFlags |= TIMELINE_COLUMNAR; break;
default: tmFlags |= TIMELINE_NORMAL; break;
}
if( zType[0]=='a' ){
tmFlags |= TIMELINE_BRIEF | TIMELINE_GRAPH;
}else{
tmFlags |= TIMELINE_GRAPH;
}
if( PB("ng") || zSearch!=0 ){
|
| ︙ | ︙ |