Greg Roach
Greg Roach
The icons all use `fa-fw` (fixed-width), which sets `width: 1.25rem`. So, the icon should load into a gap of the correct size. But `width` only applies to block elements (e.g....
I also tried adding `width` and `inline-block` to a wrapper around the icon and adding content ` ` to it - but this doesn't help.
Thanks for this. The upstream issue (https://github.com/Intervention/image/issues/745) was fixed with a code-change that required PHP 7.2. So I assumed that once people upgrade their servers to PHP 7.2, their problems...
https://www.php.net/manual/en/function.exif-read-data.php says that since PHP 7.2, it can read exif info from streams as well as files. Testing locally, this appears to be correct: ``` php > var_dump(exif_read_data(fopen('image.jpg', 'rb'))['Orientation']); int(6)...
> I think the problem is related to how the Intervention Image library represents an image instantiated from a stream, as soon as you instantiate the image the EXIF data...
I've created a fix for the issue in intervention/image. I'll post the PR shortly.
I submitted a few PRs. The relevant one is https://github.com/Intervention/image/pull/1192 I tested this with webtrees, and it works as expected.
My PR was just declined (along with many others), as the intervention library has now been rewriten. The documentation says that autorotate should now work. The latest version of the...
> Fixes problem with content overflowing the container Which problems? > like the facts tab I'm not sure why this is fixed. Taking it out and using the default table-layout...
The popup menus are created by the `popper.js` library. When they are within a scrollable ``, they are cropped to the div. There are lots of configuration options for this...