diff --git a/app/views/contexts/_mobile_context.rhtml b/app/views/contexts/_mobile_context.rhtml
index 52236e1f..99c06233 100644
--- a/app/views/contexts/_mobile_context.rhtml
+++ b/app/views/contexts/_mobile_context.rhtml
@@ -7,6 +7,7 @@ if not @not_done.empty?
-%>
<%=mobile_context.name%>
+
<%= render :partial => "todos/mobile_todo",
:collection => @not_done,
:locals => { :parent_container_type => "context" }-%>
diff --git a/app/views/todos/_mobile_todo.rhtml b/app/views/todos/_mobile_todo.rhtml
index 59e16bba..88147afa 100644
--- a/app/views/todos/_mobile_todo.rhtml
+++ b/app/views/todos/_mobile_todo.rhtml
@@ -1,10 +1,12 @@
<% @todo = mobile_todo
if mobile_todo.starred?
+ bullet = ""+image_tag("menustar_small.gif")+""
li_class = " class=\"star\""
else
+ bullet = "» "
li_class = ""
end -%>
-- ><%
+
- ><%= bullet %><%
if mobile_todo.completed?
-%>
<% else
diff --git a/public/stylesheets/mobile.css b/public/stylesheets/mobile.css
index 06af678d..08d0426d 100644
--- a/public/stylesheets/mobile.css
+++ b/public/stylesheets/mobile.css
@@ -127,7 +127,7 @@ span.prj, span.ctx{
}
ul.c li.star {
- list-style-image:url(../images/menustar_small.gif)
+list-style-type: circle;
}
ul.c {