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;
|
2017-08-16 10:32:30 +08:00
|
|
|
overflow: scroll;
|
2017-06-12 09:04:04 +08:00
|
|
|
}
|
|
|
|
|
2017-09-05 09:37:55 +08:00
|
|
|
.note-editable.encrypted {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
|
2017-09-10 00:34:20 +08:00
|
|
|
#noteDetailWrapper {
|
|
|
|
width: 750px;
|
|
|
|
float: left;
|
|
|
|
margin-left: 30px;
|
|
|
|
}
|
|
|
|
|
2017-06-12 09:04:04 +08:00
|
|
|
#top-message {
|
|
|
|
display: none; /* initial state is hidden */
|
2017-08-17 08:41:41 +08:00
|
|
|
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;
|
2017-08-22 09:05:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.note-editable p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2017-08-24 11:36:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.fancytree-container {
|
2017-08-27 23:36:20 +08:00
|
|
|
width: 290px;
|
|
|
|
height: 400px;
|
|
|
|
overflow: auto;
|
|
|
|
position: relative;
|
|
|
|
outline: none !important;
|
2017-08-24 11:36:16 +08:00
|
|
|
}
|
2017-08-27 23:36:20 +08:00
|
|
|
|
2017-08-28 02:39:26 +08:00
|
|
|
/* icons from https://feathericons.com */
|
2017-08-27 23:36:20 +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");
|
|
|
|
}
|
|
|
|
|
2017-09-09 11:14:42 +08:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2017-09-04 06:53:28 +08:00
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow-y: auto;
|
|
|
|
/* prevent horizontal scrollbar */
|
|
|
|
overflow-x: hidden;
|
2017-09-06 10:01:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-11 09:33:39 +08:00
|
|
|
.icon-action:hover {
|
|
|
|
text-decoration: none;
|
2017-09-06 10:01:22 +08:00
|
|
|
}
|
|
|
|
|
2017-09-11 09:33:39 +08:00
|
|
|
#encryptButton, #decryptButton {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#encryptButton img, #decryptButton img {
|
|
|
|
top: -5px;
|
|
|
|
position: relative;
|
2017-09-04 06:53:28 +08:00
|
|
|
}
|