Fix UI issues in the loading screen with the loading bar

This commit is contained in:
yflory
2018-05-14 14:02:46 +02:00
parent 4d5606e757
commit 6fde15247b
6 changed files with 21 additions and 18 deletions

View File

@@ -69,8 +69,9 @@ define([], function () {
height: auto;
margin-bottom: 2em;
}
@media screen and (max-height: 450px) {
#cp-loading .cp-loading-cryptofist {
@media screen and (max-height: 500px) {
#cp-loading .cp-loading-logo {
display: none;
}
}
#cp-loading-message {
@@ -162,12 +163,12 @@ define([], function () {
text-overflow: ellipsis;
}
.cp-loading-progress-bar {
height: 5px;
height: 24px;
background: white;
}
.cp-loading-progress-bar-value {
height: 100%;
background: #00ff37;
background: #5cb85c;
}
*/}).toString().slice(14, -3);
var urlArgs = window.location.href.replace(/^.*\?([^\?]*)$/, function (all, x) { return x; });

View File

@@ -25,6 +25,7 @@
@warn-color: @warn-color,
@color: @color
);
font: @colortheme_app-font;
}
.framework_min_main(
@@ -42,6 +43,7 @@
.tippy_main();
.checkmark_main(20px);
.password_main();
font: @colortheme_app-font;
}

View File

@@ -1123,9 +1123,9 @@ define(function () {
// Loading info
out.loading_pad_1 = "Initialisation du pad";
out.loading_pad_2 = "Chargement du contenu du pad";
out.loading_drive_1 = "Préparation des données de l'utilisateur";
out.loading_drive_2 = "Mise à jour des données de l'utilisateur";
out.loading_drive_3 = "Vérification des données de l'utilisateur";
out.loading_drive_1 = "Chargement des données";
out.loading_drive_2 = "Mise à jour du format des données";
out.loading_drive_3 = "Vérification de l'intégrité des données";
return out;
});

View File

@@ -1169,9 +1169,9 @@ define(function () {
// Loading info
out.loading_pad_1 = "Initializing pad";
out.loading_pad_2 = "Loading pad content";
out.loading_drive_1 = "Preparing user data";
out.loading_drive_2 = "Upgrading user data to the latest version";
out.loading_drive_3 = "Checking user data integrity";
out.loading_drive_1 = "Loading data";
out.loading_drive_2 = "Updating data format";
out.loading_drive_3 = "Verifying data integrity";
return out;
});