Skip to content

Commit

Permalink
#503 - disabled monitors are now fully red
Browse files Browse the repository at this point in the history
  • Loading branch information
pliablepixels committed Mar 31, 2017
1 parent 3bf0a41 commit 6786e0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions www/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
background-size:contain;
}

.eye-red
{
color:red;
}

.icon.mp4-icon {
background-repeat: no-repeat;
Expand Down
4 changes: 2 additions & 2 deletions www/templates/reorder-modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ <h1 class="title"></h1>
<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>
Expand Down

0 comments on commit 6786e0f

Please sign in to comment.