Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Restore the diamond symbol as the default 'not sorted' column indicator. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
379ce043c16d80823438a5eedcdf80f6 |
| User & Date: | mistachkin 2015-01-08 19:46:28.820 |
Context
|
2015-01-10
| ||
| 02:54 | Abort clone if we don't get the full payload until we have a better way to handle partial clones. ... (check-in: e1893dc6ab user: andybradford tags: trunk) | |
|
2015-01-08
| ||
| 19:46 | Restore the diamond symbol as the default 'not sorted' column indicator. ... (check-in: 379ce043c1 user: mistachkin tags: trunk) | |
| 17:38 | Update referenced OpenSSL version. ... (check-in: 6c484ec392 user: mistachkin tags: trunk) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 |
@ padding: 0px 2em 0px 0px;
},
{ "th.sort:after",
"General styles for sortable column marker",
@ margin-left: .4em;
@ cursor: pointer;
@ text-shadow: 0 0 0 #000; /* Makes arrow darker */
},
{ "th.sort.asc:after",
"Ascending sort column marker",
@ content: '\2193';
},
{ "th.sort.desc:after",
"Descending sort column marker",
| > > > > | 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 |
@ padding: 0px 2em 0px 0px;
},
{ "th.sort:after",
"General styles for sortable column marker",
@ margin-left: .4em;
@ cursor: pointer;
@ text-shadow: 0 0 0 #000; /* Makes arrow darker */
},
{ "th.sort.none:after",
"None sort column marker",
@ content: '\2666';
},
{ "th.sort.asc:after",
"Ascending sort column marker",
@ content: '\2193';
},
{ "th.sort.desc:after",
"Descending sort column marker",
|
| ︙ | ︙ |