From 44b556aaa6b61da8d8b7900fdcf1c2e7b00e4437 Mon Sep 17 00:00:00 2001
From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Mon, 18 Feb 2019 08:23:05 -0500
Subject: [PATCH] [frio] Change comment expand icons to carets

---
 view/theme/frio/templates/wall_thread.tpl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/view/theme/frio/templates/wall_thread.tpl b/view/theme/frio/templates/wall_thread.tpl
index 591e102c77..1fb1221253 100644
--- a/view/theme/frio/templates/wall_thread.tpl
+++ b/view/theme/frio/templates/wall_thread.tpl
@@ -42,11 +42,11 @@ as the value of $top_child_total (this is done at the end of this file)
 		<div class="hide-comments-outer-wrapper">
 			<div class="hide-comments-outer fakelink" onclick="showHideComments({{$item.id}});">
 				<span id="hide-comments-total-{{$item.id}}" class="hide-comments-total">
-					<i class="fa fa-plus-square" aria-hidden="true"></i>
+					<i class="fa fa-caret-right" aria-hidden="true"></i>
 					{{$item.num_comments}} - {{$item.show_text}}
 				</span>
 				<span id="hide-comments-{{$item.id}}" class="hide-comments" style="display: none">
-					<i class="fa fa-minus-square" aria-hidden="true"></i>
+					<i class="fa fa-caret-down" aria-hidden="true"></i>
 					{{$item.num_comments}} - {{$item.hide_text}}
 				</span>
 			</div>