more button styles work; code cleanup
This commit is contained in:
parent
577399e829
commit
d60009cdd8
|
@ -181,7 +181,7 @@
|
||||||
print "</form>";
|
print "</form>";
|
||||||
|
|
||||||
print "<div class=\"dlgButtons\">
|
print "<div class=\"dlgButtons\">
|
||||||
<button disabled='true' onclick=\"javascript:search()\">".__('Search')."</button>
|
<button onclick=\"javascript:search()\">".__('Search')."</button>
|
||||||
<button onclick=\"javascript:searchCancel()\">".__('Cancel')."</button>
|
<button onclick=\"javascript:searchCancel()\">".__('Cancel')."</button>
|
||||||
</div>";
|
</div>";
|
||||||
|
|
||||||
|
@ -405,7 +405,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id == "printTagCloud") {
|
if ($id == "printTagCloud") {
|
||||||
print "<div id=\"infoBoxTitle\">".__('Tag cloud')."</div>";
|
print "<div id=\"infoBoxTitle\">".__('Tag Cloud')."</div>";
|
||||||
print "<div class=\"infoBoxContents\">";
|
print "<div class=\"infoBoxContents\">";
|
||||||
|
|
||||||
print __("Showing most popular tags ")." (<a
|
print __("Showing most popular tags ")." (<a
|
||||||
|
@ -418,9 +418,8 @@
|
||||||
print "</div>";
|
print "</div>";
|
||||||
|
|
||||||
print "<div align='center'>";
|
print "<div align='center'>";
|
||||||
print "<input class=\"button\"
|
print "<button onclick=\"return closeInfoBox()\">".
|
||||||
type=\"submit\" onclick=\"return closeInfoBox()\"
|
__('Close this window')."</button>";
|
||||||
value=\"".__('Close this window')."\">";
|
|
||||||
print "</div>";
|
print "</div>";
|
||||||
|
|
||||||
print "</div>";
|
print "</div>";
|
||||||
|
|
|
@ -996,12 +996,9 @@
|
||||||
print "<div class=\"prefGenericAddBox\">
|
print "<div class=\"prefGenericAddBox\">
|
||||||
<input id=\"fadd_cat\"
|
<input id=\"fadd_cat\"
|
||||||
onkeypress=\"return filterCR(event, addFeedCat)\"
|
onkeypress=\"return filterCR(event, addFeedCat)\"
|
||||||
onkeyup=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
|
size=\"40\">
|
||||||
onchange=\"toggleSubmitNotEmpty(this, 'catadd_submit_btn')\"
|
<button onclick=\"javascript:addFeedCat()\">".
|
||||||
size=\"40\">
|
__('Create category')."</button></div>";
|
||||||
<input
|
|
||||||
type=\"submit\" class=\"button\" disabled=\"true\" id=\"catadd_submit_btn\"
|
|
||||||
onclick=\"javascript:addFeedCat()\" value=\"".__('Create category')."\"></div>";
|
|
||||||
|
|
||||||
$result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
|
$result = db_query($link, "SELECT title,id FROM ttrss_feed_categories
|
||||||
WHERE owner_uid = ".$_SESSION["uid"]."
|
WHERE owner_uid = ".$_SESSION["uid"]."
|
||||||
|
@ -1011,16 +1008,9 @@
|
||||||
|
|
||||||
if (db_num_rows($result) != 0) {
|
if (db_num_rows($result) != 0) {
|
||||||
|
|
||||||
print "<table width=\"100%\" class=\"prefFeedCatList\"
|
print __('Select:')."
|
||||||
cellspacing=\"0\">";
|
|
||||||
|
|
||||||
print "<tr><td class=\"selectPrompt\" colspan=\"8\">
|
|
||||||
".__('Select:')."
|
|
||||||
<a href=\"javascript:selectPrefRows('fcat', true)\">".__('All')."</a>,
|
<a href=\"javascript:selectPrefRows('fcat', true)\">".__('All')."</a>,
|
||||||
<a href=\"javascript:selectPrefRows('fcat', false)\">".__('None')."</a>
|
<a href=\"javascript:selectPrefRows('fcat', false)\">".__('None')."</a>";
|
||||||
</td></tr>";
|
|
||||||
|
|
||||||
print "</table>";
|
|
||||||
|
|
||||||
print "<div class=\"prefFeedCatHolder\">";
|
print "<div class=\"prefFeedCatHolder\">";
|
||||||
|
|
||||||
|
@ -1064,17 +1054,14 @@
|
||||||
print "<p>".__('No feed categories defined.')."</p>";
|
print "<p>".__('No feed categories defined.')."</p>";
|
||||||
}
|
}
|
||||||
|
|
||||||
print "<div style='float : right'>
|
print "<div class='dlgButtons'>
|
||||||
<input type='submit' class='button'
|
<div style='float : left'>
|
||||||
onclick=\"selectTab('feedConfig')\" value=\"".__('Close this window')."\"></div>";
|
<button onclick=\"return removeSelectedFeedCats()\">".
|
||||||
|
__('Remove')."</button>
|
||||||
|
</div>";
|
||||||
|
|
||||||
print "<div id=\"catOpToolbar\">";
|
print "<button onclick=\"selectTab('feedConfig')\">".
|
||||||
|
__('Close this window')."</button></div>";
|
||||||
print "
|
|
||||||
<input type=\"submit\" class=\"button\" disabled=\"true\"
|
|
||||||
onclick=\"return removeSelectedFeedCats()\" value=\"".__('Remove')."\">";
|
|
||||||
|
|
||||||
print "</div>";
|
|
||||||
|
|
||||||
print "</div>";
|
print "</div>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue