A number of fixes for loading screen, recent rebase
FREEBIE
This commit is contained in:
@@ -46,7 +46,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<script type='text/x-tmpl-mustache' id='app-loading-screen'>
|
<script type='text/x-tmpl-mustache' id='app-loading-screen'>
|
||||||
<div class='content'>
|
<div class='content'>
|
||||||
<img src='/images/icon_128.png'>
|
<img src='images/icon_128.png'>
|
||||||
<div class='container'>
|
<div class='container'>
|
||||||
<span class='dot'></span>
|
<span class='dot'></span>
|
||||||
<span class='dot'></span>
|
<span class='dot'></span>
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
</script>
|
</script>
|
||||||
<script type='text/x-tmpl-mustache' id='conversation-loading-screen'>
|
<script type='text/x-tmpl-mustache' id='conversation-loading-screen'>
|
||||||
<div class='content'>
|
<div class='content'>
|
||||||
<img src='/images/icon_128.png'>
|
<img src='images/icon_128.png'>
|
||||||
<div class='container'>
|
<div class='container'>
|
||||||
<span class='dot'></span>
|
<span class='dot'></span>
|
||||||
<span class='dot'></span>
|
<span class='dot'></span>
|
||||||
@@ -832,7 +832,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class='app-loading-screen'>
|
<div class='app-loading-screen'>
|
||||||
<div class='content'>
|
<div class='content'>
|
||||||
<img src='/images/icon_128.png'>
|
<img src='images/icon_128.png'>
|
||||||
<div class='container'>
|
<div class='container'>
|
||||||
<span class='dot'></span>
|
<span class='dot'></span>
|
||||||
<span class='dot'></span>
|
<span class='dot'></span>
|
||||||
|
@@ -12,6 +12,7 @@
|
|||||||
console.log('environment:', window.config.environment);
|
console.log('environment:', window.config.environment);
|
||||||
|
|
||||||
var initialLoadComplete = false;
|
var initialLoadComplete = false;
|
||||||
|
window.owsDesktopApp = {};
|
||||||
|
|
||||||
// start a background worker for ecc
|
// start a background worker for ecc
|
||||||
textsecure.startWorker('js/libsignal-protocol-worker.js');
|
textsecure.startWorker('js/libsignal-protocol-worker.js');
|
||||||
|
@@ -63,7 +63,7 @@
|
|||||||
this.inboxView = new Whisper.InboxView({
|
this.inboxView = new Whisper.InboxView({
|
||||||
model: self,
|
model: self,
|
||||||
window: window,
|
window: window,
|
||||||
initialLoadComplete: initialLoadComplete
|
initialLoadComplete: options.initialLoadComplete
|
||||||
});
|
});
|
||||||
this.openView(this.inboxView);
|
this.openView(this.inboxView);
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
|
@@ -557,7 +557,7 @@ input[type=text], input[type=search], textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.app-loading-screen {
|
.app-loading-screen {
|
||||||
z-index: 1000;
|
z-index: 99;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
@@ -502,8 +502,9 @@ input[type=text]:active, input[type=text]:focus, input[type=search]:active, inpu
|
|||||||
opacity: 1; }
|
opacity: 1; }
|
||||||
100% {
|
100% {
|
||||||
opacity: 0; } }
|
opacity: 0; } }
|
||||||
|
|
||||||
.app-loading-screen {
|
.app-loading-screen {
|
||||||
z-index: 1000;
|
z-index: 99;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
@@ -3562,4 +3563,10 @@ li.entry .error-icon-container {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
text-align: left; }
|
text-align: left; }
|
||||||
|
|
||||||
|
.intl-tel-input .country-list {
|
||||||
|
text-align: left; }
|
||||||
|
|
||||||
|
.intl-tel-input .country-list .country .country-name {
|
||||||
|
color: #000; }
|
||||||
|
|
||||||
/*# sourceMappingURL=manifest.css.map */
|
/*# sourceMappingURL=manifest.css.map */
|
Reference in New Issue
Block a user