Ensure the spinner doesn't obscure the version
parent
232ebae3aa
commit
4f27afc99b
|
@ -73,25 +73,27 @@ require.onResourceLoad = function (context, map, depMaps) {
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
z-index: 1056;
|
z-index: 1056;
|
||||||
}
|
}
|
||||||
#pg-spinner .pg-sp-icon {
|
#pg-spinner .pg-sp-content {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: 50px;
|
width: 100%;
|
||||||
color: #ccc;
|
|
||||||
top: 40%;
|
top: 40%;
|
||||||
left: 48.8%;
|
}
|
||||||
|
#pg-spinner .pg-sp-icon {
|
||||||
|
font-size: 50px;
|
||||||
|
text-align: center;
|
||||||
|
color: #ccc;
|
||||||
}
|
}
|
||||||
#pg-spinner .pg-sp-text {
|
#pg-spinner .pg-sp-text {
|
||||||
top: 46%;
|
|
||||||
color: #fff;
|
|
||||||
width: 100%;
|
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
position: absolute;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<div id="pg-spinner">
|
<div id="pg-spinner">
|
||||||
<span class="pg-sp-icon fa fa-spinner fa-pulse"></span>
|
<div class="pg-sp-content">
|
||||||
<span class="pg-sp-text">{{ _('Loading {0} v{1}...').format(config.APP_NAME, config.APP_VERSION) }}</span>
|
<div class="row"><div class="col-xs-12 pg-sp-icon fa fa-spinner fa-pulse"></div></div>
|
||||||
|
<div class="row"><div class="col-xs-12 pg-sp-text">{{ _('Loading {0} v{1}...').format(config.APP_NAME, config.APP_VERSION) }}</div></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<nav class="navbar-inverse navbar-fixed-top pg-navbar">
|
<nav class="navbar-inverse navbar-fixed-top pg-navbar">
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
|
Loading…
Reference in New Issue