-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix gap between list-adder list item and icon
- Loading branch information
1 parent
338c9a0
commit 1da8344
Showing
3 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
|
@@ -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); | ||
} | ||
|