- Planner Erledigt Icons angepasst

- Bufix beim Erledigen von Tasks
This commit is contained in:
Andreas Österreicher
2011-10-04 07:37:29 +00:00
parent 5c7dfcac0d
commit 4bf498b2c9
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ foreach($projekttask_obj->result as $projekttask)
$oRdf->obj[$i]->setAttribut('beschreibung',$projekttask->beschreibung);
$oRdf->obj[$i]->setAttribut('aufwand',$projekttask->aufwand);
$oRdf->obj[$i]->setAttribut('mantis_id',$projekttask->mantis_id);
$oRdf->obj[$i]->setAttribut('erledigt',$projekttask->erledigt);
$oRdf->obj[$i]->setAttribut('erledigt',($projekttask->erledigt?'true':'false'));
$oRdf->obj[$i]->setAttribut('projekttask_fk',$projekttask->projekttask_fk);
if($projekttask->projekttask_fk!='')
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 62 B

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

+2 -2
View File
@@ -51,7 +51,7 @@ treechildren::-moz-tree-cell-text(odd, selected) { color: #000000; }
treechildren::-moz-tree-checkbox
{
/* unchecked checkbox treecells. This style MUST come before treechildren::-moz-tree-checkbox(checked) otherwise it won't take effect. */
list-style-image: url("../skin/images/false_red.png");
list-style-image: url("../skin/images/round.png");
}
treechildren::-moz-tree-checkbox(checked)
@@ -59,5 +59,5 @@ treechildren::-moz-tree-checkbox(checked)
/* css for checked cells. cbox-check.gif isn't available in Firefox 1, 2, and 3 on Mac OS X, so you should specify a URL to an image
in your extension or elsewhere. */
/*list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif");*/
list-style-image: url("../skin/images/true_green.png");
list-style-image: url("../skin/images/cbox-check.gif");
}