2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

Revert font awesome 5 changes

We are still pushing ahead on this 100% just need a bit longer to prepare
all plugins
This commit is contained in:
Sam 2018-11-08 16:12:18 +11:00
parent 0232a3b5e5
commit 42572ff138
131 changed files with 2251 additions and 6736 deletions

View file

@ -14,7 +14,7 @@ widgetTest("single, not selected", {
},
test(assert) {
assert.ok(find("li .d-icon-far-circle:eq(0)").length === 1);
assert.ok(find("li .d-icon-circle-o:eq(0)").length === 1);
}
});
@ -27,7 +27,7 @@ widgetTest("single, selected", {
},
test(assert) {
assert.ok(find("li .d-icon-far-dot-circle:eq(0)").length === 1);
assert.ok(find("li .d-icon-dot-circle-o:eq(0)").length === 1);
}
});
@ -43,7 +43,7 @@ widgetTest("multi, not selected", {
},
test(assert) {
assert.ok(find("li .d-icon-far-square:eq(0)").length === 1);
assert.ok(find("li .d-icon-square-o:eq(0)").length === 1);
}
});
@ -59,6 +59,6 @@ widgetTest("multi, selected", {
},
test(assert) {
assert.ok(find("li .d-icon-far-check-square:eq(0)").length === 1);
assert.ok(find("li .d-icon-check-square-o:eq(0)").length === 1);
}
});