Commit Graph

2826 Commits

Author SHA1 Message Date
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
David Benqué
3631067c95 Round corners of document title when hovered/edited 2022-06-01 15:23:54 +01:00
ansuz
1bdf292093 don't show a home page subscribe button to premium users 2022-06-01 18:37:17 +05:30
David Benqué
2fbecb0dee Round corners for drive tips 2022-06-01 13:20:45 +01:00
David Benqué
3b7f5c2df7 Remvoe padding around user-menu avatar on small screens 2022-05-31 09:38:39 +01:00
ansuz
dc071d0095 use URL API to identify remote hrefs 2022-05-30 17:20:03 +05:30
ansuz
c0d2af50ef lint compliance 2022-05-30 17:19:09 +05:30
David Benqué
f507af3ccf Fix unreadable drive tree item when selected + right click 2022-05-27 13:37:20 +01:00
David Benqué
f5d32a7001 Align app icons to the left on home page 2022-05-27 13:22:18 +01:00
David Benqué
32088bf111 Round corners of loading messages 2022-05-27 13:15:26 +01:00
David Benqué
d0435adb20 Round corners of image preview modal 2022-05-27 13:02:41 +01:00
ansuz
0c9973b42f Merge branch '4.15-candidate' into soon 2022-05-20 20:59:12 +05:30
David Benqué
944b4511e0 Clear remaining XXXs 2022-05-16 16:23:33 +01:00
David Benqué
fc1e78120c Correct toolbar button styles across light/dark themes 2022-05-16 16:21:57 +01:00
ansuz
3288dd984f unify 'terms' and 'footer_terms' translation keys 2022-05-13 18:56:49 +05:30
David Benqué
6d73f008d8 Link footer logo to project website + change font color 2022-05-13 12:40:12 +01:00
David Benqué
29f20b0ec2 Merge branch 'sandpaper-toolbar-icon' into 4.15-candidate 2022-05-13 12:19:26 +01:00
David Benqué
1dc2d74f08 Show drive icon when hovering document icon in toolbar 2022-05-13 12:18:28 +01:00
David Benqué
f3e10994ab Update cptools font with Drive icon 2022-05-13 12:17:20 +01:00
David Benqué
c2b882dbe6 Add comments 2022-05-13 11:59:32 +01:00
David Benqué
5f765b1dc2 Show drive icon when hovering settings toolbar 2022-05-13 11:57:20 +01:00
David Benqué
cf10e0b390 Swap toolbar icon on hover
⚠️ in document toolbars the destroy icon is used instead of drive
it is a placeholder because the drive icon is not in CPtools
2022-05-13 11:51:40 +01:00
ansuz
93bdea554f Merge branch '4.15-candidate' of github.com:xwiki-labs/cryptpad into 4.15-candidate 2022-05-13 15:51:01 +05:30
ansuz
958b3e4376 remove references to removed pages and notes that have been addressed 2022-05-13 15:50:38 +05:30
David Benqué
fcb11dd65a Fix sizing of instance title block on home page 2022-05-13 11:09:14 +01:00
ansuz
633b8e062f lint compliance 2022-05-13 15:20:48 +05:30
ansuz
6102c704e0 respect admin decision not to show crowdfunding info 2022-05-13 15:15:00 +05:30
David Benqué
3f6afcd3fb Remove hard-coded translation keys 2022-05-13 09:38:27 +01:00
David Benqué
da8bf544f0 Show instance name on contact page 2022-05-13 09:14:35 +01:00
ansuz
0ce395e213 Merge branch '4.15-candidate' of github.com:xwiki-labs/cryptpad into 4.15-candidate 2022-05-13 13:34:32 +05:30
ansuz
f523888718 remove deprecated default static pages 2022-05-12 16:23:56 +05:30
David Benqué
db3e7aa5de Use light theme colors in dark theme for more highlight 2022-05-11 15:43:34 +01:00
David Benqué
80ffbc4bf6 Apply rounded corners to items in New modal (from drive) 2022-05-11 14:11:17 +01:00
David Benqué
03acfb51e4 Round corners of avatar without picture 2022-05-11 14:02:38 +01:00
David Benqué
74af6629e3 Use variable for UI drop shadow 2022-05-11 13:45:27 +01:00
David Benqué
daf3634ed6 Remove padding in drive sidebar docs 2022-05-10 12:11:50 +01:00
ansuz
1b2c6de355 Merge branch '4.15-candidate' of github.com:xwiki-labs/cryptpad into 4.15-candidate 2022-05-10 13:09:24 +05:30
David Benqué
5d6ebe682e Round tooltips 2022-05-09 16:47:35 +01:00