CSS styles to fix subjective styles issues in certain websites.
I'm using Stylish extension to apply these styles in Google Chrome.
Applies to: All websites.
/*
Disable Google Chrome links underline skipping over some characters.
*/
a:link {
text-decoration-skip-ink: none;
}
Before | After |
---|---|
Applies to: twitter.com
/*
Hide twitter statistics (number of tweets, folowers, following) from the twitter home page.
Visiting a profile directly will show these stats.
*/
.ProfileCardStats {
display: none;
}
.DashboardProfileCard-userFields {
top: 96px;
}
/* Hide recommended friends */
.dashboard .has-content.wtf-module {
display: none;
}
/* Hide trends */
.dashboard .trends {
display: none;
}
Before | After |
---|---|