Commit 8b76afb9 by Frances Botsford

converted undo image in component settings list to FontAwesome

parent 1a8a7219
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<label class="label setting-label" for="<%= uniqueId %>"><%= model.get('display_name') %></label> <label class="label setting-label" for="<%= uniqueId %>"><%= model.get('display_name') %></label>
<input class="input setting-input setting-input-number" type="number" id="<%= uniqueId %>" value='<%= model.get("value") %>'/> <input class="input setting-input setting-input-number" type="number" id="<%= uniqueId %>" value='<%= model.get("value") %>'/>
<button class="action setting-clear inactive" type="button" name="setting-clear" value="Clear" data-tooltip="Clear"> <button class="action setting-clear inactive" type="button" name="setting-clear" value="Clear" data-tooltip="Clear">
<i class="ss-icon ss-symbolicons-block undo">&#x21A9;</i><span class="sr">Clear Value</span> <i class="icon-undo"></i><span class="sr">Clear Value</span>
</button> </button>
</div> </div>
<span class="tip setting-help"><%= model.get('help') %></span> <span class="tip setting-help"><%= model.get('help') %></span>
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<% }) %> <% }) %>
</select> </select>
<button class="action setting-clear inactive" type="button" name="setting-clear" value="Clear" data-tooltip="Clear"> <button class="action setting-clear inactive" type="button" name="setting-clear" value="Clear" data-tooltip="Clear">
<i class="ss-icon ss-symbolicons-block undo">&#x21A9;</i><span class="sr">Clear Value</span> <i class="icon-undo"></i><span class="sr">Clear Value</span>
</button> </button>
</div> </div>
<span class="tip setting-help"><%= model.get('help') %></span> <span class="tip setting-help"><%= model.get('help') %></span>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<label class="label setting-label" for="<%= uniqueId %>"><%= model.get('display_name') %></label> <label class="label setting-label" for="<%= uniqueId %>"><%= model.get('display_name') %></label>
<input class="input setting-input" type="text" id="<%= uniqueId %>" value='<%= model.get("value") %>'/> <input class="input setting-input" type="text" id="<%= uniqueId %>" value='<%= model.get("value") %>'/>
<button class="action setting-clear inactive" type="button" name="setting-clear" value="Clear" data-tooltip="Clear"> <button class="action setting-clear inactive" type="button" name="setting-clear" value="Clear" data-tooltip="Clear">
<i class="ss-icon ss-symbolicons-block undo">&#x21A9;</i><span class="sr">Clear Value</span> <i class="icon-undo"></i><span class="sr">Clear Value</span>
</button> </button>
</div> </div>
<span class="tip setting-help"><%= model.get('help') %></span> <span class="tip setting-help"><%= model.get('help') %></span>
...@@ -185,7 +185,7 @@ body.course.unit { ...@@ -185,7 +185,7 @@ body.course.unit {
&.new-component-problem { &.new-component-problem {
padding-bottom:10px; padding-bottom:10px;
.ss-icon, .editor-indicator { [class^="icon-"], .editor-indicator {
display: inline-block; display: inline-block;
} }
...@@ -245,7 +245,7 @@ body.course.unit { ...@@ -245,7 +245,7 @@ body.course.unit {
} }
} }
a{ a {
display: block; display: block;
padding: 15px 25px; padding: 15px 25px;
font-size: 15px; font-size: 15px;
...@@ -299,7 +299,7 @@ body.course.unit { ...@@ -299,7 +299,7 @@ body.course.unit {
.name { .name {
float: left; float: left;
.ss-icon { [class^="icon-"] {
@include transition(opacity .15s); @include transition(opacity .15s);
display: inline-block; display: inline-block;
top: 1px; top: 1px;
...@@ -320,14 +320,14 @@ body.course.unit { ...@@ -320,14 +320,14 @@ body.course.unit {
opacity: 0.3; opacity: 0.3;
} }
.ss-icon, .editor-indicator { [class^="icon-"], .editor-indicator {
display: none; display: none;
} }
&:hover { &:hover {
color: #fff; color: #fff;
.ss-icon { [class^="icon-"] {
opacity: 1.0; opacity: 1.0;
} }
......
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