Monotone-Parent: d63ac588bc9d6090e40d0640860dacaee66d0edb

Monotone-Revision: 20c7862f09b4fde6c2067b6fa562bc2dcd72ae78

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-11-12T20:04:42
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2007-11-12 20:04:42 +00:00
parent 1e990e3bc9
commit 412d3de100
8 changed files with 48 additions and 40 deletions

View File

@ -9,7 +9,7 @@
className="UIxContactsListViewContainer"
selectorComponentClass="selectorComponentClass"
title="name">
<table id="contactsList">
<table id="contactsList" cellspacing="0">
<thead>
<tr class="tableview">
<!-- localize -->

View File

@ -1,6 +1,6 @@
<?xml version='1.0' standalone='yes'?>
<!DOCTYPE table>
<table id="messageList"
<table id="messageList" cellspacing="0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:var="http://www.skyrix.com/od/binding"
xmlns:const="http://www.skyrix.com/od/constant"

View File

@ -89,7 +89,7 @@
<div id="rightPanel">
<var:component className="UIxCalFilterPanel" />
<div id="eventsListView">
<table id="eventsList">
<table id="eventsList" cellspacing="0">
<thead>
<tr>
<td class="headerCell headerTitle sortableTableHeader"><var:string label:value="Title"/></td>

View File

@ -191,23 +191,19 @@ DIV#dateSelectorView
margin: 0px;
border: 0px; }
#dateSelector > .header A
{ width: 1em;
padding: .4em .2em; }
#dateSelector > .header #leftArrow
{ float: left; }
#dateSelector > .header #rightArrow
{ float: right; }
{ float: right;
margin-right: 2px; }
#dateSelector > .header SPAN
{ cursor: default;
font-size: medium;
vertical-align: middle;
font-weight: bold;
border: 1px solid transparent;
margin: .5em .2em; }
border: 1px solid transparent; }
#dateSelector > .header SPAN:hover
{ border-left: 1px solid #fff;
@ -221,43 +217,32 @@ DIV#dateSelectorView
TABLE#dateSelectorTable
{ padding: 2px; }
#dateSelector TABLE#dateSelectorTable TD
{ width: 14%; }
#dateSelector TABLE#dateSelectorTable TD TABLE TD
{ width: 100% }
#dateSelector TABLE,
#dateSelector TABLE TABLE
{ border-collapse: collapse;
margin: 0px auto;
width: 100%; }
#dateSelector TABLE#dateSelectorTable TD TABLE TD
{ width: 0px; /* temp hack */ }
#dateSelector TABLE#dateSelectorTable TD TABLE TD.activeDay,
#dateSelector TABLE#dateSelectorTable TD TABLE TD.inactiveDay,
#dateSelector TABLE#dateSelectorTable TD TABLE TD.dayOfToday
{ width: 1em; }
#dateSelector TABLE TABLE TD
{ cursor: pointer;
margin: 0px;
padding: 0px;
width: 100%;
border: 1px solid #fff; }
border: 1px solid #fff;
text-align: center; }
#dateSelector TABLE TABLE TD:hover
{ color: #f00;
border: 1px solid #deebf7; }
#dateSelector TABLE TABLE TD:hover A
{ color: #f00; }
#dateSelector .inactiveDay
{ color: #dedfde; }
#dateSelector .dayOfToday
{ background-color: #deebf7;
border: 1px solid #deebf7; }
{ border: 1px solid #deebf7; }
#dateSelector TD SPAN
{ width: 1.5em;
height: 1.5em;
text-align: center;
{ text-align: center;
display: block; }
#dateSelector TD SPAN A
@ -269,6 +254,17 @@ TABLE#dateSelectorTable
{ background-color: #ddd;
border: 1px solid #deebf7; }
#dateSelector TD.inactiveDay A
{ color: #dedfde; }
#dateSelector TD.dayOfToday
{ background-color: #deebf7;
border: 1px solid #deebf7; }
#dateSelector TD._selected A
{ color: #fff; }
TABLE#eventsList
{ width: 100%; }
@ -287,9 +283,9 @@ TABLE#eventsList TH
._unfocused#dateSelector TD._selected,
UL._unfocused > LI._selected,
TABLE._unfocused#eventsList TR._selected TD
{
background-color: #d4d0c8 !important;;
color: #fff !important;;
{
background-color: #d4d0c8 !important;
color: #fff !important;
}
SPAN.dayCellLabel

View File

@ -6,6 +6,7 @@ var listFilter = 'view_today';
var listOfSelection = null;
var selectedCalendarCell;
var calendarColorIndex = null;
var showCompletedTasks = 0;
@ -1459,9 +1460,12 @@ function appendCalendar(folderName, folderPath) {
li.setAttribute("owner", owner);
// Generate new color
if (calendarColorIndex == null)
calendarColorIndex = lis.length;
calendarColorIndex++;
var colorTable = [1, 1, 1];
var color;
var currentValue = lis.length + 1;
var currentValue = calendarColorIndex;
var index = 0;
while (currentValue) {
if (currentValue & 1)

View File

@ -58,7 +58,7 @@ TEXTAREA
padding-bottom: 0em; }
SELECT#calendarList
{ width: 7em; }
{ width: 20em; }
A#changeUrlButton
{ margin-left: 1em; }

View File

@ -600,9 +600,9 @@ LI.denied
LI._selected,
TR._selected > TD,
TD._selected
{
{
background-color: #4b6983;
color: #fff;
color: #000 !important;
}
LI[class~="_selected"].denied

View File

@ -16,11 +16,19 @@ DIV.javascriptMessagePseudoWindow,
DIV.javascriptMessagePseudoTopWindow
{ filter: alpha(opacity=100); }
TD.headerCell,
TD.tbtv_headercell,
TD.tbtv_navcell
{ border: 1px solid #fff;
border-right: 1px solid #666;
border-bottom: 1px solid #666; }
/* MailerUI */
IMG.dragMessage
{ filter: alpha(opacity=70); }
/* SchedulerUI */
DIV[class~="event"]._selected > DIV.eventInside
{ filter: alpha(opacity=70); }