From 74070d67f47edd38ed9dabf7a58a79b631ae8686 Mon Sep 17 00:00:00 2001 From: "mikep%oeone.com" Date: Thu, 20 Mar 2003 14:13:58 +0000 Subject: [PATCH] Adding in patch from 196759 from Eric to include checkbox in front of the task. git-svn-id: svn://10.0.0.236/trunk@139839 18797224-902f-48f8-a5cc-f745e15eee43 --- .../resources/skin/classic/calendar.css | 1 + .../resources/skin/modern/calendar.css | 22 +++++-------------- 2 files changed, 7 insertions(+), 16 deletions(-) diff --git a/mozilla/calendar/resources/skin/classic/calendar.css b/mozilla/calendar/resources/skin/classic/calendar.css index de6e28906d4..7ed99a8b07c 100644 --- a/mozilla/calendar/resources/skin/classic/calendar.css +++ b/mozilla/calendar/resources/skin/classic/calendar.css @@ -1281,6 +1281,7 @@ treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, completed), treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, duetoday), treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, overdue), +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, future), treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, inprogress) { list-style-image : url("chrome://calendar/skin/unifinder/checkbox_unchecked.png"); } diff --git a/mozilla/calendar/resources/skin/modern/calendar.css b/mozilla/calendar/resources/skin/modern/calendar.css index 079e641c60e..6d7bf3dca61 100644 --- a/mozilla/calendar/resources/skin/modern/calendar.css +++ b/mozilla/calendar/resources/skin/modern/calendar.css @@ -1282,26 +1282,16 @@ treechildren:-moz-tree-cell-text(completed) list-style-image : url("chrome://global/skin/checkbox/cbox-check.gif"); } -treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, inprogress) { - list-style-image : url("chrome://global/skin/checkbox/cbox.gif"); -} - -treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, inprogress, current) { - list-style-image : url("chrome://global/skin/checkbox/cbox-act.gif"); -} - -treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, overdue) { - list-style-image : url("chrome://global/skin/checkbox/cbox.gif"); -} - +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, future), +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, inprogress), +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, overdue), treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, duetoday) { list-style-image : url("chrome://global/skin/checkbox/cbox.gif"); } -treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, overdue, current) { - list-style-image : url("chrome://global/skin/checkbox/cbox-act.gif"); -} - +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, future, current), +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, inprogress, current), +treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, overdue, current), treechildren:-moz-tree-image(unifinder-todo-tree-col-completed, duetoday, current) { list-style-image : url("chrome://global/skin/checkbox/cbox-act.gif"); }