From 52e5cd31793177cd633ce62a75856d34db6d9c41 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 15 Apr 2014 16:39:24 +0200 Subject: [PATCH] Use splitter size the same as in core --- plugins/kolab_notes/skins/larry/templates/notes.html | 6 +++--- plugins/tasklist/skins/larry/templates/mainview.html | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/kolab_notes/skins/larry/templates/notes.html b/plugins/kolab_notes/skins/larry/templates/notes.html index 8f35b61f..86910b25 100644 --- a/plugins/kolab_notes/skins/larry/templates/notes.html +++ b/plugins/kolab_notes/skins/larry/templates/notes.html @@ -107,11 +107,11 @@ $(document).ready(function(e){ }) new rcube_splitter({ id:'notesviewsplitter', p1:'#sidebar', p2:'#mainview-right', - orientation:'v', relative:true, start:240, min:180, size:16, offset:2, render:layout_view }).init(); + orientation:'v', relative:true, start:240, min:180, size:12, render:layout_view }).init(); new rcube_splitter({ id:'noteslistsplitter2', p1:'#noteslistbox', p2:'#notedetailsbox', - orientation:'v', relative:true, start:242, min:180, size:16, offset:2, render:layout_view }).init(); + orientation:'v', relative:true, start:242, min:180, size:12, render:layout_view }).init(); new rcube_splitter({ id:'notesviewsplitterv', p1:'#tagsbox', p2:'#notebooksbox', - orientation:'h', relative:true, start:242, min:120, size:16, offset:6 }).init(); + orientation:'h', relative:true, start:242, min:120, size:12, offset:4 }).init(); function layout_view() { diff --git a/plugins/tasklist/skins/larry/templates/mainview.html b/plugins/tasklist/skins/larry/templates/mainview.html index b9a47855..95b3d67d 100644 --- a/plugins/tasklist/skins/larry/templates/mainview.html +++ b/plugins/tasklist/skins/larry/templates/mainview.html @@ -164,9 +164,9 @@ $(document).ready(function(e){ }); new rcube_splitter({ id:'taskviewsplitter', p1:'#sidebar', p2:'#mainview-right', - orientation:'v', relative:true, start:240, min:180, size:16, offset:2 }).init(); + orientation:'v', relative:true, start:240, min:180, size:12 }).init(); new rcube_splitter({ id:'taskviewsplitterv', p1:'#tagsbox', p2:'#tasklistsbox', - orientation:'h', relative:true, start:242, min:120, size:16, offset:6 }).init(); + orientation:'h', relative:true, start:242, min:120, size:12, offset:4 }).init(); });