1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-14 21:15:48 +02:00

Fix weird alignment of stuff in notification columns

This commit is contained in:
chylex 2018-02-07 00:39:05 +01:00
parent 7731534ffc
commit 61a73c055b
2 changed files with 7 additions and 8 deletions
Resources/Scripts

View File

@ -290,8 +290,9 @@
tags.push(".media-item, .media-preview { border-radius: 1px !important }"); // square-ify media
tags.push(".quoted-tweet { border-radius: 0 !important }"); // square-ify quoted tweets
tags.push(".tweet-context .nbfc { text-overflow: ellipsis !important; white-space: nowrap !important }"); // force ellipsis on long usernames
tags.push(".activity-header { align-items: center !important; margin-bottom: 4px !important }"); // tweak alignment of avatar and text in notifications
tags.push(".activity-header .tweet-timestamp { line-height: unset !important }"); // fix timestamp position in notifications
tags.push(".activity-header.has-source-avatar { margin-bottom: 4px !important }"); // tweak distance between avatar and text
tags.push(".activity-header .tweet-timestamp { line-height: unset !important }"); // fix timestamp position
tags.push(".activity-header .icon-user-filled { vertical-align: sub !important; }"); // fix follow icon position
tags.push("#tduck-show-thread { display: inline-block !important; cursor: pointer }");
if (fontSizeName === "smallest"){

View File

@ -99,18 +99,16 @@
white-space: nowrap !important;
}
.activity-header {
align-items: center !important;
margin-bottom: 4px !important;
.activity-header.has-source-avatar {
margin-bottom: 4px !important
}
.activity-header .tweet-timestamp {
line-height: unset !important;
}
.account-bio.padding-t--5 {
/* follow notification padding */
padding-top: 2px !important;
.activity-header .icon-user-filled {
vertical-align: sub !important;
}
html[data-td-theme='light'] .stream-item:not(:hover) .js-user-actions-menu {