1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-23 11:46:37 +02:00
ttrss/themes/triple-pane/theme.js
2011-03-28 11:33:41 +04:00

17 lines
396 B
JavaScript

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() {
$("headlines-toolbar").setStyle({
'border-width': '1px 1px 0px 0px',
'border-color': '#88b0f0',
});
}