Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed how Selected Timeline rows are rendered. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | skin-xekri |
| Files: | files | file ages | folders |
| SHA1: |
d528f2bb9e08eaa8550736e0ff4f7631 |
| User & Date: | zakero 2015-02-28 13:29:12.671 |
Context
|
2015-03-03
| ||
| 14:42 | Add the Xekri skin. check-in: f05bfde912 user: drh tags: trunk | |
|
2015-02-28
| ||
| 13:29 | Fixed how Selected Timeline rows are rendered. Closed-Leaf check-in: d528f2bb9e user: zakero tags: skin-xekri | |
|
2015-02-26
| ||
| 02:52 | Copied the header.txt from the "eagle" skin. check-in: 84e7316761 user: zakero tags: skin-xekri | |
Changes
Changes to skins/xekri/css.txt.
| ︙ | ︙ | |||
666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
font-style: italic;
}
/* the format for the timeline data table */
table.timelineTable {
border: 0;
}
/* the format for the timeline data cells */
td.timelineTableCell {
padding: 0.3rem;
text-align: left;
vertical-align: top;
}
| > > > > > > > > > > > > > > > > > > > > > | 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 |
font-style: italic;
}
/* the format for the timeline data table */
table.timelineTable {
border: 0;
}
/* The row in the timeline table that contains the entry of interest */
tr.timelineSelected {
border: 1px solid #eee;
border-radius: 1rem;
}
tr.timelineSelected td.timelineTime
, tr.timelineSelected td.timelineTableCell {
background-color: #333;
box-shadow: 2px 2px 1px #000;
padding: 0.5rem;
}
tr.timelineSelected td.timelineTime {
border-radius: 1rem 0 0 1rem;
}
tr.timelineSelected td.timelineTableCell {
border-radius: 0 1rem 1rem 0;
}
/* the format for the timeline data cells */
td.timelineTableCell {
padding: 0.3rem;
text-align: left;
vertical-align: top;
}
|
| ︙ | ︙ |
Changes to src/skins.c.
| ︙ | ︙ | |||
46 47 48 49 50 51 52 |
{ "Plain Gray, No Logo", "plain_gray", 0, 0 },
{ "Khaki, No Logo", "khaki", 0, 0 },
{ "Black & White, Menu on Left", "black_and_white", 0, 0 },
{ "Shadow boxes & Rounded Corners", "rounded1", 0, 0 },
{ "Enhanced Default", "enhanced1", 0, 0 },
{ "San Francisco Modern", "etienne1", 0, 0 },
{ "Eagle", "eagle", 1, 0 },
| | | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
{ "Plain Gray, No Logo", "plain_gray", 0, 0 },
{ "Khaki, No Logo", "khaki", 0, 0 },
{ "Black & White, Menu on Left", "black_and_white", 0, 0 },
{ "Shadow boxes & Rounded Corners", "rounded1", 0, 0 },
{ "Enhanced Default", "enhanced1", 0, 0 },
{ "San Francisco Modern", "etienne1", 0, 0 },
{ "Eagle", "eagle", 1, 0 },
{ "Xekri", "xekri", 0, 0 },
};
/*
** Alternative skins can be specified in the CGI script or by options
** on the "http", "ui", and "server" commands. The alternative skin
** name must be one of the aBuiltinSkin[].zLabel names. If there is
** a match, that alternative is used.
|
| ︙ | ︙ |