summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tt-rss.css5
-rw-r--r--tt-rss.php14
2 files changed, 16 insertions, 3 deletions
diff --git a/tt-rss.css b/tt-rss.css
index 6d682a1b3..6c9735c4c 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -661,3 +661,8 @@ div.logoutContent {
.small {
font-size : small;
}
+
+table.innerFeedTable td {
+ margin : 0px;
+ padding : 0px;
+}
diff --git a/tt-rss.php b/tt-rss.php
index 3aa5d52c0..7983afca0 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -82,17 +82,24 @@
<? } ?>
<tr>
<td valign="top" rowspan="3" class="feeds">
+ <table class="innerFeedTable"
+ cellspacing="0" cellpadding="0" height="100%" width="100%">
+ <tr><td>
+ <div id="dispSwitch">
+ <a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
+ </div>
+ </td></tr>
+ <tr><td height="100%" width="100%" valign="top">
<!-- <div id="feeds">&nbsp;</div> -->
- <div id="dispSwitch">
- <a id="dispSwitchPrompt" href="javascript:toggleTags()">display tags</a>
- </div>
<iframe frameborder="0"
src="backend.php?op=error&msg=Loading,%20please wait..."
id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
+ </td></tr></table>
+
<? if (get_pref($link, 'DISPLAY_FEEDLIST_ACTIONS')) { ?>
<div align="center">All feeds:
@@ -106,6 +113,7 @@
<input type="submit" class="button" onclick="allFeedsMenuGo()" value="Go">
</div>
+
<? } ?>