summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2012-03-16 09:17:32 +0000
committeralecpl <alec@alec.pl>2012-03-16 09:17:32 +0000
commitf45a978941b00c6c10a56141f329b1fce7650169 (patch)
tree97f1e682b88366f3964655755bf8b684d26db577
parent9e2c949d86bb56afa37a4c952f8e8930b7c9958e (diff)
- Unified width of some (similiar) UI elements
-rw-r--r--skins/larry/addressbook.css4
-rw-r--r--skins/larry/mail.css4
-rw-r--r--skins/larry/settings.css6
-rw-r--r--skins/larry/ui.js8
4 files changed, 11 insertions, 11 deletions
diff --git a/skins/larry/addressbook.css b/skins/larry/addressbook.css
index 65f935e3a..c754b917f 100644
--- a/skins/larry/addressbook.css
+++ b/skins/larry/addressbook.css
@@ -49,14 +49,14 @@
position: absolute;
top: 42px;
left: 0;
- width: 280px;
+ width: 260px;
bottom: 0;
}
#contacts-box {
position: absolute;
top: 42px;
- left: 292px;
+ left: 272px;
right: 0;
bottom: 0;
}
diff --git a/skins/larry/mail.css b/skins/larry/mail.css
index f9b74f28a..7e99be78c 100644
--- a/skins/larry/mail.css
+++ b/skins/larry/mail.css
@@ -16,14 +16,14 @@
position: absolute;
top: 0;
left: 0;
- width: 240px;
+ width: 220px;
bottom: 0;
}
#mailview-right {
position: absolute;
top: 0;
- left: 252px;
+ left: 232px;
right: 0;
bottom: 0;
}
diff --git a/skins/larry/settings.css b/skins/larry/settings.css
index 1d99b7599..f2f53624c 100644
--- a/skins/larry/settings.css
+++ b/skins/larry/settings.css
@@ -40,7 +40,7 @@
#preferences-box {
position: absolute;
top: 0;
- left: 270px;
+ left: 272px;
right: 0;
bottom: 0;
}
@@ -171,7 +171,7 @@
position: absolute;
top: 0;
left: 0;
- width: 300px;
+ width: 260px;
bottom: 0;
}
@@ -179,7 +179,7 @@
#identity-details {
position: absolute;
top: 0;
- left: 310px;
+ left: 272px;
right: 0;
bottom: 0;
}
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index 7f14c5ea9..89c7ba0e5 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -120,7 +120,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:248, min:150, size:12, callback:render_mailboxlist, render:resize_leftcol }).init();
+ orientation:'v', relative:true, start:226, min:150, size:12, callback:render_mailboxlist, render:resize_leftcol }).init();
}
}
/*** settings task ***/
@@ -136,7 +136,7 @@ function rcube_mail_ui()
if (rcmail.env.action == 'folders') {
new rcube_splitter({ id:'folderviewsplitter', p1:'#folderslist', p2:'#folder-details',
- orientation:'v', relative:true, start:305, min:150, size:12 }).init();
+ orientation:'v', relative:true, start:266, min:180, size:12 }).init();
new rcube_scroller('#folderslist-content', '#folderslist-header', '#folderslist-footer');
@@ -144,7 +144,7 @@ function rcube_mail_ui()
}
else if (rcmail.env.action == 'identities') {
new rcube_splitter({ id:'identviewsplitter', p1:'#identitieslist', p2:'#identity-details',
- orientation:'v', relative:true, start:305, min:150, size:12 }).init();
+ orientation:'v', relative:true, start:266, min:180, size:12 }).init();
}
}
/*** addressbook task ***/
@@ -155,7 +155,7 @@ function rcube_mail_ui()
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();
new rcube_splitter({ id:'addressviewsplitter', p1:'#addresslist', p2:'#contacts-box',
- orientation:'v', relative:true, start:296, min:220, size:12 }).init();
+ orientation:'v', relative:true, start:266, min:220, size:12 }).init();
new rcube_scroller('#directorylist-content', '#directorylist-header', '#directorylist-footer');
}