mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #830 from DimalChandrasiri/master
Fixes Both #1113 and #1083 issues
This commit is contained in:
commit
239a27f5b0
@ -209,7 +209,7 @@
|
||||
data-search="{{platform}}"
|
||||
data-display="{{platform}}">
|
||||
</td>
|
||||
<td class="remove-padding-top"
|
||||
<td class="remove-padding-top hidden"
|
||||
data-search="{{ownershipType}}"
|
||||
data-display="{{ownershipType}}"
|
||||
data-grid-label="Ownership">
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
}
|
||||
</style>
|
||||
{{#each control_operations}}
|
||||
<a href="javascript:operationSelect('{{operation}}')">
|
||||
<a class='operation-tile' href="javascript:operationSelect('{{operation}}')">
|
||||
<i class="fw fw-service"></i>
|
||||
<span>{{name}}</span>
|
||||
</a>
|
||||
|
||||
@ -35,7 +35,7 @@
|
||||
}
|
||||
</style>
|
||||
{{#each control_operations}}
|
||||
<a href="javascript:operationSelect('{{operation}}')">
|
||||
<a class='operation-tile' href="javascript:operationSelect('{{operation}}')">
|
||||
{{#if iconFont}}
|
||||
<i class="fw {{iconFont}}"></i>
|
||||
{{else}}
|
||||
|
||||
@ -66,7 +66,7 @@ var disableInlineError = function (inputField, errorMsg, errorSign) {
|
||||
*/
|
||||
function loadGroups(callback) {
|
||||
invokerUtil.get(
|
||||
"/api/device-mgt/v1.0/groups",
|
||||
"/api/device-mgt/v1.0/admin/groups",
|
||||
function (data) {
|
||||
data = JSON.parse(data);
|
||||
callback(data.deviceGroups);
|
||||
|
||||
@ -2844,6 +2844,31 @@ a.ast-type-item:hover {
|
||||
}
|
||||
|
||||
/* operations panel/board */
|
||||
.operation-tile{
|
||||
width: 88px;
|
||||
height: 100px;
|
||||
background-color: #ebebeb;
|
||||
float: left;
|
||||
margin: 0px 10px 10px 0px;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.operation-tile i{
|
||||
padding: 15px 0px 0px 0px;
|
||||
display: block;
|
||||
min-height: 65px;
|
||||
margin: -5px !important;
|
||||
font-size: 36px !important;
|
||||
}
|
||||
|
||||
.operation-tile span{
|
||||
height: 35px;
|
||||
line-height: 15px;
|
||||
vertical-align: middle;
|
||||
display: table-cell !important;
|
||||
width: inherit;
|
||||
}
|
||||
.wr-operations-board {
|
||||
background: #fafafa;
|
||||
margin-bottom: 10px;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user