Tomas M. - 2011-11-08

1. Girls from our office said that the EYE in calendar view looks creepy :)

2. v3.0 is definitely big overhaul. Now, let's refine CSS even more.

BODY ID CSS structure:

Home page: body id="project-list"
Project:   body id="task-show"
Task:      body id="task-show"

Clearly it would be a good idea for the Project page have a body id="project-show" , I think most likely Andrew just forgot this one :)

Ideally we could have info in body tag, that could tell us the level of the task (how deep it is in relation to parent project)

This could be possible solution for the Project/Task/Subtask:

body id="task-show level1"

If we assume that Task = level0

3. Many project views usually ends like this (overall in the HTML listing it is very tricky to understand where ends what):

</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!-- end -->

My suggestion is to add more info to END (same as for START) also, mark closing of ULs and DIVs too:

</ul><!-- .ul-2 -->
</li>
</ul><!-- .ul-1 -->
</li>
</ul><!-- .ul- -->
</div><!-- .boxstyle boxstyle-normal -->
</div><!-- .boxdata boxdata-normal -->
</div><!-- #task-list -->
<!-- end of Tasks - box -->