]> git.wh0rd.org Git - tt-rss.git/commitdiff
tweak feedbrowser layout
authorAndrew Dolgov <fox@bah.spb.su>
Tue, 20 Jan 2009 15:27:38 +0000 (16:27 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Tue, 20 Jan 2009 15:27:38 +0000 (16:27 +0100)
modules/pref-feed-browser.php

index 01d35045803b6a8b56a97665b495d4a236602156..576b684a9282a690b610baa16874895b6b411566 100644 (file)
 
                }
 
-               print "<div class=\"insensitive\">".__('This panel shows feeds subscribed by other users of this system, just in case you are interested in them too.')."</div>";
+               /*              print "<div class=\"insensitive\">".__('This panel shows feeds subscribed by other users of this system, just in case you are interested in them too.')."</div>"; */
 
-               print "<p>
+               print "<div class=\"feedEditSearch\">
                        <input id=\"feed_browser_search\" size=\"20\" type=\"search\"
                                onfocus=\"javascript:disableHotkeys();\" 
                                onblur=\"javascript:enableHotkeys();\"
                                onchange=\"javascript:updateBigFeedBrowserBtn()\" value=\"$browser_search\">
                        <input type=\"submit\" class=\"button\" 
                                onclick=\"javascript:updateBigFeedBrowserBtn()\" value=\"".__('Search')."\">
-                       </p>";
+                       </div>";
+
+               print "<div>
+                       ".__('Top')." <select id=\"feedBrowserLimit\">";
+
+               foreach (array(25, 50, 100, 200) as $l) {
+                       $issel = ($l == $limit) ? "selected" : "";
+                       print "<option $issel>$l</option>";
+               }
+                       
+               print "</select>
+                       <input type=\"submit\" class=\"button\"
+                               onclick=\"updateBigFeedBrowserBtn()\" value=\"".__('Show')."\">
+               </div>";
 
                if ($browser_search) {
                        $search_qpart = " AND (
                        ORDER BY subscribers DESC LIMIT $limit");
                
                print "<br/>";
-                       
-               print "<div style=\"float : right\">
-                       ".__('Top')." <select id=\"feedBrowserLimit\">";
-
-               foreach (array(25, 50, 100, 200) as $l) {
-                       $issel = ($l == $limit) ? "selected" : "";
-                       print "<option $issel>$l</option>";
-               }
-                       
-               print "</select>
-                       <input type=\"submit\" class=\"button\"
-                               onclick=\"updateBigFeedBrowserBtn()\" value=\"".__('Show')."\">
-               </div>";
 
                if (db_num_rows($result) > 0) {