Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove the "autofocus" attribute from text inputs, to prevent CSS flashes. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
20e680aac75471dab7964f9f7944b58c |
| User & Date: | drh 2017-12-14 00:48:22.091 |
Context
|
2017-12-14
| ||
| 01:00 | Remove accidental edit from the previous check-in. ... (check-in: 976cad0829 user: drh tags: trunk) | |
| 00:48 | Remove the "autofocus" attribute from text inputs, to prevent CSS flashes. ... (check-in: 20e680aac7 user: drh tags: trunk) | |
| 00:25 | Fix default CSS so that it does not break a date string on the timeline at one of the "-" characters. ... (check-in: 1481ae1f9e user: drh tags: trunk) | |
Changes
Changes to src/search.c.
| ︙ | ︙ | |||
1070 1071 1072 1073 1074 1075 1076 |
case SRCH_TECHNOTE: zType = " Tech Notes"; zClass = "Note"; break;
}
if( srchFlags==0 ){
zDisable1 = " disabled";
zDisable2 = " disabled";
zPattern = "";
}else{
| | | 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
case SRCH_TECHNOTE: zType = " Tech Notes"; zClass = "Note"; break;
}
if( srchFlags==0 ){
zDisable1 = " disabled";
zDisable2 = " disabled";
zPattern = "";
}else{
zDisable1 = ""; // autofocus";
zDisable2 = "";
zPattern = PD("s","");
}
@ <form method='GET' action='%R/%T(g.zPath)'>
if( zClass ){
@ <div class='searchForm searchForm%s(zClass)'>
}else{
|
| ︙ | ︙ |
Changes to src/style.c.
| ︙ | ︙ | |||
505 506 507 508 509 510 511 |
@ <script src='%R/builtin/%s(zFile)?id=%S(MANIFEST_UUID)'></script>
}
/*
** Generate code to load all required javascript files.
*/
static void style_load_all_js_files(void){
| | | 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 |
@ <script src='%R/builtin/%s(zFile)?id=%S(MANIFEST_UUID)'></script>
}
/*
** Generate code to load all required javascript files.
*/
static void style_load_all_js_files(void){
if( needHrefJs || 1 ){
int nDelay = db_get_int("auto-hyperlink-delay",0);
int bMouseover;
/* Load up the page data */
bMouseover = (!g.isHuman || db_get_boolean("auto-hyperlink-ishuman",0))
&& db_get_boolean("auto-hyperlink-mouseover",0);
@ <script id='href-data' type='application/json'>\
@ {"delay":%d(nDelay),"mouseover":%d(bMouseover)}</script>
|
| ︙ | ︙ |