added checkboxes/todo lists and image resize, closes #264, #587

This commit is contained in:
zadam 2019-08-27 19:50:57 +02:00
parent cf5c1c1be1
commit 48a654630f
5 changed files with 15 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

6
package-lock.json generated
View File

@ -2533,9 +2533,9 @@
"integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI="
},
"dayjs": {
"version": "1.8.15",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.8.15.tgz",
"integrity": "sha512-HYHCI1nohG52B45vCQg8Re3hNDZbMroWPkhz50yaX7Lu0ATyjGsTdoYZBpjED9ar6chqTx2dmSmM8A51mojnAg=="
"version": "1.8.16",
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.8.16.tgz",
"integrity": "sha512-XPmqzWz/EJiaRHjBqSJ2s6hE/BUoCIHKgdS2QPtTQtKcS9E4/Qn0WomoH1lXanWCzri+g7zPcuNV4aTZ8PMORQ=="
},
"debug": {
"version": "4.1.1",

View File

@ -28,7 +28,7 @@
"commonmark": "0.29.0",
"cookie-parser": "1.4.4",
"csurf": "1.10.0",
"dayjs": "1.8.15",
"dayjs": "1.8.16",
"debug": "4.1.1",
"ejs": "2.6.2",
"electron-context-menu": "0.14.0",

View File

@ -92,6 +92,7 @@ body.theme-dark .CodeMirror {
body {
/* -- Overrides generic colors. ------------------------------------------------------------- */
--ck-color-base-text: var(--main-text-color);
--ck-color-base-foreground: var(--accented-background-color);
--ck-color-focus-border: var(--main-border-color);
--ck-color-text: var(--main-text-color);
@ -175,6 +176,10 @@ body {
--ck-color-link-default: var(--link-color);
--ck-color-table-focused-cell-background: var(--more-accented-background-color);
/* todo lists */
--ck-color-todo-list-checkmark-border: var(--main-border-color);
}
body {
@ -194,4 +199,8 @@ input, select, textarea {
table td, table th {
color: var(--main-text-color);
}
.ck .todo-list__checkmark {
top: 10px !important;
}