Commit fa330784 by Frances Botsford Committed by David Baumgold

removed symbolset, replaced with fontawesome for gradable status; added…

removed symbolset, replaced with fontawesome for gradable status; added transform-origin for saving notification animation to remove wobble
parent dc2acb18
...@@ -35,7 +35,7 @@ CMS.Views.OverviewAssignmentGrader = Backbone.View.extend({ ...@@ -35,7 +35,7 @@ CMS.Views.OverviewAssignmentGrader = Backbone.View.extend({
// TODO move to a template file // TODO move to a template file
'<h4 class="status-label"><%= assignmentType %></h4>' + '<h4 class="status-label"><%= assignmentType %></h4>' +
'<a data-tooltip="Mark/unmark this subsection as graded" class="menu-toggle" href="#">' + '<a data-tooltip="Mark/unmark this subsection as graded" class="menu-toggle" href="#">' +
'<% if (!hideSymbol) {%><span class="ss-icon ss-standard">&#x2713;</span><%};%>' + '<% if (!hideSymbol) {%><i class="icon-ok"></i><%};%>' +
'</a>' + '</a>' +
'<ul class="menu">' + '<ul class="menu">' +
'<% graders.each(function(option) { %>' + '<% graders.each(function(option) { %>' +
......
...@@ -752,8 +752,9 @@ hr.divide { ...@@ -752,8 +752,9 @@ hr.divide {
.icon-plus { .icon-plus {
display: inline-block; display: inline-block;
vertical-align: baseline; vertical-align: middle;
margin-right: ($baseline/4); margin-right: ($baseline/4);
margin-top: -2px;
line-height: 0; line-height: 0;
} }
} }
......
...@@ -438,7 +438,9 @@ ...@@ -438,7 +438,9 @@
[class^="icon"] { [class^="icon"] {
@include anim-rotateClockwise(3s, linear, infinite); @include anim-rotateClockwise(3s, linear, infinite);
width: 22px; width: 25px;
margin: -4px 10px 0 0;
@include transform-origin(52% 60%);
} }
.copy p { .copy p {
......
...@@ -56,6 +56,12 @@ body.course.outline { ...@@ -56,6 +56,12 @@ body.course.outline {
} }
} }
[class^="icon-"] {
vertical-align: middle;
margin-top: -5px;
display: inline-block;
}
.menu { .menu {
@include font-size(12); @include font-size(12);
@include border-radius(4px); @include border-radius(4px);
...@@ -331,6 +337,7 @@ body.course.outline { ...@@ -331,6 +337,7 @@ body.course.outline {
&:hover, &.is-active { &:hover, &.is-active {
color: $blue; color: $blue;
} }
} }
.menu { .menu {
......
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