2017-06-11 21:04:04 -04: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-15 22:32:30 -04:00
|
|
|
overflow: scroll;
|
2017-06-11 21:04:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#top-message {
|
|
|
|
display: none; /* initial state is hidden */
|
2017-08-16 20:41:41 -04:00
|
|
|
background-color: #e0e0e0;
|
|
|
|
color: #333;
|
2017-06-11 21:04:04 -04:00
|
|
|
padding: 5px;
|
|
|
|
border-radius: 10px;
|
2017-08-13 21:42:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#error-message {
|
|
|
|
display: none; /* initial state is hidden */
|
|
|
|
background-color: red;
|
|
|
|
color: white;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 10px;
|
2017-08-21 21:05:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.note-editable p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2017-06-11 21:04:04 -04:00
|
|
|
}
|