update to roundcube version 1.6.6 (#13)

Co-authored-by: meaz <meaz@disroot.org>
Reviewed-on: #13
Reviewed-by: meaz <meaz@no-reply@disroot.org>
Co-authored-by: muppeth <muppeth@disroot.org>
Co-committed-by: muppeth <muppeth@disroot.org>
This commit is contained in:
muppeth 2024-03-08 17:59:42 +00:00 committed by meaz
parent aab2da9c83
commit 8f04dbe817
5 changed files with 10 additions and 6607 deletions

3
.gitignore vendored
View File

@ -2,3 +2,6 @@ styles/styles.css
styles/print.css
styles/embed.css
deps/*
node_modules/
package-lock.json
package.json

View File

@ -30,16 +30,6 @@ INSTALLATION
All styles are written using LESS syntax. Thus it needs to be compiled
using the `lessc` (>= 2.5.2) command line tool. This comes with the `nodejs-less`
RPM package or using `npm install less` which depend on nodejs.
Here is how you can install those on Debian:
```
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash -
apt-get install -y nodejs
npm install -g less
npm install -g less-plugin-clean-css
```
Then, go to the `styles` folder, and when you're done editing your files, do the following, as needed:
```
$ lessc --clean-css="--s1 --advanced" styles/styles.less > styles/styles.min.css
$ lessc --clean-css="--s1 --advanced" styles/print.less > styles/print.min.css
@ -58,8 +48,7 @@ or after installing it on the destination system.
FOR DEVELOPERS
--------------
- Supported browsers: IE11+, Edge, Last 2 versions for Chrome/Firefox/Safari,
Android Browser 5+, iOS Safari 9+.
- Supported browsers: Last 2 versions of Edge/Chrome/Firefox/Safari.
- Skin color palette changes and other css modifications can be done
via _styles.less and _variables.less files. Where you can overwrite all

View File

@ -31,14 +31,14 @@
font-family: 'Icons';
font-style: normal;
font-weight: 900;
src: url("../fonts/la-solid-900.woff2") format('woff2'),
url("../fonts/la-solid-900.woff") format('woff');
src: url("../fonts/fa-solid-900.woff2") format('woff2'),
url("../fonts/fa-solid-900.woff") format('woff');
}
@font-face {
font-family: 'Icons';
font-style: normal;
font-weight: 400;
src: url("../fonts/la-regular-400.woff2") format('woff2'),
url("../fonts/la-regular-400.woff") format('woff');
src: url("../fonts/fa-regular-400.woff2") format('woff2'),
url("../fonts/fa-regular-400.woff") format('woff');
}

6591
styles/styles.min.css vendored

File diff suppressed because one or more lines are too long

2
ui.js
View File

@ -3413,7 +3413,7 @@ function rcube_elastic_ui()
recipients.push({
name: '',
email: email.replace(/(^<|>$)/g, '') // trim < and > characters
.replace(/[^a-z]$/gi, '') // remove trailing comma or any non-letter character at the end (#7899)
.replace(/[^\p{L}]$/giu, '') // remove trailing comma or any non-letter character at the end (#7899, #9257)
});
str = str.replace(email, '').trim();