fix feeds frame display if DISPLAY_FEEDLIST_ACTIONS is enabled
This commit is contained in:
parent
19c9cb1143
commit
f69ea84d78
|
@ -340,6 +340,13 @@ iframe {
|
|||
border : 0px solid white;
|
||||
}
|
||||
|
||||
iframe.feedsFrameWithActions {
|
||||
width : 100%;
|
||||
height : 90%;
|
||||
margin : 0px;
|
||||
padding : 0px;
|
||||
}
|
||||
|
||||
iframe.feedsFrame {
|
||||
width : 100%;
|
||||
height : 100%;
|
||||
|
|
16
tt-rss.php
16
tt-rss.php
|
@ -89,16 +89,11 @@
|
|||
</td></tr>
|
||||
<tr><td height="100%" width="100%" valign="top">
|
||||
|
||||
<!-- <div id="feeds"> </div> -->
|
||||
|
||||
<? if (get_pref($link, 'DISPLAY_FEEDLIST_ACTIONS')) { ?>
|
||||
|
||||
<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')) { ?>
|
||||
id="feeds-frame" name="feeds-frame" class="feedsFrameWithActions"> </iframe>
|
||||
|
||||
<div align="center">All feeds:
|
||||
|
||||
|
@ -112,9 +107,16 @@
|
|||
|
||||
</div>
|
||||
|
||||
<? } else { ?>
|
||||
|
||||
<iframe frameborder="0"
|
||||
src="backend.php?op=error&msg=Loading,%20please wait..."
|
||||
id="feeds-frame" name="feeds-frame" class="feedsFrame"> </iframe>
|
||||
|
||||
<? } ?>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
</td>
|
||||
<td valign="top" class="headlinesToolbarBox">
|
||||
<table width="100%" cellpadding="0" cellspacing="0">
|
||||
|
|
Loading…
Reference in New Issue