1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/themes/triple-pane/theme.js

19 lines
425 B
JavaScript
Raw Normal View History

function themeBeforeLayout() {
if ($("content-insert")) {
$("headlines-wrap-inner").setAttribute("design", 'sidebar');
$("content-insert").setAttribute("region", "trailing");
$("content-insert").setStyle({
width: '50%',
height: 'auto'});
}
}
function themeAfterLayout() {
if ($("content-insert")) {
$("headlines-toolbar").setStyle({
'border-right-width': '1px',
'border-color': '#88b0f0',
});
}
}