- Timestamp:
- 05/03/16 17:13:50 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Resource/Index.cshtml
r13805 r13827 41 41 class="btn pull-right" 42 42 style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 43 text-shadow:2px 2px black;font-weight:bold;margin-bottom:5px "43 text-shadow:2px 2px black;font-weight:bold;margin-bottom:5px;" 44 44 ng-class="{ 'btn-success': treeview.currentNode.IsDisposable, 'btn-warning': !treeview.currentNode.IsDisposable }" 45 45 ng-click="toggleDisposable()"> … … 60 60 ng-class="{ 'active': permissionview }" 61 61 ng-style="{ 'text-decoration': permissionview ? 'underline' : ''}"> 62 <a style="text-shadow:2px 2px black; color:white; font-weight:bold; border: 62 <a style="text-shadow:2px 2px black; color:white; font-weight:bold; border:1px solid white;" 63 63 href="" 64 64 ng-click="menuchange(1)"> … … 69 69 role="presentation" 70 70 ng-class="{ 'active': resaddview }" 71 ng-style="{ 71 ng-style="{'text-decoration': resaddview ? 'underline' : ''}"> 72 72 73 73 <a style="text-shadow:2px 2px black; color:white; font-weight:bold; border: 1px solid white;" … … 88 88 <p> 89 89 This shows only 90 <span style="text-decoration:underline ">direct members</span>90 <span style="text-decoration:underline;">direct members</span> 91 91 of the group (not members of subgroups). 92 92 </p> 93 <p><span style="color:lightgray;">Gray clients</span> are already subscribed to another group. White are ungrouped.</p> 93 94 <p>Adding a member will overwrite the current group it's a member in (if any)</p> 94 95 <p>Removing an existing member will make it revert to Ungrouped.</p> … … 97 98 style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); 98 99 text-shadow:2px 2px black;">Reset to current members</a> 99 <div class="row" style="margin:5px ">100 <div class="row" style="margin:5px;"> 100 101 <h4>All resources</h4> 101 102 <label class="col-sm-3" 102 103 ng-style="{ 103 'background-color':client.add === true ? 'green' : '' }" 104 ng-repeat="client in clients | orderBy:['!add', 'Name' ] | filter:searchText"> 105 <input type="checkbox" 104 'background-color':client.add === true ? 'green' : '', 105 'color':client.ParentResourceId != null ? 'lightgray' : ''}" 106 ng-repeat="client in clients | orderBy:['!add', 'Name'] | filter:searchText"> 107 <input 108 type="checkbox" 106 109 name="addres" 107 110 value="{{client.Id}}" … … 110 113 </div> 111 114 </div> 112 <input style="display:none "115 <input style="display:none;" 113 116 type="text" 114 117 id="groupid" … … 163 166 class="row panel-heading" 164 167 style="padding:10px;"> 165 <table class="table" style="margin-bottom:0 px">168 <table class="table" style="margin-bottom:0;"> 166 169 <tbody> 167 170 <tr> … … 186 189 <td> 187 190 188 <input style="display:none " type="text" id="inpid" name="inpid" value="{{treeview.currentNode.Id}}" />191 <input style="display:none;" type="text" id="inpid" name="inpid" value="{{treeview.currentNode.Id}}" /> 189 192 <input type="checkbox" ng-model="checkDel" /> I want to delete this group 190 193 </td> … … 225 228 class="row" 226 229 style="padding:10px;"> 227 <input style="display:none " type="text" id="inpid" name="inpid" value="{{treeview.currentNode.Id}}" />228 229 <span style="padding:0 px" class="col-sm-4">Change group: </span>230 <input style="display:none;" type="text" id="inpid" name="inpid" value="{{treeview.currentNode.Id}}" /> 231 232 <span style="padding:0;" class="col-sm-4">Change group: </span> 230 233 231 234 <select class="form-control col-sm-5" … … 258 261 ui-calendar="uiConfig.calendar" 259 262 id="resourcecalendar" 260 style="font-size:medium "263 style="font-size:medium;" 261 264 class="span8 calendar" 262 265 ng-model="currentcal.down"></div> … … 304 307 <td> 305 308 <input type="checkbox" class="checkbox" ng-model="currentcal.down[0][selectedEventId].rec.recurrence" ng-change="setChanged(selectedEventId)" /> 306 <p ng-if="currentcal.down[0][selectedEventId].changed && currentcal.down[0][selectedEventId].rec.recurrence" style="color:darkred; font-weight:bold">309 <p ng-if="currentcal.down[0][selectedEventId].changed && currentcal.down[0][selectedEventId].rec.recurrence" style="color:darkred; font-weight:bold;"> 307 310 The recurrence itself will be made during saving, settings can be changed here. 308 311 </p>
Note: See TracChangeset
for help on using the changeset viewer.