- <%= link_to "Forums", action: "index" %> <%= icon 'fas', 'chevron-right' %> <%= namelink @forum %>
+ <%= link_to "Forums", action: "index" %> <%= icon 'chevron-right' %> <%= namelink @forum %>
diff --git a/app/views/gatherers/_list.html.erb b/app/views/gatherers/_list.html.erb
index 2b058af..62e9606 100644
--- a/app/views/gatherers/_list.html.erb
+++ b/app/views/gatherers/_list.html.erb
@@ -19,7 +19,7 @@
<%= flag(gatherer.user.country) if gatherer.user && gatherer.user.country %>
<% if gatherer == captain and gatherer.team == gatherer.gather.turn %>
- <%= icon 'fas', 'chevron-right' %>
+ <%= icon 'chevron-right' %>
<% end %>
<%= namelink gatherer.user %>
diff --git a/app/views/gathers/_running.html.erb b/app/views/gathers/_running.html.erb
index 50397d5..529e917 100644
--- a/app/views/gathers/_running.html.erb
+++ b/app/views/gathers/_running.html.erb
@@ -11,7 +11,7 @@
<%= namelink gatherer.user %>
<% if cuser and gatherer.can_destroy?(cuser) %>
<%= link_to gatherer, method: :delete, class: 'delete' do %>
- <%= icon 'fas', 'times' %>
+ <%= icon 'times' %>
<% end %>
<% end %>
diff --git a/app/views/gathers/index.html.erb b/app/views/gathers/index.html.erb
index 939f1b8..e4d205d 100644
--- a/app/views/gathers/index.html.erb
+++ b/app/views/gathers/index.html.erb
@@ -18,7 +18,7 @@
<% if gatherer.team == 1 %>
<%= link_to gatherer.user.to_s, User.find_by_username(gatherer.user.to_s) %>
<% if gather.captain1 == gatherer %>
- <%= icon 'fas', 'star' %>
+ <%= icon 'star' %>
<% end %>
<% end %>
@@ -32,7 +32,7 @@
<% if gatherer.team == 2 %>
<%= link_to gatherer.user.to_s, User.find_by_username(gatherer.user.to_s) %>
<% if gather.captain2 == gatherer %>
- <%= icon 'fas', 'star' %>
+ <%= icon 'star' %>
<% end %>
<% end %>
diff --git a/app/views/gathers/show.html.erb b/app/views/gathers/show.html.erb
index 82d9140..904d405 100644
--- a/app/views/gathers/show.html.erb
+++ b/app/views/gathers/show.html.erb
@@ -132,14 +132,14 @@
<%= link_to @gather.previous_gather, class: 'button tiny' do %>
- <%= icon 'fas', 'chevron-left' %> Previous
+ <%= icon 'chevron-left' %> Previous
<% end %>
<% if @gather.next_gather %>
<%= link_to @gather.next_gather, class: 'button tiny' do %>
- Next <%= icon 'fas', 'chevron-right' %>
+ Next <%= icon 'chevron-right' %>
<% end %>
<% end %>
@@ -188,7 +188,7 @@
diff --git a/app/views/matches/_list.html.erb b/app/views/matches/_list.html.erb
index 8cb6e01..d5b48eb 100644
--- a/app/views/matches/_list.html.erb
+++ b/app/views/matches/_list.html.erb
@@ -47,9 +47,9 @@
<% if match.contest.contest_type == Contest::TYPE_LADDER %>
<% if match.get_friendly(:points) > 0 %>
- <%= icon 'fas', 'chevron-up' %>
+ <%= icon 'chevron-up' %>
<% elsif match.get_friendly(:points) < 0 %>
- <%= icon 'fas', 'chevron-down' %>
+ <%= icon 'chevron-down' %>
<% end %>
<%= match.get_friendly(:points) %>
|
diff --git a/app/views/matches/show.html.erb b/app/views/matches/show.html.erb
index 6246bf1..61e394c 100755
--- a/app/views/matches/show.html.erb
+++ b/app/views/matches/show.html.erb
@@ -29,7 +29,7 @@
<% @match.team1_lineup.each do |teamer| %>
<% if teamer.user == @match.motm %>
- <%= icon 'fas', 'star' %>
+ <%= icon 'star' %>
<% end %>
<%= teamer.user.username %>
<%= flag teamer.user.country %>
@@ -47,7 +47,7 @@
<%= flag teamer.user.country %>
<%= teamer.user.username %>
<% if teamer.user == @match.motm %>
- <%= icon 'fas', 'star' %>
+ <%= icon 'star' %>
<% end %>
<% end %>
diff --git a/app/views/teams/_list.html.erb b/app/views/teams/_list.html.erb
index 0d50903..b560f56 100644
--- a/app/views/teams/_list.html.erb
+++ b/app/views/teams/_list.html.erb
@@ -18,15 +18,15 @@
<% if cuser and cuser.admin? %>
<%= link_to edit_team_path(team) do %>
- <%= icon 'fas', 'pencil' %>
+ <%= icon 'pencil' %>
<% end %>
<% if team.active %>
<%= link_to team, confirm: 'Are you sure?', method: :delete do %>
- <%= icon 'fas', 'times' %>
+ <%= icon 'times' %>
<% end %>
<% else %>
<%= link_to action: "recover", id: team do %>
- <%= icon 'fas', 'save' %>
+ <%= icon 'save' %>
<% end %>
<% end %>
|
diff --git a/app/views/teams/edit.html.erb b/app/views/teams/edit.html.erb
index fd37d29..a0cba1a 100644
--- a/app/views/teams/edit.html.erb
+++ b/app/views/teams/edit.html.erb
@@ -74,7 +74,7 @@
<%= link_to member, confirm: 'Are you sure?', method: :delete, class: 'button tiny' do %>
- <%= icon 'fas', 'times' %> Remove
+ <%= icon 'times' %> Remove
<% end %>
|