Small fixes after tests

Monotone-Parent: b1fac1b458b718d0b80ecc77aa59220107cd9ef8
Monotone-Revision: 01bf1d89cd94ea18b92612c7cdf2f88d80cd7d93

Monotone-Author: crobert@inverse.ca
Monotone-Date: 2009-07-16T17:21:25
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
C Robert
2009-07-16 17:21:25 +00:00
parent d3e2bdf23a
commit aee8aa1f5e
3 changed files with 11 additions and 6 deletions

View File

@@ -81,8 +81,8 @@
string="itemFirstWeekText" selection="userFirstWeek"
/></label><br/>
<label><var:string label:value="Categories"/></label><br/>
<div style="overflow:auto; height:230px; padding:2px;"
><table id="categoriesList" cellspacing="0" width="100%">
<div id="categoriesListWrapper"
><table id="categoriesList" cellspacing="0">
<thead>
<tr class="tableview"
><td const:class="tbtv_headercell" const:id="nameTableHeader"

View File

@@ -33,8 +33,13 @@ DIV#identitiesView
max-width: 390px;
height: 145px; }
TABLE#messageList
{ width: 100%; }
TABLE#categoriesList
{ width: 95%; }
DIV#categoriesListWrapper
{ overflow:auto;
height:230px;
padding:2px; }
div.colorBox
{ border: 1px solid #333333;

View File

@@ -67,8 +67,8 @@ function resetTableActions () {
row.observe("selectstart", listRowMouseDownHandler);
var tds = row.childElements ();
tds[0].observe("mousedown", endAllEditables);
tds[1].observe("mousedown", endAllEditables);
tds[0].observe ("dblclick", onNameEdit);
tds[1].observe("mousedown", endAllEditables);
tds[1].childElements ()[0].observe ("dblclick", onColorEdit);
}
}
@@ -129,7 +129,7 @@ function onColorEdit (e) {
);
cPicker.focus();
preventDefault(event);
preventDefault(e);
}
function onColorPickerChoice (newColor) {