mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge pull request #831 from lasanthaDLPDS/master
Fixing operation label centering issue
This commit is contained in:
commit
8df83cf3e5
@ -93,7 +93,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-5 col-md-6 col-centered">
|
<div class="col-lg-5 col-md-6 col-centered">
|
||||||
<h3>
|
<h3>
|
||||||
<span class="fw-stack">
|
<span class="fw-stack center-block">
|
||||||
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
||||||
<i id="status-icon" class="fw fw-error fw-stack-1x"></i>
|
<i id="status-icon" class="fw fw-error fw-stack-1x"></i>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@ -51,6 +51,7 @@ function submitForm(formId) {
|
|||||||
var defaultStatusClasses = "fw fw-stack-1x";
|
var defaultStatusClasses = "fw fw-stack-1x";
|
||||||
var content = $("#operation-response-template").find(".content");
|
var content = $("#operation-response-template").find(".content");
|
||||||
var title = content.find("#title");
|
var title = content.find("#title");
|
||||||
|
title.attr("class","center-block text-center");
|
||||||
var statusIcon = content.find("#status-icon");
|
var statusIcon = content.find("#status-icon");
|
||||||
var description = content.find("#description");
|
var description = content.find("#description");
|
||||||
var successCallBack = function (response) {
|
var successCallBack = function (response) {
|
||||||
|
|||||||
@ -109,7 +109,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-5 col-md-6 col-centered">
|
<div class="col-lg-5 col-md-6 col-centered">
|
||||||
<h3>
|
<h3>
|
||||||
<span class="fw-stack">
|
<span class="fw-stack center-block">
|
||||||
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
<i class="fw fw-circle-outline fw-stack-2x"></i>
|
||||||
<i id="status-icon" class="fw fw-error fw-stack-1x"></i>
|
<i id="status-icon" class="fw fw-error fw-stack-1x"></i>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@ -39,6 +39,7 @@ function submitForm(formId) {
|
|||||||
var content = $("#operation-response-template").find(".content");
|
var content = $("#operation-response-template").find(".content");
|
||||||
var defaultStatusClasses = "fw fw-stack-1x";
|
var defaultStatusClasses = "fw fw-stack-1x";
|
||||||
var title = content.find("#title");
|
var title = content.find("#title");
|
||||||
|
title.attr("class","center-block text-center");
|
||||||
var statusIcon = content.find("#status-icon");
|
var statusIcon = content.find("#status-icon");
|
||||||
var description = content.find("#description");
|
var description = content.find("#description");
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user