generic.css

Monotone-Parent: d0a487816750ff28414ee58d1b18b6958dba1a95
Monotone-Revision: ae5fd1cb71edba3016f8edd102e7a43615acc56c

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-03-13T15:56:03
This commit is contained in:
Francis Lachapelle
2012-03-13 15:56:03 +00:00
parent c3e67c40b3
commit fd207d4b18
8 changed files with 58 additions and 33 deletions
+8
View File
@@ -11,6 +11,8 @@ New Features
Enhancements
- bundled a shell script to perform and manage backups using sogo-tool
- increased the delay before starting drag and drop in Mail and Contacts module
to improve the user experience with cheap mouses
Bug Fixes
- fixed escaping issue with PostgreSQL 8.1
@@ -18,6 +20,12 @@ Bug Fixes
- fixed Spanish (Argentina) templates for mail reply and forward
- we don't show public address books (from SOGoUserSources) on iOS 5.0.1
1.3.12c (2012-02-15)
-------------------
Bug Fixes
- fixed a possible crash when using a SQL source
1.3.12b (2012-02-14)
-------------------
@@ -41,7 +41,7 @@ div.colorBox.calendarFolder<var:string value="currentCalendar.folder" />
<input type="checkbox" class="checkBox"
const:disabled="disabled"
var:checked="currentCalendar.active" />
<div var:class="currentCalendarClass">OO</div
<div var:class="currentCalendarClass"><!-- space --></div
><var:string value="currentCalendar.displayName"
/></li>
</var:foreach>
+2 -1
View File
@@ -27,7 +27,8 @@ DIV#rightPanel
right: 0px;
bottom: 0px;
overflow: hidden;
}
-moz-user-select: none;
-khtml-user-select: none; }
/* top list */
DIV#contactsListContent
+12 -9
View File
@@ -768,6 +768,7 @@ function onAddressBookExport(event) {
window.location.href = url;
event.stop();
hideMenu(document.currentPopupMenu);
}
function onAddressBookImport(event) {
@@ -1480,19 +1481,19 @@ function configureDraggables() {
Draggables.empty();
if (mainElement == null) {
mainElement = new Element ("div", {id: "dragDropVisual"});
mainElement = new Element("div", {id: "dragDropVisual"});
document.body.appendChild(mainElement);
mainElement.absolutize();
}
mainElement.hide();
new Draggable ("dragDropVisual",
{ handle: "contactsList",
onStart: startDragging,
onEnd: stopDragging,
onDrag: whileDragging,
scroll: window
});
new Draggable("dragDropVisual",
{ handle: "contactsList",
onStart: startDragging,
onEnd: stopDragging,
onDrag: whileDragging,
scroll: window,
delay: 250 });
}
}
@@ -1523,7 +1524,8 @@ function startDragging (itm, e) {
var target = Event.element(e);
if (target.up().up().tagName != "TBODY")
return false;
$("contactsListContent").setStyle({ overflow: "visible" });
var handle = $("dragDropVisual");
var contacts = $('contactsList').getSelectedRowsId();
var count = contacts.length;
@@ -1551,6 +1553,7 @@ function whileDragging (itm, e) {
}
function stopDragging () {
$("contactsListContent").setStyle({ overflow: "auto" });
var handle = $("dragDropVisual");
handle.hide();
if (handle.hasClassName ("copy"))
+3 -1
View File
@@ -40,7 +40,9 @@ DIV#rightPanel
margin: 0px;
margin-left: 5px;
padding: 0px;
overflow: hidden; }
overflow: hidden;
-moz-user-select: none;
-khtml-user-select: none; }
/* top list */
DIV#mailboxContent
+7 -2
View File
@@ -2928,7 +2928,7 @@ function configureDraggables() {
onEnd: stopDragging,
onDrag: whileDragging,
scroll: "folderTreeContent",
delay: 100 });
delay: 250 });
}
function configureDroppables() {
@@ -2961,6 +2961,9 @@ function startDragging (itm, e) {
if (target.up('TBODY') == undefined)
return;
console.info("start dragging");
$("mailboxList").setStyle({ overflow: "visible" });
var row = target.up('TR');
var handle = $("dragDropVisual");
var selectedIds = $("messageListBody").getSelectedRowsId();
@@ -2996,7 +2999,9 @@ function whileDragging (itm, e) {
}
}
function stopDragging () {
function stopDragging() {
console.info("stop dragging");
$("mailboxList").setStyle({ overflow: "auto" });
var handle = $("dragDropVisual");
handle.hide();
if (handle.hasClassName("copy"))
+17 -13
View File
@@ -38,13 +38,18 @@ DIV#calendarsList
{ height: 100%; }
DIV.colorBox
{ display: inline;
border: 1px solid #333;
font-weight: normal;
{ n0display: inline-block;
display: inline-block;
n0float: left;
background: transparent url("event-gradient.png") repeat-x scroll left center;
n0border: 1px solid #333;
border-radius: 50%;
n0vertical-align: text-bottom;
margin-right: 3px;
font-size: 80%;
width: 1em;
height: .75em; }
n0margin: auto;
n0margin: 5px;
width: 11px;
height: 11px; }
UL#tasksList, UL#calendarList
{ cursor: default;
@@ -66,10 +71,6 @@ UL#calendarList
{ clear: left;
height: 115px; }
UL#calendarList LI
{ cursor: pointer;
white-space: nowrap; }
UL#tasksList
{ position: absolute;
top: 2em;
@@ -77,9 +78,10 @@ UL#tasksList
right: 0px;
bottom: .25em; }
UL#tasksList LI
UL#calendarList LI, UL#tasksList LI
{ cursor: pointer;
width: 100%;
line-height: 2em;
white-space: nowrap; }
UL#tasksList LI.overdue
@@ -1294,8 +1296,10 @@ DIV.event > DIV.eventInside
padding: 1px;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px; }
left: 2px;
right: 1px;
-webkit-border-radius: 2px;
border-radius: 2px; }
DIV.eventInside SPAN.location
{ font-size: smaller; }
+8 -6
View File
@@ -529,12 +529,20 @@ DIV.dTreeNode A._selected SPAN.nodeName
color: #fff;
}
/* drag'n'drop */
DIV.dTreeNode SPAN._dragOver
{
background-color: #9ABCD8;
color: #fff;
}
.genericHoverClass
{
background-color: #9ABCD8 !important;
color: #fff !important;
}
/* resizable columns */
TABLE TD.resize-handle-active,
@@ -549,12 +557,6 @@ DIV.resize-handle
top: 0px;
left: 0px; }
.genericHoverClass
{
background-color: #9ABCD8 !important;
color: #fff !important;
}
DIV.dialog
{ position: absolute;
width: 350px;