diff --git a/CHANGELOG.md b/CHANGELOG.md index c6b6a59..7939449 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ -### 2.1.2rc3: 2024-12-20 +### 2.1.2rc4: 2024-12-24 * Fix media gallery with blurred image getting cut off +### 2.1.2rc3: 2024-12-20 + +* Fix double border on gifs + ### 2.1.2rc2: 2024-12-15 * Fix search icon for 4.4.0-alpha.1+mementomods-2024-12-15 changes diff --git a/layout-multiple-columns.css b/layout-multiple-columns.css index a451c3e..2bf7b24 100644 --- a/layout-multiple-columns.css +++ b/layout-multiple-columns.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.1.2rc3 */ + 2.1.2rc4 */ /* CSS variables */ :root { @@ -3987,6 +3987,11 @@ body .compose-form .compose-form__uploads { overflow: hidden; } +/* Fix double border on media */ +.layout-multiple-columns .media-gallery .media-gallery__item .media-gallery__gifv { + border: 0; +} + /* Exception for your own profile media gallery */ .layout-multiple-columns .account-gallery__container .media-gallery__gifv { border-radius: 0; diff --git a/layout-single-column.css b/layout-single-column.css index 57529fd..78228e7 100644 --- a/layout-single-column.css +++ b/layout-single-column.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.1.2rc3 */ + 2.1.2rc4 */ /* CSS variables */ :root { @@ -4284,6 +4284,11 @@ body .compose-form .compose-form__uploads { overflow: hidden; } +/* Fix double border on media */ +.layout-single-column .media-gallery .media-gallery__item .media-gallery__gifv { + border: 0; +} + /* Exception for your own profile media gallery */ .layout-single-column .account-gallery__container .media-gallery__gifv { border-radius: 0; diff --git a/package.json b/package.json index 917a6a1..fe90c5d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mastodon-bird-ui", - "version": "2.1.2rc3", + "version": "2.1.2rc4", "description": "", "main": "index.js", "scripts": {