summaryrefslogtreecommitdiff
path: root/themes/triple-pane/theme.js
blob: 2fddab03b551831d1e9840132a58c8b6c6cc38da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
			});
	}
}