mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-29 20:34:04 +02:00
Add an option (disabled by default) to revert New Tweet font size in design-revert plugin
This commit is contained in:
parent
37148f5093
commit
7cadb1c403
Resources/Plugins/design-revert
@ -15,6 +15,10 @@ enabled(){
|
|||||||
this.css.insert(".tweet-actions > li:nth-child(4) { margin-right: 2px !important; }");
|
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){
|
if (config.revertConversationLinks){
|
||||||
var footer = TD.mustaches["status/tweet_single_footer.mustache"];
|
var footer = TD.mustaches["status/tweet_single_footer.mustache"];
|
||||||
footer = footer.replace('txt-mute txt-size--12', 'txt-mute txt-small');
|
footer = footer.replace('txt-mute txt-size--12', 'txt-mute txt-small');
|
||||||
|
@ -10,6 +10,11 @@
|
|||||||
*/
|
*/
|
||||||
moveTweetActionsToRight: true,
|
moveTweetActionsToRight: true,
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Reverts New Tweet font size to a smaller one.
|
||||||
|
*/
|
||||||
|
smallComposeTextSize: false,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Reverts design changes to the 'View Conversation' and 'Details' links.
|
* Reverts design changes to the 'View Conversation' and 'Details' links.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user