Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Use rgba(0,0,0,0.5) instead of #888 to implement 50% shadow so that the shadow works even against a colored or dark background |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
f23ccc89cecaf2e18d96dd93adf14113 |
| User & Date: | andygoth 2016-11-07 02:12:43.953 |
Context
|
2016-11-07
| ||
| 04:06 | Use disjoint timelines when filtering by the chng timeline query parameter ... (check-in: e7bdbbe435 user: andygoth tags: trunk) | |
| 02:12 | Use rgba(0,0,0,0.5) instead of #888 to implement 50% shadow so that the shadow works even against a colored or dark background ... (check-in: f23ccc89ce user: andygoth tags: trunk) | |
| 02:00 | CSS corrections for checkboxes ... (check-in: 446d438ee0 user: andygoth tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
719 720 721 722 723 724 725 |
@ vertical-align: top;
@ text-align: left;
},
{ "tr.timelineCurrent",
"the format for the timeline data cell of the current checkout",
@ padding: .1em .2em;
@ border: 1px dashed #446979;
| | | | 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 |
@ vertical-align: top;
@ text-align: left;
},
{ "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",
"The row in the timeline table that contains the entry of interest",
@ padding: .1em .2em;
@ border: 2px solid lightgray;
@ background-color: #ffc;
@ box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5);
},
{ "tr.timelineSpacer",
"An extra row inserted to give vertical space between two rows",
@ height: 1ex;
},
{ "span.timelineLeaf",
"the format for the timeline leaf marks",
|
| ︙ | ︙ |