ameotoko

Results 58 comments of ameotoko

> There is a setting name «bringCaretAtEndOnFocus». This needs to be documented.

I can confirm the problem, see the Slack thread: https://contao.slack.com/archives/CK9GW3ARL/p1657717360616099

This will only add more styles for front end designers to override IMO.

Just configure an image size in `config.yml`: ```yaml contao: image: sizes: video_placeholder: width: 1280 resize_mode: proportional densities: '1x' formats: jpg: [ webp, jpg ] png: [ webp, png ] ```...

> ```php > // contao/languages/en/default.php > $GLOBALS['TL_LANG']['MSC']['video_placeholder (1280x)'] = ['Foobar', 'Moobar']; > ``` Yes, this works. May be at least this ` (1280x)` suffix can be removed? Then this would...

> Yes, this works. @fritzmg BTW this only works for a size key, that does not have a translation in `image_sizes.en.yml`. I can't figure out the appropriate translation key for...

Not really, because I don't undertand the reason why it's there in the first place.

> It's there so that you can actually see what values you are sorting by. Why can't I decide as a developer, whether I want that or not?

Say I want to display records from newest to oldest, but the actual values of `id` or `created` fields are not relevant to editors. It's just wasted column space. ~Besides,...