diff --git a/UI/WebServerResources/ContactsUI.css b/UI/WebServerResources/ContactsUI.css index 623710afa..6fbf9d81c 100644 --- a/UI/WebServerResources/ContactsUI.css +++ b/UI/WebServerResources/ContactsUI.css @@ -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; diff --git a/UI/WebServerResources/MailerUI.css b/UI/WebServerResources/MailerUI.css index a300f815c..8ec65295a 100644 --- a/UI/WebServerResources/MailerUI.css +++ b/UI/WebServerResources/MailerUI.css @@ -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; diff --git a/UI/WebServerResources/SchedulerUI.css b/UI/WebServerResources/SchedulerUI.css index be81eded5..32b560dbc 100644 --- a/UI/WebServerResources/SchedulerUI.css +++ b/UI/WebServerResources/SchedulerUI.css @@ -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; diff --git a/UI/WebServerResources/generic.js b/UI/WebServerResources/generic.js index 71b5a8dd3..d83c7511d 100644 --- a/UI/WebServerResources/generic.js +++ b/UI/WebServerResources/generic.js @@ -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"; }