It shouldnāt flash. Maybe you combined too many peopleās CSS and they conflict.
@Erica Any chance this columnbusiness could make it into regular Dynalist?
I am so confused. The idea of columns for nodes sounds neat but I canāt really decipher this post/screenshot. Can anyone make a simpler version?
I love this, but it has some issues that Iām not sure how to resolve myself. Iām curious if you or anyone else can.
If I hover over a sidebar, it reappears as it should. However, if I right click or try to drag a file or folder on the sidebar, then the sidebar will disappear again while the right click or drag actions are still ongoing. This is especially troublesome for dragging, because you need to see all the files.
Any ideas for ways to fix this?
Whose CSS are you referencing?
Sorry, I guess I used the reply feature incorrectly. I was referencing the first post in this thread which used this CSS to make sidebars invisible unless hovered over:
/* Hides all the sidebars and icons until you mouse over them, for max minimalism */
.LeftPaneSlidebarContainer,
.LeftPaneSplitter,
.AppHeader,
.DocumentTools-icon
{
opacity: 0;
}
.LeftPaneSlidebarContainer:hover,
.LeftPaneSplitter:hover,
.AppHeader:hover,
.DocumentTools-icon:hover
{
opacity: 1;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
I never saw an answer to this. Anyone?
.Node-self.is-heading1 { font-size: whatever; }
I may have mis-interpreted the question by Joao. I differentiate ālevelsā and āheadingsā. āLevelsā refers to the hierarchy of the outline:
- level 1
- level 2
- level3
- etc.
- level3
- level 2
āHeadingsā refers to the ability to apply heading1, heading2, or heading3 formatting to any node at any level.
My question: is it possible to differentially format levels?
.Node.is-currentRoot .Node .Node .Node-bullet:before {
content: āāā;
/* level2- diamond /
color: deepskyblue
}
.Node.is-currentRoot .Node .Node-bullet:before {
content: āā ā;
/ level1- big square */
color: blue;
}
Thanks!
Hey, this is a cool thread! Iāve been tweaking my Dynalist CSS for a while now, so hereās what Iāve been working on recently:
/* Custom Background for Better Readability */
body {
background-color: #f4f7f6;
}
/* Modify the Font Style for Titles */
#doc-title {
font-family: āArialā, sans-serif;
font-size: 22px;
font-weight: bold;
color: #333;
}
/* Add some padding to the items to make them feel less cramped */
ul, ol {
padding-left: 20px;
}
/* Style the checked checkbox for better visibility */
input[type=ācheckboxā]:checked {
background-color: #4CAF50;
border-color: #4CAF50;
}
/* Darker color for the completed tasks so they are distinguishable */
li.done {
color: #888;
text-decoration: line-through;
}
/* Change the link color to a more subtle blue */
a {
color: #4A90E2;
}
a:hover {
color: #3c78d8;
}
Iāve been focusing on readability mostly. The background color change has been great for reducing eye strain during long writing sessions. Also, making the checkboxes stand out a bit more and changing the color of completed tasks helps me stay organized.
Has anyone else tried something similar? Would love to see other peopleās setups!