summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-06-30 09:19:08 +0200
committerAleksander Machniak <alec@alec.pl>2014-06-30 09:19:08 +0200
commita292e4f5244a709f239d997dbe0d58493cfb01da (patch)
tree95c4f0601178414313c9e75b06524ef5707108b2 /skins
parentb0f816fa4b7db7db2f853698e6668ffad16b0a9b (diff)
Unify default width of resizable UI elements (#1488837)
Diffstat (limited to 'skins')
-rw-r--r--skins/larry/addressbook.css8
-rw-r--r--skins/larry/mail.css8
-rw-r--r--skins/larry/ui.js8
3 files changed, 12 insertions, 12 deletions
diff --git a/skins/larry/addressbook.css b/skins/larry/addressbook.css
index 37b201f0a..08100fcf2 100644
--- a/skins/larry/addressbook.css
+++ b/skins/larry/addressbook.css
@@ -14,7 +14,7 @@
position: absolute;
top: 0;
left: 0;
- width: 220px;
+ width: 200px;
bottom: 0;
z-index: 2;
}
@@ -22,7 +22,7 @@
#addressview-right {
position: absolute;
top: 0;
- left: 232px;
+ left: 212px;
right: 0;
bottom: 0;
z-index: 3;
@@ -49,14 +49,14 @@
position: absolute;
top: 0;
left: 0;
- width: 280px;
+ width: 260px;
bottom: 0;
}
#contacts-box {
position: absolute;
top: 0;
- left: 292px;
+ left: 272px;
right: 0;
bottom: 0;
}
diff --git a/skins/larry/mail.css b/skins/larry/mail.css
index 9a700416f..3c7ed77e9 100644
--- a/skins/larry/mail.css
+++ b/skins/larry/mail.css
@@ -14,7 +14,7 @@
position: absolute;
top: 0;
left: 0;
- width: 220px;
+ width: 200px;
bottom: 0;
z-index: 2;
}
@@ -22,7 +22,7 @@
#mailview-right {
position: absolute;
top: 0;
- left: 232px;
+ left: 212px;
right: 0;
bottom: 0;
z-index: 3;
@@ -1297,14 +1297,14 @@ div.message-partheaders .headers-table td.header {
position: absolute;
top: 0;
left: 0;
- width: 250px;
+ width: 200px;
bottom: 0;
}
#composeview-right {
position: absolute;
top: 0;
- left: 262px;
+ left: 212px;
right: 0;
bottom: 0;
}
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index f67b42250..f8c06f889 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -214,7 +214,7 @@ function rcube_mail_ui()
$('#composeoptionstoggle').click();
new rcube_splitter({ id:'composesplitterv', p1:'#composeview-left', p2:'#composeview-right',
- orientation:'v', relative:true, start:248, min:170, size:12, render:layout_composeview }).init();
+ orientation:'v', relative:true, start:206, min:170, size:12, render:layout_composeview }).init();
}
else if (rcmail.env.action == 'list' || !rcmail.env.action) {
var previewframe = $('#mailpreviewframe').is(':visible');
@@ -240,7 +240,7 @@ function rcube_mail_ui()
if ($('#mailview-left').length) {
new rcube_splitter({ id:'mailviewsplitterv', p1:'#mailview-left', p2:'#mailview-right',
- orientation:'v', relative:true, start:226, min:150, size:12, callback:render_mailboxlist, render:resize_leftcol }).init();
+ orientation:'v', relative:true, start:206, min:150, size:12, callback:render_mailboxlist, render:resize_leftcol }).init();
}
}
/*** settings task ***/
@@ -298,9 +298,9 @@ function rcube_mail_ui()
if (rcmail.env.action == '') {
new rcube_splitter({ id:'addressviewsplitterd', p1:'#addressview-left', p2:'#addressview-right',
- orientation:'v', relative:true, start:226, min:150, size:12, render:resize_leftcol }).init();
+ orientation:'v', relative:true, start:206, min:150, size:12, render:resize_leftcol }).init();
new rcube_splitter({ id:'addressviewsplitter', p1:'#addresslist', p2:'#contacts-box',
- orientation:'v', relative:true, start:286, min:270, size:12 }).init();
+ orientation:'v', relative:true, start:266, min:260, size:12 }).init();
}
var dragmenu = $('#dragcontactmenu');