summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/css/style.css4
-rw-r--r--www/templates/reorder-modal.html4
2 files changed, 6 insertions, 2 deletions
diff --git a/www/css/style.css b/www/css/style.css
index 788f27f5..24b7c717 100644
--- a/www/css/style.css
+++ b/www/css/style.css
@@ -16,6 +16,10 @@
background-size:contain;
}
+.eye-red
+{
+ color:red;
+}
.icon.mp4-icon {
background-repeat: no-repeat;
diff --git a/www/templates/reorder-modal.html b/www/templates/reorder-modal.html
index 397d4be7..e4a07fae 100644
--- a/www/templates/reorder-modal.html
+++ b/www/templates/reorder-modal.html
@@ -10,8 +10,8 @@
<div class="list">
<span ng-repeat="item in copyMontage">
<a class="item item-icon-left" ng-click="toggleHide($index)" href="">
- <i ng-class="{'icon ion-eye':item.Monitor.listDisplay=='show','icon ion-eye-disabled':item.Monitor.listDisplay!='show'}"> </i>
- {{item.Monitor.Name}}
+ <i ng-class="{'icon ion-eye':item.Monitor.listDisplay=='show','eye-red icon ion-eye-disabled':item.Monitor.listDisplay!='show'}"> </i>
+ <span ng-class="{'eye-red':item.Monitor.listDisplay!='show'}">{{item.Monitor.Name}}</span>
</a>
</span>