mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-20 21:15:48 +02:00
Fix issues from TweetDeck updates (long usernames, badge in detail view, notification media previews)
This commit is contained in:
parent
e831bc2bea
commit
fb1482370a
Resources/Scripts
@ -283,6 +283,7 @@
|
|||||||
tags.push("a[data-full-url] { word-break: break-all !important }"); // break long urls
|
tags.push("a[data-full-url] { word-break: break-all !important }"); // break long urls
|
||||||
tags.push(".media-item, .media-preview { border-radius: 1px !important }"); // square-ify media
|
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(".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 { 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 .tweet-timestamp { line-height: unset !important }"); // fix timestamp position in notifications
|
||||||
|
|
||||||
|
@ -94,6 +94,11 @@
|
|||||||
/* Tweak notification layout and design */
|
/* Tweak notification layout and design */
|
||||||
/****************************************/
|
/****************************************/
|
||||||
|
|
||||||
|
.tweet-context .nbfc {
|
||||||
|
text-overflow: ellipsis !important;
|
||||||
|
white-space: nowrap !important;
|
||||||
|
}
|
||||||
|
|
||||||
.activity-header {
|
.activity-header {
|
||||||
align-items: center !important;
|
align-items: center !important;
|
||||||
margin-bottom: 4px !important;
|
margin-bottom: 4px !important;
|
||||||
@ -177,6 +182,13 @@ html[data-td-font='smallest'] .badge-verified:before {
|
|||||||
background-position: -223px -98px !important;
|
background-position: -223px -98px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html[data-td-font='smallest'] .tweet-detail-wrapper .badge-verified:before {
|
||||||
|
/* fix cut off badge in detail view */
|
||||||
|
width: 13px !important;
|
||||||
|
height: 14px !important;
|
||||||
|
background-position: -223px -97px !important;
|
||||||
|
}
|
||||||
|
|
||||||
.accs-header {
|
.accs-header {
|
||||||
/* fix retweet account selector heading */
|
/* fix retweet account selector heading */
|
||||||
padding-left: 0 !important;
|
padding-left: 0 !important;
|
||||||
|
@ -32,7 +32,7 @@ body {
|
|||||||
height: calc(100vh - 28px) !important;
|
height: calc(100vh - 28px) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.js-media.margin-vm, .js-media-preview-container.margin-vm {
|
#tduck .js-media, #tduck .js-media-preview-container {
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user