make feedlist use smaller font
This commit is contained in:
parent
126682c10d
commit
d5caaae569
|
@ -464,6 +464,10 @@
|
|||
pg_query("DELETE FROM ttrss_entries WHERE feed_id = '$id'");
|
||||
pg_query("DELETE FROM ttrss_feeds WHERE id = '$id'");
|
||||
pg_query("COMMIT");
|
||||
|
||||
if (file_exists(ICONS_DIR . "/$id.ico")) {
|
||||
unlink(ICONS_DIR . "/$id.ico");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,6 +46,10 @@ td.headlineToolbar {
|
|||
padding-top : 10px;
|
||||
}
|
||||
|
||||
table.feeds {
|
||||
font-size : small;
|
||||
}
|
||||
|
||||
table.feeds td.footer {
|
||||
font-weight : bold;
|
||||
border-width : 1px 0px 0px 0px;
|
||||
|
@ -257,6 +261,7 @@ table.prefFeedList tr.title td {
|
|||
}
|
||||
|
||||
a.disabledButton {
|
||||
font-family : tahoma, sans-serif;
|
||||
border : 1px solid #d0d0d0;
|
||||
background-color : white;
|
||||
color : #909090;
|
||||
|
@ -271,6 +276,7 @@ a.disabledButton:hover {
|
|||
}
|
||||
|
||||
a.button {
|
||||
font-family : tahoma, sans-serif;
|
||||
border : 1px solid #d0d0d0;
|
||||
background-image : url("images/button.png");
|
||||
background-position : top;
|
||||
|
@ -288,6 +294,7 @@ a.button:hover {
|
|||
}
|
||||
|
||||
a.buttonWarn {
|
||||
font-family : tahoma, sans-serif;
|
||||
border : 1px solid #d0d0d0;
|
||||
background-image : url("images/button.png");
|
||||
background-position : top;
|
||||
|
|
Loading…
Reference in New Issue