From 521b59088b7ce7e2af89b29326daf6a0617d3b41 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 18 Jun 2020 15:24:58 -0400 Subject: [PATCH 1/3] fix unreadable team chat input text color --- www/teams/app-team.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/teams/app-team.less b/www/teams/app-team.less index c59d0dcb9..abd46d121 100644 --- a/www/teams/app-team.less +++ b/www/teams/app-team.less @@ -45,7 +45,7 @@ .cp-app-contacts-input { textarea { border: 0px; - color: white; + color: @cryptpad_text_col; } } } From 434ba6c360208b91d848561e311fc66543a38f2e Mon Sep 17 00:00:00 2001 From: "Francisco J. Solis-Munoz" Date: Tue, 22 Sep 2020 09:43:36 -0500 Subject: [PATCH 2/3] Fixed content security policy for local development to same IP as server.js --- config/config.example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.example.js b/config/config.example.js index 3826a7291..fabddce26 100644 --- a/config/config.example.js +++ b/config/config.example.js @@ -46,7 +46,7 @@ module.exports = { * cryptpad/docs/example.nginx.conf (see the $main_domain variable) * */ - httpUnsafeOrigin: 'http://localhost:3000/', + httpUnsafeOrigin: 'http://127.0.0.1:3000/', /* httpSafeOrigin is the URL that is used for the 'sandbox' described above. * If you're testing or developing with CryptPad on your local machine then From 05cbe20bbe59a4bf4aa48ff2d70a42597a465cd3 Mon Sep 17 00:00:00 2001 From: "Francisco J. Solis-Munoz" Date: Tue, 22 Sep 2020 09:51:26 -0500 Subject: [PATCH 3/3] Unsafe origin for localhost as 127.0.0.1 --- config/config.example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.example.js b/config/config.example.js index fabddce26..3f0437953 100644 --- a/config/config.example.js +++ b/config/config.example.js @@ -46,7 +46,7 @@ module.exports = { * cryptpad/docs/example.nginx.conf (see the $main_domain variable) * */ - httpUnsafeOrigin: 'http://127.0.0.1:3000/', + httpUnsafeOrigin: 'http://127.0.0.1:3000/ http://localhost:3000', /* httpSafeOrigin is the URL that is used for the 'sandbox' described above. * If you're testing or developing with CryptPad on your local machine then