Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Incorporate the latest changes to the "San Francisco Modern" skin. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
be5b69862c8156149e701aabb46f0c09 |
| User & Date: | drh 2015-01-23 18:34:04.270 |
Context
|
2015-01-23
| ||
| 18:43 | Enable ZIP and Tarball downloads for user "nobody" by default, since the other anti-spider defenses seem to work well enough to prevent abuse. check-in: 68ce0bcf62 user: drh tags: trunk | |
| 18:34 | Incorporate the latest changes to the "San Francisco Modern" skin. check-in: be5b69862c user: drh tags: trunk | |
| 17:57 | Slightly 'improve' summary line for push/pull/sync operations. check-in: 942dd0bb08 user: mistachkin tags: trunk | |
Changes
Changes to skins/etienne1/css.txt.
| ︙ | ︙ | |||
57 58 59 60 61 62 63 |
.mainmenu a.active,
.mainmenu a:hover {
color: #000;
border-bottom:2px solid #D26911;
}
.submenu {
| | | | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
.mainmenu a.active,
.mainmenu a:hover {
color: #000;
border-bottom:2px solid #D26911;
}
.submenu {
font-size: .7em;
margin-top: 10px;
padding: 10px;
border-bottom: 1px solid #ccc;
}
.submenu a {
padding: 10px;
text-decoration:none;
color: #777;
}
.submenu a:hover {
border: 1px solid #ccc;
border-bottom: 1px solid #fff;
|
| ︙ | ︙ |
Changes to src/skins.c.
| ︙ | ︙ | |||
43 44 45 46 47 48 49 |
} aBuiltinSkin[] = {
{ "Default", "default", 0 },
{ "Plain Gray, No Logo", "plain_gray", 0 },
{ "Khaki, No Logo", "khaki", 0 },
{ "Black & White, Menu on Left", "black_and_white", 0 },
{ "Shadow boxes & Rounded Corners", "rounded1", 0 },
{ "Enhanced Default", "enhanced1", 0 },
| | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
} aBuiltinSkin[] = {
{ "Default", "default", 0 },
{ "Plain Gray, No Logo", "plain_gray", 0 },
{ "Khaki, No Logo", "khaki", 0 },
{ "Black & White, Menu on Left", "black_and_white", 0 },
{ "Shadow boxes & Rounded Corners", "rounded1", 0 },
{ "Enhanced Default", "enhanced1", 0 },
{ "San Francisco Modern", "etienne1", 0 },
};
/*
** For a skin named zSkinName, compute the name of the CONFIG table
** entry where that skin is stored and return it.
**
** Return NULL if zSkinName is NULL or an empty string.
|
| ︙ | ︙ |