Lets you edit WorkFlowy's note field. Options to change text only (size, font, color, line spacing), background only, or both.
WorkFlowy Note Field Editor by sirksenia
Details
Authorsirksenia
LicenseNo License
Categoryuserstyles
Created
Updated
Size1.5 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name WorkFlowy Note Field Editor
@namespace USK
@author sirksenia
@description `Lets you edit WorkFlowy's note field. Options to change text only (size, font, color, line spacing), background only, or both.
@version 20211210.0.1
@license NO-REDISTRIBUTION
@preprocessor uso
@advanced dropdown custom "Customize:" {
textOnly "Text Only*" <<<EOT
color: /*[[TextColor]]*\/ !important;
font-family: /*[[FontName]]*\/ !important;
font-size: /*[[FontSize]]*\/ !important;
line-height:/*[[LineSpace]]*\/ !important; EOT;
backgroundOnly "Background Only" <<<EOT
background-color: /*[[BackColor]]*\/ !important; EOT;
both "Both" <<<EOT
color: /*[[TextColor]]*\/ !important;
font-family: /*[[FontName]]*\/ !important;
font-size: /*[[FontSize]]*\/ !important;
line-height:/*[[LineSpace]]*\/ !important;
background-color: /*[[BackColor]]*\/ !important; EOT;
}
@advanced range FontSize "Text size: " ['%', 100, 50, 200, 5]
@advanced range LineSpace "Line spacing: " ['px', 24, 10, 30, 1]
@advanced color TextColor "Text color: " black
@advanced select FontName "Font: " ["Sans-Serif", "Serif", "Comic Sans MS", "Consolas", "Courier", "Lucida Console", "Segoe UI*", "Tahoma", "Verdana"]
@advanced color BackColor "Background color: " white
==/UserStyle== */
@-moz-document domain("workflowy.com") {
.notes>.content {
font-family: Segoe UI;
/*[[custom]]*/
}
}