Commit 118a8884 by Frances Botsford Committed by David Baumgold

removed symbolset, replaced with fontawesome for checklists

parent 67df257d
...@@ -11,11 +11,11 @@ ...@@ -11,11 +11,11 @@
<span class="int"><%= percentChecked %></span>% of checklist completed</span></span> <span class="int"><%= percentChecked %></span>% of checklist completed</span></span>
<header> <header>
<h3 class="checklist-title title-2 is-selectable" title="Collapse/Expand this Checklist"> <h3 class="checklist-title title-2 is-selectable" title="Collapse/Expand this Checklist">
<i class="ss-icon ss-symbolicons-standard icon-arrow ui-toggle-expansion">&#x25BE;</i> <i class="icon-caret-down ui-toggle-expansion"></i>
<%= checklistShortDescription %></h3> <%= checklistShortDescription %></h3>
<span class="checklist-status status"> <span class="checklist-status status">
Tasks Completed: <span class="status-count"><%= itemsChecked %></span>/<span class="status-amount"><%= items.length %></span> Tasks Completed: <span class="status-count"><%= itemsChecked %></span>/<span class="status-amount"><%= items.length %></span>
<i class="ss-icon ss-symbolicons-standard icon-confirm">&#x2713;</i> <i class="icon-ok"></i>
</span> </span>
</header> </header>
...@@ -58,4 +58,4 @@ ...@@ -58,4 +58,4 @@
<% taskIndex+=1; }) %> <% taskIndex+=1; }) %>
</ul> </ul>
</section> </section>
\ No newline at end of file
...@@ -62,7 +62,7 @@ body.course.checklists { ...@@ -62,7 +62,7 @@ body.course.checklists {
.ui-toggle-expansion { .ui-toggle-expansion {
@include transition(rotate .15s ease-in-out .25s); @include transition(rotate .15s ease-in-out .25s);
@include font-size(14); @include font-size(21);
display: inline-block; display: inline-block;
vertical-align: middle; vertical-align: middle;
margin-right: ($baseline/2); margin-right: ($baseline/2);
...@@ -91,10 +91,9 @@ body.course.checklists { ...@@ -91,10 +91,9 @@ body.course.checklists {
color: $gray-l2; color: $gray-l2;
.icon-confirm { .icon-ok {
@include font-size(20); @include font-size(20);
display: inline-block; display: inline-block;
vertical-align: middle;
margin-left: ($baseline/2); margin-left: ($baseline/2);
color: $gray-l4; color: $gray-l4;
} }
...@@ -184,13 +183,13 @@ body.course.checklists { ...@@ -184,13 +183,13 @@ body.course.checklists {
header { header {
.checklist-title, .icon-confirm { .checklist-title, .icon-caret-down {
color: $green; color: $green;
} }
.checklist-status { .checklist-status {
.status-count, .status-amount, .icon-confirm { .status-count, .status-amount, .icon-ok {
color: $green; color: $green;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment