fix height of feed update errors list

This commit is contained in:
Andrew Dolgov 2006-12-08 06:52:21 +01:00
parent 333f0b2aae
commit e8dd519bbe
2 changed files with 11 additions and 1 deletions

View File

@ -250,7 +250,7 @@
$result = db_query($link, "SELECT id,title,feed_url,last_error
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)) {
print "<li><b>" . $line["title"] . "</b> (" . $line["feed_url"] . "): " .

View File

@ -831,6 +831,16 @@ span.groupPrompt {
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 {
height : 300px;
overflow : auto;