mirror of
https://github.com/zadam/trilium.git
synced 2024-11-13 11:14:58 +08:00
85 lines
No EOL
1.7 KiB
CSS
85 lines
No EOL
1.7 KiB
CSS
.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;
|
|
}
|
|
|
|
.note-editable.encrypted {
|
|
background-color: #eee;
|
|
}
|
|
|
|
#noteDetailWrapper {
|
|
width: 750px;
|
|
float: left;
|
|
margin-left: 30px;
|
|
}
|
|
|
|
#top-message {
|
|
display: none; /* initial state is hidden */
|
|
background-color: #e0e0e0;
|
|
color: #333;
|
|
padding: 5px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
ul.fancytree-container {
|
|
width: 290px;
|
|
height: 400px;
|
|
overflow: auto;
|
|
position: relative;
|
|
outline: none !important;
|
|
}
|
|
|
|
/* icons from https://feathericons.com */
|
|
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");
|
|
}
|
|
|
|
span.fancytree-node.encrypted > span.fancytree-icon {
|
|
background-position: 0 0;
|
|
background-image: url("icons/file-shaded.png");
|
|
}
|
|
|
|
span.fancytree-node.encrypted.fancytree-folder > span.fancytree-icon {
|
|
background-position: 0 0;
|
|
background-image: url("icons/folder-shaded.png");
|
|
}
|
|
|
|
.ui-autocomplete {
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
/* prevent horizontal scrollbar */
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.icon-action:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
#encryptButton, #decryptButton {
|
|
display: none;
|
|
}
|
|
|
|
#encryptButton img, #decryptButton img {
|
|
top: -5px;
|
|
position: relative;
|
|
} |