Commit Graph

2863 Commits

Author SHA1 Message Date
David Benque b2022f5e73 Merge branch 'rrule' into staging 2022-10-21 15:43:24 +01:00
yflory 8e05f159ae Merge branch 'staging' into filter-doc-type 2022-10-17 13:24:37 +02:00
David Benque 81e00842b9 Style for default confirm button 2022-10-12 16:48:24 +01:00
yflory c11b83dd5a Merge branch 'staging' into rrule 2022-10-11 14:00:30 +02:00
ansuz 9098af75ab fix spacing in loose lists in markdown 2022-09-22 15:54:56 +05:30
ansuz 79605f4e7b Merge branch 'staging' into soon 2022-09-20 16:26:58 +05:30
David Benque d6fda92dac Add max-width for instance description 2022-09-20 11:33:35 +01:00
David Benque 29e5bf63dd Fix styles in calendar event modal 2022-09-19 17:26:14 +01:00
yflory 175fb7e1dc Add button to move calendar to a specific date 2022-09-15 16:33:50 +02:00
yflory 6ddfd09805 Fix checkmark style in calendar app 2022-09-15 16:32:11 +02:00
yflory 0ee48d40f2 Add click handlers to calendar reminders notifications 2022-09-14 16:11:54 +02:00
ansuz 085791d389 replace all mentions of docs.cryptpad.fr with docs.cryptpad.org 2022-09-09 17:27:09 +05:30
ansuz 556d58cfe2 remove more XXX notes 2022-09-08 15:05:15 +05:30
ansuz e339ee8acb increment version string 2022-09-07 16:48:55 +05:30
ansuz 86f298d62c add basic styles for noscript tags 2022-09-05 19:17:17 +05:30
ansuz e84358448b standardize html for static pages 2022-09-05 19:16:42 +05:30
ansuz 6a6abb8eb9 enable Portuguese from Portugal 2022-09-01 13:52:41 +05:30
ansuz 6189e5c5f0 Merge branch 'soon' into 5.1-candidate 2022-08-31 17:29:20 +05:30
yflory b6b4690e97 Fix race condition with preloading style 2022-08-31 11:42:26 +02:00
Maxime Cesson c4410f52d7 Improve filter button usability when a filter is active 2022-08-30 17:21:03 +02:00
ansuz 524ba22c46 update hardcoded preloading.js cache-busting version string 2022-08-30 14:27:10 +05:30
ansuz c0a82b2bc3 Merge branch 'placeholder-slow-connection' into 5.1-candidate 2022-08-30 14:14:53 +05:30
ansuz dc5f9e2b95 avoid a possible type error on the loading screen 2022-08-30 14:12:02 +05:30
Maxime Cesson febe51aabc Make drive toolbar responsive 2022-08-26 18:02:04 +02:00
Maxime Cesson 2c3f1f3b07 Small design improvements 2022-08-26 17:58:19 +02:00
Mathilde Blanchemanche 29a8e71dd3 add Weblate widget showing language translation progress 2022-08-24 15:55:49 +02:00
ansuz 2cc5a8ee82 guard against type error when placeholder querySelector is null 2022-08-22 15:49:06 +05:30
Maxime Cesson 59458a7427 Adjust light & dark themes 2022-08-19 16:41:42 +02:00
Maxime Cesson 06a8e7c866 Improve transition from outer placeholder to inner one 2022-08-19 16:39:20 +02:00
Maxime Cesson 5cc042d7d8 Fix bug with "code" app: vertical separator over the placeholder 2022-08-19 16:31:57 +02:00
Maxime Cesson 6d5a472225 Handle placeholder deletion before animation fallback 2022-08-19 16:17:03 +02:00
yflory 1227fceba5 Merge remote-tracking branch 'origin/db-insight' into 5.1-candidate 2022-08-17 11:17:18 +02:00
yflory 9b33202cbe Merge branch 'placeholder-slow-connection' into staging 2022-08-17 11:15:16 +02:00
yflory d5272874fb Add version string to placeholder .js and .css files 2022-08-17 11:14:51 +02:00
ansuz 1f8037a61a update mastodon account URL 2022-08-09 15:57:53 +05:30
Maxime Cesson 0d75a2a92a Load pre-loading script and stylesheet before every others 2022-08-02 16:19:38 +02:00
Maxime Cesson 46c0df4304 Fade in and delay the placeholder to hide it to high connection users 2022-08-02 15:04:23 +02:00
ansuz c0b53884e7 Merge branch 'placeholder-slow-connection' into main 2022-07-26 16:16:36 +05:30
David Benque b2332d7206 Add calendar OG preview image 2022-07-26 10:42:31 +01:00
David Benque ed2a635513 Update opengraph images 2022-07-22 12:34:32 +01:00
Maxime Cesson 341b8a3c85 Link OpenGraph data to the right instance URL through a build mechanism 2022-07-21 11:53:06 +02:00
David Benque 940ef7f594 Add opengraph preview images 2022-07-15 15:27:11 +01:00
Maxime Cesson 376ba4ce8d Add some generic OpenGraph data to apps 2022-07-15 15:48:45 +02:00
ansuz 96a12d12a9 guard against possible type error, lint compliance 2022-07-13 19:28:59 +05:30
Maxime Cesson 24ccb6d9e7 Apply placeholder to all relevant applications on a slow connection #865
Made with the following command from the cryptpad/ root directory:

$ patternStatic='(<link href=\"\/customize\/src\/outer\.css.*$|<script async data-bootload=\"\/customize\/template\.js\".*$)';
$ pattern2='<style>$';
$ js='<script src=\"\/customize\/pre-loading\.js\"><\/script>';
$ css='<link href=\"\/customize\/src\/pre-loading\.css\" rel=\"stylesheet\" type=\"text\/css\">';
$ find . -name 'index.html' | grep -v -E '(onlyoffice|bower_components|node_modules)' | while read x; \
do if [ `grep -cE "$pattern" $x` -gt 0 ]; then sed -E "s/($pattern)/$js\n    \1\n    $css/" $x > tmp; \
mv tmp $x; y=`echo $x | sed 's/index\.html/inner\.html/'`; if [ -f "$y" ]; then \
sed -E "s/($pattern2)/$js\n    $css\n    \1/" $y > tmp; mv tmp $y; fi; fi; done
2022-07-13 13:21:38 +02:00
Maxime Cesson 80fad70404 Prepare to apply placeholder to all needed apps 2022-07-13 12:46:04 +02:00
Maxime Cesson edaa8e1d9e Redo placeholder before loading screens for inner and outer 2022-07-12 13:07:58 +02:00
Maxime Cesson 4b7e1b0757 Add a placeholder before loading screens for slow connection 2022-07-11 10:21:00 +02:00
David Benque bc29c26b66 Add image for home page logo
- easier to customize the main logo while keeping the CryptPad brand
in the footer and other places
2022-07-08 14:52:43 +01:00
David Benqué 6261878940 Round corners of icons in New dialog 2022-06-01 15:29:22 +01:00