Minor web improvements in Calendar module

Monotone-Parent: d084a8dce4b609bce22f01e6482af7c505e1129b
Monotone-Revision: 162b436b68eff06f343e4554025a4cd63e47fc2f

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-07-27T19:30:05
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2009-07-27 19:30:05 +00:00
parent 388bc39c3c
commit 80b7a2a68d
3 changed files with 15 additions and 14 deletions

View File

@ -323,12 +323,10 @@
var:value="reminderReference"/>
<div id="windowButtons">
<span class="content">
<a id="cancelButton" href="#" class="button"
><var:string label:value="Cancel"/></a>
<a id="okButton" href="#" class="button"
><var:string label:value="OK"/></a>
</span>
<a id="cancelButton" href="#" class="button"
><var:string label:value="Cancel"/></a>
<a id="okButton" href="#" class="button"
><var:string label:value="OK"/></a>
</div>
</div>
</var:if>

View File

@ -1044,7 +1044,10 @@ function newBaseEventDIV(eventRep, event, eventText) {
textDiv.addClassName("text");
textDiv.update(eventText.replace(/(\\r)?\\n/g, "<BR/>"));
if (event[2] != null) {
if (event[2] == null) {
eventDiv.observe("selectstart", listRowMouseDownHandler);
}
else {
// Status field is defined -- user can read event
eventDiv.observe("mousedown", listRowMouseDownHandler);
eventDiv.observe("click", onCalendarSelectEvent);

View File

@ -60,18 +60,17 @@ LABEL.titleNoSpace
}
DIV#windowButtons
{
width: 100%;
position: absolute;
bottom: 4em;
}
{ position: absolute;
bottom: 2em;
left: auto;
right: 2em; }
LABEL.calendarName
{ text-align: right;
margin-top: 10px;
margin-bottom: 10px;
width: 97%;
}
}
DIV#attendeesMenu
{ overflow: auto; }
@ -83,6 +82,7 @@ DIV.fakeTextArea
border-style: inset;
padding: 2px;
height: 100%;
white-space: pre-wrap;
}
DIV#descriptionDiv {
@ -90,4 +90,4 @@ DIV#descriptionDiv {
}
SPAN.fixedHeight {
height: 60px;
}
}