]> git.99rst.org Git - irssi-scripts.irssi.org.git/commitdiff
A few minor html/css changes
authordequis <redacted>
Thu, 7 Aug 2014 03:54:19 +0000 (00:54 -0300)
committerdequis <redacted>
Thu, 7 Aug 2014 05:07:08 +0000 (02:07 -0300)
- 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

assets/css/style.css
index.html

index bcbd9519d5da0fcf46a01ed327d29f224052347c..05d3e91ef919238378cf93acbed7be886c58d1e3 100644 (file)
@@ -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;
+}
index c01ce8529f0f043f943e7a0d74c7dc3f23300610..fa901353ad255f2cbc92549348e7e3c3c33441d5 100644 (file)
@@ -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>
git clone https://git.99rst.org/PROJECT