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

Add an option (disabled by default) to revert New Tweet font size in design-revert plugin

This commit is contained in:
chylex 2017-03-07 16:39:06 +01:00
parent 37148f5093
commit 7cadb1c403
2 changed files with 9 additions and 0 deletions
Resources/Plugins/design-revert

View File

@ -15,6 +15,10 @@ enabled(){
this.css.insert(".tweet-actions > li:nth-child(4) { margin-right: 2px !important; }");
}
if (config.smallComposeTextSize){
this.css.insert(".compose-text { font-size: 12px !important; height: 120px !important; }");
}
if (config.revertConversationLinks){
var footer = TD.mustaches["status/tweet_single_footer.mustache"];
footer = footer.replace('txt-mute txt-size--12', 'txt-mute txt-small');

View File

@ -10,6 +10,11 @@
*/
moveTweetActionsToRight: true,
/*
* Reverts New Tweet font size to a smaller one.
*/
smallComposeTextSize: false,
/*
* Reverts design changes to the 'View Conversation' and 'Details' links.
*/