diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | core/ui.lua | 2 | ||||
-rw-r--r-- | doc/index.html | 40 |
3 files changed, 40 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d144403..dd5661fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -258,7 +258,7 @@ Changes: * Added Dart lexer. * Do not split the view when printing messages if tabs are enabled. * Look for *~/.textadept/osx_env.sh* for [OSX environment variables][] due to - changes in Mac OSX 1n0.9. + changes in Mac OSX 10.9. * [Experimental] Replaced Lua's `io.popen()` and `os.execute()` with versions that do not flash the "black box" on Windows. * Added read-only access to the current key chain via [`keys.keychain`][]. @@ -711,7 +711,7 @@ Changes: [Textadept 6.6 beta -- Linux x86_64]: download/textadept_6.6_beta.x86_64.tgz [Textadept 6.6 beta -- Source]: download/textadept_6.6_beta.src.zip [Textadept 6.6 beta -- Modules]: download/textadept_6.6_beta.modules.zip -[Messagebox]: http://foicica.com/gtdialog/02_Usage.html#Messageboxes +[Messagebox]: http://foicica.com/gtdialog/manual.html#Messageboxes [key modes]: api.html#keys.Modes [Scintilla]: http://scintilla.org [`buffer.new()`]: api.html#buffer.new diff --git a/core/ui.lua b/core/ui.lua index df495476..6c9a6e5e 100644 --- a/core/ui.lua +++ b/core/ui.lua @@ -421,7 +421,7 @@ The functions below are Lua C functions. -- Table arguments containing strings are allowed and expanded in place. This is -- useful for filtered list dialogs with many items. -- --- [gtdialog]: http://foicica.com/gtdialog/02_Usage.html +-- [gtdialog]: http://foicica.com/gtdialog/manual.html#Usage -- @param kind The kind of gtdialog. -- @param ... Parameters to the gtdialog. -- @return string gtdialog result. diff --git a/doc/index.html b/doc/index.html index 7e314a1c..2d05070b 100644 --- a/doc/index.html +++ b/doc/index.html @@ -5,6 +5,40 @@ <link rel="stylesheet" href="style.css" type="text/css" /> <link rel="icon" href="icon.png" type="image/png" /> <meta charset="utf-8" /> + <style type="text/css"> + #left, #right { + margin: -1em 0 1em 0; + width: 10em; + } + #left { float: left; } + #right { float: right; } + #left h2, #right h2 { + font-size: 0.9em; + margin: 0; + padding-left: 0.5em; + } + #left ul, #right ul { + list-style-type: none; + margin: 0.25em 0.25em 0.25em 0.75em; + } + #main div.head-col hr { + clear: both; + margin: 0; + } + #main div.head-col h2 { + font-size: 1.5em; + margin: 0.5em; + text-align: center; + } + #main div.left-col, #main div.right-col { width: 500px; } + #main div.left-col { float: left; } + #main div.right-col { float: right; } + #main div.clear-col { clear: both; } + #main div.left-col h3, #main div.right-col h3 { text-align: center; } + #main div.left-col .center, #main div.right-col .center { + text-align: center; + } + </style> </head> <body> <div id="content"> @@ -19,7 +53,7 @@ </p> </div> - <div id="nav"> + <div id="left"> <a id="download"></a> <h2>Download (v7.4)</h2> <a href="feed"> @@ -53,7 +87,7 @@ </ul> </div> - <div id="toc" style="width: 10em;"> + <div id="right"> <h2>Support</h2> <ul> <li><a href="manual.html">Manual</a></li> @@ -63,7 +97,7 @@ </ul> <h2>Quick Reference</h2> - <p style="margin: 0.25em 0 0.25em 0; text-align: center;"> + <p style="margin: 0.25em 0 0.25em 0.5em;"> <a href="MEDIA.html#Book"> <img src="book/ta_quickref_small.png" alt="Cover" style="border-width: 1px; margin-top: 0.25em;" /> |