Skip to content

Commit

Permalink
Fix gap between list-adder list item and icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Mar 9, 2023
1 parent 338c9a0 commit 1da8344
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-twitter",
"version": "1.1.1",
"version": "1.1.2",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
19 changes: 18 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Cursed Mastodon Twitter CSS-only revamp by @[email protected]
v1.1.2rc5 */
v1.1.2 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit 1da8344

Please sign in to comment.