diff options
| author | Mark Otto <[email protected]> | 2011-12-12 09:51:41 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-12-12 09:51:41 -0800 |
| commit | d681ae9f51b85d8e1efae2a819ce289266d7efd0 (patch) | |
| tree | 5ec401fdc41ab674098fc6e22887d61283c9c3fe | |
| parent | 4e8c26d409c60f50e2ab245e74ec18af5131d838 (diff) | |
| download | bootstrap-d681ae9f51b85d8e1efae2a819ce289266d7efd0.tar.xz bootstrap-d681ae9f51b85d8e1efae2a819ce289266d7efd0.zip | |
updated docs to include other less apps
| -rw-r--r-- | bootstrap.css | 2 | ||||
| -rw-r--r-- | docs/assets/css/docs.css | 6 | ||||
| -rw-r--r-- | docs/less.html | 16 |
3 files changed, 21 insertions, 3 deletions
diff --git a/bootstrap.css b/bootstrap.css index 4e5055c1b..6411413ff 100644 --- a/bootstrap.css +++ b/bootstrap.css @@ -6,7 +6,7 @@ * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. - * Date: Sun Dec 11 02:07:42 PST 2011 + * Date: Mon Dec 12 09:51:27 PST 2011 */ html, body { margin: 0; diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 7c1e65942..586b5334b 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -382,6 +382,12 @@ h2 + table { max-width: 300px; margin: 0 auto 18px; } + + table code { + white-space: normal; + word-wrap: break-word; + word-break: break-all; + } } diff --git a/docs/less.html b/docs/less.html index ab276eece..52de8b6aa 100644 --- a/docs/less.html +++ b/docs/less.html @@ -392,7 +392,7 @@ <h2 id="compiling">Compiling Less</h2> <p>After modifying the <code>.less</code> files in /lib/, you'll need to recompile them in order to regenerate the bootstrap-*.*.*.css and bootstrap-*.*.*.min.css files. If you're submitting a pull request to GitHub, you must always recompile.</p> <h3>Ways to compile</h3> - <table class="striped-table"> + <table class="bordered-table striped-table"> <thead> <tr> <th style="width: 120px;">Method</th> @@ -428,12 +428,24 @@ </td> </tr> <tr> - <td>Mac app</td> + <td><a href="http://incident57.com/less/" target="_blank">Unofficial Mac app</a></td> <td> <p><a href="http://incident57.com/less/">The unofficial Mac app</a> watches directories of .less files and compiles the code to local files after every save of a watched .less file.</p> <p>If you like, you can toggle preferences in the app for automatic minifying and which directory the compiled files end up in.</p> </td> </tr> + <tr> + <td><a href="http://crunchapp.net/" target="_blank">Crunch</a></td> + <td>Crunch is a great looking LESS editor and compiler built on Adobe Air.</td> + </tr> + <tr> + <td><a href="http://incident57.com/codekit/" target="_blank">CodeKit</a></td> + <td>Created by the same guy as the unofficial Mac app, CodeKit is a Mac app that compiles LESS, SASS, Stylus, and CoffeeScript.</td> + </tr> + <tr> + <td><a href="http://wearekiss.com/simpless" target="_blank">Simpless</a></td> + <td>Mac, Linux, and PC app for drag and drop compiling of LESS files. Plus, the <a href="https://github.com/Paratron/SimpLESS" target="_blank">source code is on GitHub</a>.</td> + </tr> </tbody> </table> </div> |
