remove unnecessary bottom border from headlines-frame
This commit is contained in:
parent
17809d7c4e
commit
d34a32a80e
|
@ -548,10 +548,7 @@ function init_second_stage() {
|
||||||
closeArticlePanel();
|
closeArticlePanel();
|
||||||
|
|
||||||
_widescreen_mode = getInitParam("widescreen");
|
_widescreen_mode = getInitParam("widescreen");
|
||||||
|
|
||||||
if (_widescreen_mode) {
|
|
||||||
switchPanelMode(_widescreen_mode);
|
switchPanelMode(_widescreen_mode);
|
||||||
}
|
|
||||||
|
|
||||||
if (parseInt(getCookie("ttrss_fh_width")) > 0) {
|
if (parseInt(getCookie("ttrss_fh_width")) > 0) {
|
||||||
dijit.byId("feeds-holder").domNode.setStyle(
|
dijit.byId("feeds-holder").domNode.setStyle(
|
||||||
|
@ -1063,6 +1060,7 @@ function switchPanelMode(wide) {
|
||||||
borderTopWidth: '0px' });
|
borderTopWidth: '0px' });
|
||||||
|
|
||||||
$("headlines-toolbar").setStyle({ borderBottomWidth: '0px' });
|
$("headlines-toolbar").setStyle({ borderBottomWidth: '0px' });
|
||||||
|
$("headlines-frame").setStyle({ borderBottomWidth: '0px' });
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -1074,6 +1072,8 @@ function switchPanelMode(wide) {
|
||||||
borderTopWidth: '1px'});
|
borderTopWidth: '1px'});
|
||||||
|
|
||||||
$("headlines-toolbar").setStyle({ borderBottomWidth: '1px' });
|
$("headlines-toolbar").setStyle({ borderBottomWidth: '1px' });
|
||||||
|
|
||||||
|
$("headlines-frame").setStyle({ borderBottomWidth: '1px' });
|
||||||
}
|
}
|
||||||
|
|
||||||
closeArticlePanel();
|
closeArticlePanel();
|
||||||
|
|
|
@ -778,7 +778,7 @@ div.fatalError textarea {
|
||||||
|
|
||||||
#content-wrap {
|
#content-wrap {
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
border-width : 0px 0px 1px 1px;
|
border-width : 0px 0px 0px 1px;
|
||||||
border-style : solid;
|
border-style : solid;
|
||||||
border-color : #c0c0c0;
|
border-color : #c0c0c0;
|
||||||
margin : 0px;
|
margin : 0px;
|
||||||
|
@ -802,10 +802,9 @@ div.fatalError textarea {
|
||||||
#headlines-frame {
|
#headlines-frame {
|
||||||
padding : 0px;
|
padding : 0px;
|
||||||
border-color : #c0c0c0;
|
border-color : #c0c0c0;
|
||||||
border-left-width : 0px;
|
border-style : solid;
|
||||||
border-right-width : 0px;
|
border-width : 0px;
|
||||||
margin-top : 0px;
|
margin-top : 0px;
|
||||||
border-top-width : 0px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#headlines-toolbar_splitter, #toolbar_splitter {
|
#headlines-toolbar_splitter, #toolbar_splitter {
|
||||||
|
@ -1073,3 +1072,4 @@ div.hl.active {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue