Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Modify the method used to round the corners of the toolbar. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
78925c45be0833fb6f526fe37cd4f08f |
User & Date: | anonymous 2007-11-13 16:26:55.000 |
Context
2007-11-13
| ||
18:28 | Merge in the rounded-corner fix. (check-in: a7401a13cd user: drh tags: trunk) | |
16:26 | Modify the method used to round the corners of the toolbar. (check-in: 78925c45be user: anonymous tags: trunk) | |
15:08 | Fix the lang.html document. (check-in: a7f37fc58d user: drh tags: trunk) | |
Changes
Changes to wrap.tcl.
︙ | ︙ | |||
69 70 71 72 73 74 75 | font-style:italic; width:240px; margin:12px; margin-top:58px; } .toolbar { | < < < | < < < | < | < | < | | > > | | | | | | | | | | < < < | > | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | font-style:italic; width:240px; margin:12px; margin-top:58px; } .toolbar { font-variant: small-caps; text-align: center; line-height: 1.6em; margin: 0; padding:1px 8px; } .toolbar a { color: white; text-decoration: none; padding: 6px 4px; } .toolbar a:visited { color: white; } .toolbar a:hover { color: #80a796; 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; } /* rounded corners */ .se { background: url(images/se.png) 100% 100% no-repeat #80a796 } .sw { background: url(images/sw.png) 0% 100% no-repeat } .ne { background: url(images/ne.png) 100% 0% no-repeat } .nw { background: url(images/nw.png) 0% 0% no-repeat } </style> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> } puts {</head>} putsin4 {<body> <div><!-- container div to satisfy validator --> <img class="logo" src="${relpath}images/SQLite.gif" alt="SQLite Logo"> <div><!-- IE hack to prevent disappearing logo--></div> <div class="tagline">The World's Most Widely Used SQL Database.</div> <table width=100% style="clear:both"><tr><td> <div class="se"><div class="sw"><div class="ne"><div class="nw"> <div class="toolbar"> <a href="${relpath}index.html">Home</a> <a href="${relpath}about.html">About</a> <a href="${relpath}docs.html">Documentation</a> <a href="${relpath}download.html">Download</a> <a href="${relpath}copyright.html">License</a> <a href="${relpath}press.html">Advocacy</a> <a href="${relpath}devhome.html">Developers</a> <a href="${relpath}news.html">News</a> <a href="${relpath}support.html">Support</a> </div></div></div></div></div> </td></tr></table> } } # A procedure to write the common footer found at the bottom of # every HTML file. $srcfile is the name of the file that is the # source of the HTML content. The modification time of this file # is used to add the "last modified on" line at the bottom of the |
︙ | ︙ |