trilium/static/style.css

46 lines
939 B
CSS
Raw Normal View History

2017-06-12 09:04:04 +08:00
.note-editable {
/* This is because with empty content height of editor is 0 and it's impossible to click into it */
min-height: 400px;
overflow: scroll;
2017-06-12 09:04:04 +08:00
}
#top-message {
display: none; /* initial state is hidden */
background-color: #e0e0e0;
color: #333;
2017-06-12 09:04:04 +08:00
padding: 5px;
border-radius: 10px;
2017-08-14 09:42:10 +08:00
}
#error-message {
display: none; /* initial state is hidden */
background-color: red;
color: white;
padding: 5px;
border-radius: 10px;
}
.note-editable p {
padding: 0;
margin: 0;
2017-08-24 11:36:16 +08:00
}
ul.fancytree-container {
width: 290px;
height: 400px;
overflow: auto;
position: relative;
outline: none !important;
2017-08-24 11:36:16 +08:00
}
span.fancytree-node > span.fancytree-icon {
background-position: 0 0;
background-image: url("icons/file.png");
}
span.fancytree-node.fancytree-folder > span.fancytree-icon {
background-position: 0 0;
background-image: url("icons/folder.png");
}