diff options
| -rw-r--r-- | www/css/style.css | 5 | ||||
| -rw-r--r-- | www/templates/reorder-modal.html | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/www/css/style.css b/www/css/style.css index 274df9f8..5f4fdd0e 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -22,6 +22,11 @@ color:red; } +.eye-background-red +{ + background-color:rgba(231, 76, 60,0.2); +} + .icon.mp4-icon { background-repeat: no-repeat; background-position: 50%; diff --git a/www/templates/reorder-modal.html b/www/templates/reorder-modal.html index 7a7a7aa4..bc442128 100644 --- a/www/templates/reorder-modal.html +++ b/www/templates/reorder-modal.html @@ -12,7 +12,8 @@ - <a class="item item-avatar item-icon-right " ng-click="toggleHide($index)" href=""> + + <a ng-class="{ 'item item-avatar item-icon-right' : item.Monitor.listDisplay == 'show', 'item item-avatar item-icon-right eye-background-red' : item.Monitor.listDisplay!='show' }" ng-click="toggleHide($index)" href="" > <img src="{{item.Monitor.streamingURL}}/nph-zms?mode=single&monitor={{item.Monitor.Id}}&scale=50{{$root.authSession}}" fallback-src /> |
