diff options
| author | dequis | 2014-08-07 00:54:19 -0300 |
|---|---|---|
| committer | dequis | 2014-08-07 02:07:08 -0300 |
| commit | bf71c14ea7678e3abbd04537608a14bf503b4abe (patch) | |
| tree | 0cb379b729fedfe6cfd0e449028f854fef569912 | |
| parent | e8ccd4beeccdc54695648c8a88f0612de529d5e8 (diff) | |
| download | scripts.irssi.org-bf71c14ea7678e3abbd04537608a14bf503b4abe.tar.bz2 | |
A few minor html/css changes
- Limit version column width to 8em
- Change css to make it more obvious that columns are clickable
- Remove duplicate question from the FAQ in the index
- Update URL to the github repo (the old one is a redirect)
- A typo in the third question
| -rw-r--r-- | assets/css/style.css | 13 | ||||
| -rw-r--r-- | index.html | 20 |
2 files changed, 20 insertions, 13 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index bcbd951..05d3e91 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1,3 +1,16 @@ dd { margin-bottom: 6px; } + +.version { + max-width: 8em; + word-wrap: break-word; +} + +table.sortable thead { + cursor: pointer; +} + +table.sortable thead th:hover { + opacity: 0.8; +} @@ -17,12 +17,6 @@ layout: default <code>/script load</code> to <code>/run</code> in newer versions of irssi.</dd> - <dt>How do I run scripts?</dt> - <dd>Put them into ~/.irssi/scripts/ and in irssi do <code>/script - load script.pl</code> . There is a default alias for - <code>/script load</code> to <code>/run</code> in newer versions of - irssi.</dd> - <dt>How do I rerun scripts?</dt> <dd>Just do <code>/script load script.pl</code> .</dd> @@ -36,12 +30,12 @@ layout: default directory (eg. <code>cd ~/.irssi/scripts/autorun/ ; ln -s ../script.pl .</code>)</dd> - <dt>Is there an easy way of managing script?</dt> <dd>Try + <dt>Is there an easy way of managing scripts?</dt> <dd>Try <code>scriptassist.pl</code>, it can update and manage your scripts as well as install new ones and search the database.</dt> <dt>How do I submit a script to this page?</dt> - <dd>See information on how to contribute <a href="https://github.com/irssi/scripts">here</a>.</dd> + <dd>See information on how to contribute <a href="https://github.com/irssi/scripts.irssi.org">here</a>.</dd> </dl> <hr> @@ -59,16 +53,16 @@ layout: default <tbody> {% for script in site.data.scripts %} <tr> - <td> + <td class="filename"> <a href="scripts/{{ script.filename }}">{{ script.filename }}</a> <small> (<a href="https://github.com/irssi/scripts/blob/gh-pages/scripts/{{ script.filename }}">Github</a>) </small> </td> - <td>{{ script.name }}</td> - <td>{{ script.version }}</td> - <td>{{ script.description }}</td> - <td>{{ script.authors }}</td> + <td class="name">{{ script.name }}</td> + <td class="version">{{ script.version }}</td> + <td class="description">{{ script.description }}</td> + <td class="authors">{{ script.authors }}</td> </td> {% endfor %} </tbody> |
