Too many buttons in interface
Well, it seems that there are too many buttons in WF interface and they drew too much attention to it. Just count - left bar, breadcrumb, show completed checklist, search, settings, board/bullets, star, menu. It should be an option to hide all interface except breadcrumb.
I occasionally found that I am using IA writer rather than Workflowy. Because it allows me to focus on what I write. No interface at all when you don't need it.
-
Custom CSS can fix this:
.starButton, .pageMenu, .itemTypePickerMenu .addChildButton { display: none; }
Will get rid of the buttons
/* SHOW TOOLBAR ONLY ON HOVER */ .header { opacity: 0; } .header:hover { opacity: 1; -webkit-transition-duration: .5s; -moz-transition-duration: .5s; transition-delay: .3s !important; }Will remove top bar - and show on mouse over.
But a focus mode built in would be ideal. -
The easiest way to implement custom CSS is to use WorkFlowy in a browser with an extension like Stylus installed.
Here's my take. This reduces opacity by default (still visible), and transitions to normal on hover.
/* Dim header and page controls */
.header, .pageControls {
opacity: 0.2;
transition: opacity 0.8s;
}
/* Increase opacity on hover */
.pageControls:hover, .header:hover {
opacity: 1;
} -
> Could you comment on how Stylus is different from DropFlowy
DropFlowy:
+ Very light weight, no persistent memory footprint
+ Use your favorite code editor
- Only works on WorkFlowy
- You must reload your WorkFlowy tab after editing your local CSS file
Stylus:
+ works on any website
+ Editing CSS is instantaneous, no reload required
- Persistent memory footprint
btw, I use Live editor for CSS for trying stuff out.
Please sign in to leave a comment.
Comments
18 comments