From ba178b04b8e8ab2fbf0dc094e935b8aa4eaeff95 Mon Sep 17 00:00:00 2001 From: Mikunj Date: Tue, 11 Dec 2018 15:32:59 +1100 Subject: [PATCH 1/2] Minor fixes for production builds. --- package.json | 1 + stylesheets/_global.scss | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 53b324337..2d634dc15 100644 --- a/package.json +++ b/package.json @@ -247,6 +247,7 @@ "settings_preload.js", "permissions_popup_preload.js", "debug_log_preload.js", + "password_preload.js", "main.js", "images/**", "fonts/*", diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index d7f670714..24f05dc1c 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -502,11 +502,12 @@ textarea { } .full-screen-flow { - position: absolute; - left: 0; - right: 0; + position: fixed; top: 0; + left: 0; bottom: 0; + right: 0; + overflow: auto; font-family: roboto-light; &.overlay { From 7e21deacc34db22a1381b9f2da374b238eab42de Mon Sep 17 00:00:00 2001 From: Mikunj Date: Wed, 12 Dec 2018 09:47:53 +1100 Subject: [PATCH 2/2] Undo css change as i'll fix that in another PR. Point production to a test server. --- config/production.json | 4 ++-- stylesheets/_global.scss | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/config/production.json b/config/production.json index 1d403b347..82c5627db 100644 --- a/config/production.json +++ b/config/production.json @@ -1,5 +1,5 @@ { - "serverUrl": "https://textsecure-service.whispersystems.org", - "cdnUrl": "https://cdn.signal.org", + "serverUrl": "http://159.69.22.124:8080", + "cdnUrl": "http://159.69.22.124", "serverTrustRoot": "BXu6QIKVz5MA8gstzfOgRQGqyLqOwNKHL6INkv3IHWMF" } diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index 24f05dc1c..d7f670714 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -502,12 +502,11 @@ textarea { } .full-screen-flow { - position: fixed; - top: 0; + position: absolute; left: 0; - bottom: 0; right: 0; - overflow: auto; + top: 0; + bottom: 0; font-family: roboto-light; &.overlay {