diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-04-02 11:30:16 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-04-02 11:30:16 -0400 |
| commit | ab51909e327dfdd0449479ea4e830bebf257487b (patch) | |
| tree | 2dc50666286b52711de240fae087bfb6608a13d3 | |
| parent | c7ca1e03a10298759325321dc52e8b50d3fa0183 (diff) | |
added re-order avatar images and fixed red coloring
| -rw-r--r-- | www/css/style.css | 1 | ||||
| -rw-r--r-- | www/templates/reorder-modal.html | 16 |
2 files changed, 12 insertions, 5 deletions
diff --git a/www/css/style.css b/www/css/style.css index 24b7c717..274df9f8 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -16,6 +16,7 @@ background-size:contain; } + .eye-red { color:red; diff --git a/www/templates/reorder-modal.html b/www/templates/reorder-modal.html index e4a07fae..7a7a7aa4 100644 --- a/www/templates/reorder-modal.html +++ b/www/templates/reorder-modal.html @@ -9,12 +9,18 @@ <ion-content> <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','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 class="item item-avatar item-icon-right " ng-click="toggleHide($index)" href=""> + + <img src="{{item.Monitor.streamingURL}}/nph-zms?mode=single&monitor={{item.Monitor.Id}}&scale=50{{$root.authSession}}" fallback-src /> + + <i ng-class="{'icon ion-eye':item.Monitor.listDisplay=='show','eye-red icon ion-eye-disabled':item.Monitor.listDisplay!='show'}"> </i><h2><span ng-class="{'eye-red':item.Monitor.listDisplay!='show'}">{{item.Monitor.Name}}</span></h2><p>{{'kId' | translate}}:{{item.Monitor.Id}}, {{'kMode' | translate}}:{{item.Monitor.Function}}</p> + </a> - - </span> + + </span> </div> </ion-content> </ion-modal-view> |
