]> git.wh0rd.org Git - tt-rss.git/commitdiff
label help tweaks
authorAndrew Dolgov <fox@madoka.spb.ru>
Fri, 11 Jan 2008 07:18:19 +0000 (08:18 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Fri, 11 Jan 2008 07:18:19 +0000 (08:18 +0100)
help/1.php
modules/popup-dialog.php
modules/pref-labels.php
utility.css

index b0dfb63e1f710670602b1673ca39ee7a2c9bdd66..28b742e067a1a09215dc8ada3df2e9d9a11a11ff 100644 (file)
@@ -6,15 +6,15 @@
 
 <p>Match all unread articles:</p>
 
-<pre>unread = true</pre>
+<code>unread = true</code>
 
 <p>Matches all articles which mention Linux in the title:</p>
 
-<pre>ttrss_entries.title like '%Linux%'</pre>
+<code>ttrss_entries.title like '%Linux%'</code>
 
 <p>Matches all articles for the last week (PostgreSQL):</p>
 
-<pre>updated &gt; NOW() - INTERVAL '7 days'</pre>
+<code>updated &gt; NOW() - INTERVAL '7 days'</code>
 
 <p>See the database schema <a target="_blank" href="http://tt-rss.org/trac/browser/schema/ttrss_schema_pgsql.sql">here</a> or included in the distribution package for gruesome details. The relevant tables are <b>ttrss_entries</b> and <b>ttrss_user_entries</b>.</p>
 
index a63c65f56ec345acee90b81094b80716384c131c..1dc381979ed2b713d3aa1d592946402b403c06a2 100644 (file)
 
                        print "<div align='right'>";
 
+                       print "<div style='float : left'>";
                        print "<input type=\"submit\" 
                                class=\"button\" onclick=\"return displayHelpInfobox(1)\" 
                                value=\"".__('Help')."\"> ";
+                       print "</div>";
 
                        print "<input type=\"submit\" onclick=\"labelTest()\" value=\"".__('Test')."\">
                                ";
index b7124f01c7cb8dfdba5dee09877a4ae5e380e4f9..65948ce433447aebfe3e329e4abf6e5e24bf944d 100644 (file)
 
                        print "<div align='right'>";
 
+                       print "<div style='float : left'>";
                        print "<input type=\"submit\" 
                                class=\"button\" onclick=\"return displayHelpInfobox(1)\" 
                                value=\"".__('Help')."\"> ";
+                       print "</div>";
 
                        $is_disabled = (strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== FALSE) ? "disabled" : "";
 
index 54e75babe73995fe09ccac6f8b1ec2da0677bf9a..bdda169ea98bfa101e4ba83abc30113767b9e748 100644 (file)
@@ -7,7 +7,7 @@ p.warning {
        color : red;
 }
 
-p.query {
+p.query, code {
        color : green;
 }