mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-02-10 16:01:33 +00:00
fix height of feed update errors list
This commit is contained in:
@@ -250,7 +250,7 @@
|
|||||||
$result = db_query($link, "SELECT id,title,feed_url,last_error
|
$result = db_query($link, "SELECT id,title,feed_url,last_error
|
||||||
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
|
FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
|
||||||
|
|
||||||
print "<ul class='nomarks'>";
|
print "<ul class='feedErrorsList'>";
|
||||||
|
|
||||||
while ($line = db_fetch_assoc($result)) {
|
while ($line = db_fetch_assoc($result)) {
|
||||||
print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .
|
print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .
|
||||||
|
|||||||
+10
@@ -831,6 +831,16 @@ span.groupPrompt {
|
|||||||
color : #4684ff;
|
color : #4684ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ul.feedErrorsList {
|
||||||
|
height : 300px;
|
||||||
|
overflow : auto;
|
||||||
|
list-style-type : none;
|
||||||
|
border : 1px solid #88b0f0;
|
||||||
|
background-color : white;
|
||||||
|
margin : 0px 0px 5px 0px;
|
||||||
|
padding : 0px;
|
||||||
|
}
|
||||||
|
|
||||||
ul.userFeedList {
|
ul.userFeedList {
|
||||||
height : 300px;
|
height : 300px;
|
||||||
overflow : auto;
|
overflow : auto;
|
||||||
|
|||||||
Reference in New Issue
Block a user