Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Omit the blurbs from sponsor icons. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | new-sponsors-layout |
Files: | files | file ages | folders |
SHA1: |
f42cb2d82f8b1d5a1db6474f975fbe1d |
User & Date: | drh 2015-12-09 11:50:38.523 |
Context
2015-12-09
| ||
11:51 | Merge the revised sponsor icon layout into trunk. (check-in: 7251ac0674 user: drh tags: trunk) | |
11:50 | Omit the blurbs from sponsor icons. (Closed-Leaf check-in: f42cb2d82f user: drh tags: new-sponsors-layout) | |
03:53 | Further experiments with a new look for the sponsors on the homepage. (check-in: 66f30d5788 user: drh tags: new-sponsors-layout) | |
Changes
Changes to pages/index.in.
1 2 3 | <title>SQLite Home Page</title> <table border="0" width="100%"> | | | 1 2 3 4 5 6 7 8 9 10 11 | <title>SQLite Home Page</title> <table border="0" width="100%"> <tr><td valign="top" width="65%"> <p>SQLite is a software library that implements a <a href="selfcontained.html">self-contained</a>, <a href="serverless.html">serverless</a>, <a href="zeroconf.html">zero-configuration</a>, <a href="transactional.html">transactional</a> SQL database engine. SQLite is the [most widely deployed] |
︙ | ︙ | |||
65 66 67 68 69 70 71 | var htxt = ""; while( count>0 ){ i = Math.floor(Math.random()*len) if( sponsors[i]!=null ){ if( sponsors[i].size==null ) sponsors[i].size = ""; var x = ((++n)%2)==1; if( x ) htxt += "<tr>\n"; | | | < | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | var htxt = ""; while( count>0 ){ i = Math.floor(Math.random()*len) if( sponsors[i]!=null ){ if( sponsors[i].size==null ) sponsors[i].size = ""; var x = ((++n)%2)==1; if( x ) htxt += "<tr>\n"; htxt += "<td align='center'>\n"+ "<a href='"+sponsors[i].url+"'><img src='images/foreignlogos/"+sponsors[i].image+ "' "+sponsors[i].size+" border='0' alt='"+sponsors[i].name+"'></a></td>"; sponsors[i] = null count-- } } document.write(htxt) </script> }</tcl> |
︙ | ︙ |
Changes to wrap.tcl.
︙ | ︙ | |||
427 428 429 430 431 432 433 | .menubar { clear: both; border-radius: 8px; background: #044a64; padding: 0px; margin: 0px; cell-spacing: 0px; | < < < < < < < < < < < < < < < < < | 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 | .menubar { clear: both; border-radius: 8px; background: #044a64; padding: 0px; margin: 0px; cell-spacing: 0px; } .toolbar { text-align: center; line-height: 1.6em; margin: 0; padding: 0px 8px; } .toolbar a { color: white; text-decoration: none; padding: 6px 12px; } .toolbar a:visited { color: white; } .toolbar a:hover { color: #044a64; background: white; } .content { margin: 5%; } .content dt { font-weight:bold; } .content dd { margin-bottom: 25px; margin-left:20%; } .content ul { padding:0px; padding-left: 15px; margin:0px; } /* Things for "fancyformat" documents start here. */ .fancy img+p {font-style:italic} .fancy .codeblock i { color: darkblue; } .fancy h1,.fancy h2,.fancy h3,.fancy h4 {font-weight:normal;color:#044a64} .fancy h2 { margin-left: 10px } .fancy h3 { margin-left: 20px } |
︙ | ︙ |