mirror of
https://github.com/insin/control-panel-for-twitter.git
synced 2025-06-18 14:45:31 -04:00
Fixed restored Tweet sources and link headlines not displaying in some browsers
This commit is contained in:
parent
dab3344b15
commit
17d078e639
@ -3883,8 +3883,8 @@ const configureCss = (() => {
|
||||
}
|
||||
if (config.restoreLinkHeadlines) {
|
||||
cssRules.push(`
|
||||
.cpft_link_headline {
|
||||
display: block
|
||||
.cpft_link_headline[hidden] {
|
||||
display: block;
|
||||
border-top: 1px solid var(--border-color);
|
||||
padding: 14px;
|
||||
}
|
||||
@ -3898,7 +3898,7 @@ const configureCss = (() => {
|
||||
}
|
||||
if (config.restoreQuoteTweetsLink || config.restoreOtherInteractionLinks) {
|
||||
cssRules.push(`
|
||||
#cpftInteractionLinks {
|
||||
#cpftInteractionLinks[hidden] {
|
||||
display: block;
|
||||
}
|
||||
#cpftInteractionLinks a {
|
||||
@ -3926,7 +3926,7 @@ const configureCss = (() => {
|
||||
hideCssSelectors.push('#cpftRetweetsLink', '#cpftLikesLink')
|
||||
}
|
||||
if (config.restoreTweetSource) {
|
||||
cssRules.push('.TweetSource { display: inline; }')
|
||||
cssRules.push('.TweetSource[hidden] { display: inline; }')
|
||||
}
|
||||
if (config.tweakQuoteTweetsPage) {
|
||||
// Hide the quoted tweet, which is repeated in every quote tweet
|
||||
|
Loading…
Reference in New Issue
Block a user