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

17 lines
396 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() {
2011-03-28 09:33:41 +02:00
$("headlines-toolbar").setStyle({
'border-width': '1px 1px 0px 0px',
'border-color': '#88b0f0',
});
}