* Better isolate admin to prevent session related vulnerabilities
* Removed support for custom login redirects for improved security
* Shorten forgot password link lifetime from 7 days to 1 hour
* Fixed login related pages being accessible from admin when user has logged in
* Fixed admin user creation and password reset allowing unsafe passwords
* Fixed missing validation when registering the first admin user
* Fixed reset password email not to have session specific token in it
* RTL-Support
* Standard Format
* shorter code
* default Arabic font
* fix for Configuration section
for "system>Assets>Collections" section to support RTL we should change inline style element created by admin.min.js so i've added an if statement to check <body> direction is RTL or not...
* Update rtl.css
* Multi level fix for RTL
in admin config under system>assets there is an input text which you can add child(s) under it... i've added several if statements to check Page direction and put margin-right instead of margin-left for RTL languages... i also wrote an style to override margin-left just in case ;)
* improvements
* fixes
* fix
* fix
* fix
* Update rtl.css
* first complete RTL style 👍
* Faster computation of direction
* Faster evaluation for margin direction (and simplified)
Co-authored-by: Djamil Legato <djamil+github@djamil.it>
* Add item at the top if top button is clicked in list field
Pretty much title says it all. IMO it makes much more sense, that top button would add item at the top, because if list is long enough, you are not even seeing if something happens when item is added at the bottom. Created this PR because of [the question asked in forum](https://discourse.getgrav.org/t/blueprint-type-list-new-data-on-top-of-array/15254).
So the solution would be either like this PR suggests, or button actions should be configurable via Admin config somewhere.
* Change added item placement for List field
Add field `palecement` property check.
If `top` or `bottom`, both buttons add item to top or bottom.
If `position`, item is added depending on a clicked button position -
if top button is clicked, item added to top and if bottom button - item added to bottom.
Defaults to bottom
* Revert empty line at EOF