Monotone-Parent: f69d60b9d521e7955f8e0a7051cb02f730a5b031

Monotone-Revision: d945e377de4cef58cd3319068ed383074d42b243

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-01T16:57:44
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-11-01 16:57:44 +00:00
parent 824c7ab807
commit 7d0d729557
4 changed files with 30 additions and 21 deletions

View File

@@ -24,6 +24,7 @@ DIV#rightPanel
position: absolute;
top: 6em;
left: 15em;
margin-left: 5px;
right: 0px;
bottom: 0px;
overflow: hidden;
@@ -34,7 +35,7 @@ DIV#contactsListContent
position: absolute;
background: #fff;
width: 100%;
height: 15.7em;
height: 16em;
top: 2em;
overflow: auto;
left: 0px;
@@ -111,7 +112,7 @@ DIV.contactFoldersList
position: absolute;
top: 6em;
left: 0px;
width: 14.7em;
width: 15em;
bottom: 0px;
margin: 0px;
padding: 0px;
@@ -211,11 +212,12 @@ DIV#contactView
position: absolute;
background: #fff;
padding: .5em;
top: 18.2em;
top: 18em;
left: 0px;
right: 0px;
bottom: 0px;
overflow: auto;
margin-top: 5px;
border-top: 1px solid #aaa;
border-left: 1px solid #aaa;
line-height: 1em;
@@ -258,8 +260,8 @@ INPUT#searchValue:focus
DIV#dragHandle
{
cursor: e-resize;
top: 7.5em;
left: 14.6em;
top: 8em;
left: 15em;
width: 5px;
bottom: 0px;
}
@@ -267,7 +269,7 @@ DIV#dragHandle
DIV#rightDragHandle
{
cursor: n-resize;
top: 17.7em;
top: 18em;
left: 0px;
right: 0px;
height: 5px;

View File

@@ -40,6 +40,7 @@ DIV#mailerPageContent
right: 0px;
bottom: 0px;
margin: 0px;
margin-left: 5px;
padding: 0px;
overflow: hidden;
}
@@ -58,10 +59,14 @@ DIV#messageContent
{
position: absolute;
overflow: hidden;
top: 18.2em;
top: 18em;
bottom: 0px;
left: 5px;
left: 0px;
right: 0px;
margin: 0px;
margin-top: 5px;
padding: 0px;
border: 0px;
border-top: 1px solid #aaa;
border-left: 1px solid #aaa;
background: #fff;
@@ -479,9 +484,10 @@ TABLE#messageList
background: #fff;
color: #000;
width: 100%;
left: 5px;
left: 0px;
right: 0px;
top: 2em;
bottom: 5px;
bottom: 0px;
overflow: auto;
}
@@ -524,7 +530,7 @@ DIV#dragHandle
DIV#mailboxDragHandle
{
cursor: n-resize;
top: 17.7em;
top: 18em;
left: 0px;
right: 0px;
height: 5px;

View File

@@ -110,8 +110,8 @@ DIV#rightPanel
right: 0px;
bottom: 0px;
margin: 0px;
margin-left: 5px;
padding: 0px;
padding-left: 5px;
overflow: hidden;
}
@@ -119,9 +119,10 @@ DIV#appointmentsListView
{
position: absolute;
background: #fff;
width: 100%;
height: 15.7em;
height: 16em;
top: 2em;
left: 0px;
width: 100%;
overflow: auto;
}
@@ -130,6 +131,7 @@ DIV#calendarView
position: absolute;
background: #fff;
top: 18em;
margin-top: 5px;
bottom: 0px;
width: 100%;
overflow: hidden;
@@ -156,7 +158,7 @@ DIV#calendarView A
#rightDragHandle
{
cursor: n-resize;
top: 17.7em;
top: 18em;
left: 0px;
right: 0px;
height: 5px;
@@ -291,8 +293,7 @@ TABLE._unfocused#appointmentsList TR._selected TD
TABLE.dayOverview,
TABLE.weekOverview
{
margin: 0 auto;
{ margin: 0 auto;
padding: 1em;
border-collapse: collapse; }
@@ -349,7 +350,7 @@ SPAN.monthsHeader
margin: 0px;
height: 2.5em;
padding: .1em 1.5em;
border-top: 1px solid #aaa;
border: 0px;
border-bottom: 1px solid #ccc; }
SPAN.daysHeader SPAN,
@@ -445,7 +446,7 @@ DIV#calendarContent
position: absolute;
top: 3em;
padding: 0px;
margin: 0px .5em;
margin: 0px;
bottom: 0px;
left: 0px;
right: 0px;

View File

@@ -661,7 +661,7 @@ function startHandleDragging(event) {
dragHandleOrigX = dragHandle.offsetLeft;
dragHandleOrigLeft = document.getElementById(leftBlock).offsetWidth;
dragHandleDiff = 0;
dragHandleOrigRight = document.getElementById(rightBlock).offsetLeft;
dragHandleOrigRight = document.getElementById(rightBlock).offsetLeft - 5;
document.body.style.cursor = "e-resize";
} else if (upperBlock && lowerBlock) {
dragHandle.dhType = 'vertical';
@@ -670,7 +670,7 @@ function startHandleDragging(event) {
dragHandleOrigY = dragHandle.offsetTop;
dragHandleOrigUpper = uBlock.offsetHeight;
dragHandleDiff = event.clientY - dragHandle.offsetTop;
dragHandleOrigLower = lBlock.offsetTop;
dragHandleOrigLower = lBlock.offsetTop - 5;
document.body.style.cursor = "n-resize";
}