Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Futher adjustments to the default CSS for timeline selection and "current". |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f9fc914eaef2c9e7a806b16c13847357 |
| User & Date: | drh 2017-11-29 16:20:29.711 |
Context
|
2017-11-29
| ||
| 19:18 | Generate the big cssDefaultList table in the middle of style.c using default_css.txt as the source. The default_css.txt file will be easier to understand, edit, and comment. ... (check-in: 5c9c51be5f user: drh tags: trunk) | |
| 16:20 | Futher adjustments to the default CSS for timeline selection and "current". ... (check-in: f9fc914eae user: drh tags: trunk) | |
| 16:06 | Adjustments to the default CSS for timeline tables to better display the selected row. ... (check-in: 5beb361496 user: drh tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
777 778 779 780 781 782 783 |
},
{ "span.disabled",
"The defined element in sideboxes for branches,..",
@ color: red;
},
{ "table.timelineTable",
"The table that holds a timeline",
| | | > > > > > | 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 |
},
{ "span.disabled",
"The defined element in sideboxes for branches,..",
@ color: red;
},
{ "table.timelineTable",
"The table that holds a timeline",
@ border-spacing: 0px 2px;
},
{ "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",
"The row in the timeline table that contains the entry of interest",
@ padding: .1em .2em;
@ border: 2px solid lightgray;
@ background-color: #ffc;
@ box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
},
{ "tr.timelineSelected td",
"Cells within a selected row of a timeline",
@ border-radius: 0;
@ border-width: 0;
},
{ "tr.timelineCurrent td",
"Cells within a selected row of a timeline",
@ border-radius: 0;
@ border-width: 0;
},
{ "tr.timelineSpacer",
"An extra row inserted to give vertical space between two rows",
@ height: 1ex;
},
{ "span.timelineLeaf",
"the format for the timeline leaf marks",
|
| ︙ | ︙ |