From 9d4805a2a20903ed1cee7544f493e62fa223910e Mon Sep 17 00:00:00 2001 From: Ahmed Mazen Date: Thu, 20 Jul 2023 03:56:04 +0800 Subject: [PATCH 1/2] remove unnecessary right padding from all lists in Rich Text(pad) the app Rich Text, codename pad, has unnecessary right padding for all lists. This makes it quite frustrating to edit in mobile environments. This commit basically removes all unnecessary right padding for all lists. --- customize.dist/ckeditor-contents.css | 1 + 1 file changed, 1 insertion(+) diff --git a/customize.dist/ckeditor-contents.css b/customize.dist/ckeditor-contents.css index d37f17f5c..a99fab651 100644 --- a/customize.dist/ckeditor-contents.css +++ b/customize.dist/ckeditor-contents.css @@ -102,6 +102,7 @@ ol,ul,dl *margin-right: 0px; /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/ padding: 0 40px; + padding-right: 0px; } h1,h2,h3,h4,h5,h6 From e21674e5804c2ce0b57ff49a56e96a3127925936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathilde=20Gr=C3=BCnig?= <41020854+mthld@users.noreply.github.com> Date: Mon, 14 Aug 2023 09:23:38 +0200 Subject: [PATCH 2/2] expose port 3003 to serve websocket --- Dockerfile | 2 +- docker-compose.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cd20586ac..0d75a0f24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ VOLUME /cryptpad/datastore ENTRYPOINT ["/bin/bash", "/cryptpad/docker-entrypoint.sh"] # Ports -EXPOSE 3000 3001 +EXPOSE 3000 3001 3003 # Run cryptpad on startup CMD ["npm", "start"] diff --git a/docker-compose.yml b/docker-compose.yml index bf7eca9a4..98d91a36c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -21,6 +21,7 @@ services: ports: - "3000:3000" - "3001:3001" + - "3003:3003" ulimits: nofile: