mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 22:26:00 +00:00
edit feed: smaller buttons for icon upload; allow uploading larger favicons
This commit is contained in:
@@ -495,7 +495,7 @@ class Pref_Feeds extends Handler_Protected {
|
|||||||
$feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
|
$feed_id = $this->dbh->escape_string($_REQUEST["feed_id"]);
|
||||||
|
|
||||||
if (is_file($icon_file) && $feed_id) {
|
if (is_file($icon_file) && $feed_id) {
|
||||||
if (filesize($icon_file) < 20000) {
|
if (filesize($icon_file) < 65535) {
|
||||||
|
|
||||||
$result = $this->dbh->query("SELECT id FROM ttrss_feeds
|
$result = $this->dbh->query("SELECT id FROM ttrss_feeds
|
||||||
WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
|
WHERE id = '$feed_id' AND owner_uid = ". $_SESSION["uid"]);
|
||||||
@@ -738,9 +738,9 @@ class Pref_Feeds extends Handler_Protected {
|
|||||||
<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
|
<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">
|
||||||
<input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
|
<input type=\"hidden\" name=\"feed_id\" value=\"$feed_id\">
|
||||||
<input type=\"hidden\" name=\"method\" value=\"uploadicon\">
|
<input type=\"hidden\" name=\"method\" value=\"uploadicon\">
|
||||||
<button dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
|
<button class=\"small\" dojoType=\"dijit.form.Button\" onclick=\"return uploadFeedIcon();\"
|
||||||
type=\"submit\">".__('Replace')."</button>
|
type=\"submit\">".__('Replace')."</button>
|
||||||
<button dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
|
<button class=\"small\" dojoType=\"dijit.form.Button\" onclick=\"return removeFeedIcon($feed_id);\"
|
||||||
type=\"submit\">".__('Remove')."</button>
|
type=\"submit\">".__('Remove')."</button>
|
||||||
</form>";
|
</form>";
|
||||||
|
|
||||||
|
|||||||
@@ -346,6 +346,10 @@ button[disabled],
|
|||||||
line-height : 20px;
|
line-height : 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.claro .dijitButton.small .dijitButtonText {
|
||||||
|
font-size : 11px;
|
||||||
|
}
|
||||||
|
|
||||||
.claro .dijitMenu {
|
.claro .dijitMenu {
|
||||||
border-color : #ccc;
|
border-color : #ccc;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user