aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--view/php/theme_init.php1
-rw-r--r--view/theme/redbasic/css/style.css6
-rwxr-xr-xview/tpl/conv_item.tpl2
3 files changed, 8 insertions, 1 deletions
diff --git a/view/php/theme_init.php b/view/php/theme_init.php
index e4a56acc3..8b75bc940 100644
--- a/view/php/theme_init.php
+++ b/view/php/theme_init.php
@@ -10,6 +10,7 @@ head_add_css('library/jgrowl/jquery.jgrowl.css');
head_add_css('library/jslider/css/jslider.css');
head_add_css('library/prettyphoto/css/prettyPhoto.css');
head_add_css('library/colorbox/colorbox.css');
+head_add_css('library/font_awesome/css/font-awesome.min.css');
head_add_js('js/jquery.js');
head_add_js('js/jquery-migrate-1.1.1.js');
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index f929087b1..96ea90c95 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -909,6 +909,12 @@ footer {
.wall-item-wrapper {
margin-left:10px;
}
+
+.wall-item-wrapper .icon-ok {
+ cursor: pointer;
+ color: darkgreen;
+}
+
.wall-item-lock {
left: 105px;
position: absolute;
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl
index f327b62a9..b5fd9f3b7 100755
--- a/view/tpl/conv_item.tpl
+++ b/view/tpl/conv_item.tpl
@@ -34,7 +34,7 @@
{{if $item.lock}}<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="{{$item.lock}}" onclick="lockview(event,{{$item.id}});" /></div>
{{else}}<div class="wall-item-lock"></div>{{/if}}
<div class="wall-item-location" id="wall-item-location-{{$item.id}}">{{$item.location}}</div>
- {{if $item.verified}}<img src="images/lock_icon.gif" alt="{{$item.verified}}" title="{{$item.verified}}" height="10" width="10" />{{/if}}
+ {{if $item.verified}}<i class="icon-ok" title="{{$item.verified}}"></i>{{/if}}
{{if $item.unverified}}<img src="images/unlock_icon.gif" alt="{{$item.unverified}}" title="{{$item.unverified}}" height="10" width="10" />{{/if}}
</div>
</div>