enable triple-pane theme; fix theme system not working
parent
500943a45b
commit
8d3cb8c0a9
@ -1,5 +1,5 @@
|
|||||||
[theme]
|
[theme]
|
||||||
name=Triple-Pane
|
name=Triple-Pane
|
||||||
author=seeker
|
author=seeker
|
||||||
version=1.0
|
version=1.1
|
||||||
options=horiz_resize,hide_footer
|
options=
|
||||||
|
@ -0,0 +1,14 @@
|
|||||||
|
function themeBeforeLayout() {
|
||||||
|
$("headlines-wrap-inner").setAttribute("design", 'sidebar');
|
||||||
|
$("content-insert").setAttribute("region", "trailing");
|
||||||
|
$("content-insert").setStyle({
|
||||||
|
width: '50%',
|
||||||
|
height: 'auto'});
|
||||||
|
}
|
||||||
|
|
||||||
|
function themeAfterLayout() {
|
||||||
|
$("headlines-toolbar").setStyle({
|
||||||
|
'border-right-width': '1px',
|
||||||
|
'border-color': '#88b0f0',
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in New Issue