diff --git a/CHANGELOG.md b/CHANGELOG.md index 572a0f5..3d0b643 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ -### 1.1.2rc5: 2023-03-09 +### 1.1.2: 2023-03-09 * Fix the heart animation on the icons with counter * Fix notification title overlapping with polls * Fix avatar space alignment with long usernames * Reset padding from attachment-list on reply indicator * Fix boost animation +* Fix detailed status button bubbles +* Fix gap between list-adder list item and icon ### 1.1.1: 2023-03-09 diff --git a/package.json b/package.json index db97e22..44d0c03 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mastodon-twitter", - "version": "1.1.1", + "version": "1.1.2", "description": "", "main": "index.js", "scripts": { diff --git a/style.css b/style.css index cf44093..de01548 100644 --- a/style.css +++ b/style.css @@ -1,5 +1,5 @@ /* Cursed Mastodon Twitter CSS-only revamp by @rolle@mementomori.social - v1.1.2rc5 */ + v1.1.2 */ /* CSS variables */ :root { @@ -144,6 +144,11 @@ body.layout-single-column { height: 38px; } +.layout-single-column .list-adder .list__display-name { + display: flex; + gap: var(--gap-default); +} + /* Default to full-width images in link previews Needs implementation from the source below @@ -1169,6 +1174,18 @@ a.status-card.compact .status-card__description { z-index: -1; } +.layout-single-column .detailed-status__button { + position: relative; +} + +.layout-single-column .detailed-status__button .icon-button::after { + transform: translateX(30px); +} + +.layout-single-column .detailed-status__button .icon-button.star-icon::after { + transform: translateX(3px); +} + .layout-single-column .status__action-bar .icon-button.icon-button--with-counter::after { transform: translateX(-6px); }