1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

remove unnecessary bottom border from headlines-frame

This commit is contained in:
Andrew Dolgov
2013-05-11 15:09:18 +04:00
parent 17809d7c4e
commit d34a32a80e
2 changed files with 8 additions and 8 deletions

View File

@@ -548,10 +548,7 @@ function init_second_stage() {
closeArticlePanel();
_widescreen_mode = getInitParam("widescreen");
if (_widescreen_mode) {
switchPanelMode(_widescreen_mode);
}
switchPanelMode(_widescreen_mode);
if (parseInt(getCookie("ttrss_fh_width")) > 0) {
dijit.byId("feeds-holder").domNode.setStyle(
@@ -1063,6 +1060,7 @@ function switchPanelMode(wide) {
borderTopWidth: '0px' });
$("headlines-toolbar").setStyle({ borderBottomWidth: '0px' });
$("headlines-frame").setStyle({ borderBottomWidth: '0px' });
} else {
@@ -1074,6 +1072,8 @@ function switchPanelMode(wide) {
borderTopWidth: '1px'});
$("headlines-toolbar").setStyle({ borderBottomWidth: '1px' });
$("headlines-frame").setStyle({ borderBottomWidth: '1px' });
}
closeArticlePanel();