From 12c1bc1b062fd4e82951dfd4031c45f71c1431a5 Mon Sep 17 00:00:00 2001 From: Roni Laukkarinen Date: Fri, 18 Oct 2024 16:03:37 +0300 Subject: [PATCH] Fix hover bubble position if the button has counter --- CHANGELOG.md | 4 ++++ layout-multiple-columns.css | 2 +- layout-single-column.css | 7 ++++++- package.json | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03e4b89..cae98d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.0.4: 2024-10-18 + +* Fix hover bubble position if the button has counter + ### 2.0.3: 2024-10-10 * Fix advanced view compose form media attachment bug (thanks @CliffWade@allthingstech.social!) diff --git a/layout-multiple-columns.css b/layout-multiple-columns.css index 8266acc..c4cb47e 100644 --- a/layout-multiple-columns.css +++ b/layout-multiple-columns.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.0.3 */ + 2.0.4 */ /* CSS variables */ :root { diff --git a/layout-single-column.css b/layout-single-column.css index ccfde83..0999431 100644 --- a/layout-single-column.css +++ b/layout-single-column.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.0.3 */ + 2.0.4 */ /* CSS variables */ :root { @@ -3391,6 +3391,11 @@ body .compose-form .compose-form__uploads { transform: translateX(4px) translateY(2px); } +.layout-single-column .status__action-bar .icon-button.icon-button--with-counter::after, +.layout-single-column .status__action-bar .icon-button.icon-button--with-counter:first-of-type::after { + transform: translateX(-5px) translateY(1px); +} + .layout-single-column .navigation-panel__menu { display: flex; flex-wrap: wrap; diff --git a/package.json b/package.json index 23e9ddc..eb7b755 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mastodon-bird-ui", - "version": "2.0.3", + "version": "2.0.4", "description": "", "main": "index.js", "scripts": { @@ -17,4 +17,4 @@ "stylelint-config-standard": "^30.0.1", "stylelint-order": "^6.0.3" } -} +} \ No newline at end of file