updated demo document with adjusted steel blue theme

This commit is contained in:
zadam 2021-06-26 23:10:03 +02:00
parent 16cc84be99
commit b2148f4a18
5 changed files with 3 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 820 B

After

Width:  |  Height:  |  Size: 5.9 KiB

View file

@ -787,12 +787,12 @@ body {
::-webkit-scrollbar {
width: 12px;
background-color: var(--main-background-color);
}
::-webkit-scrollbar-thumb {
border-radius: 3px;
border: 1px solid var(--scrollbar-border-color);
background-color: var(--main-background-color);
}
::-webkit-scrollbar-corner {

View file

@ -3,6 +3,7 @@
const zipExportService = require('../../services/export/zip');
const singleExportService = require('../../services/export/single');
const opmlExportService = require('../../services/export/opml');
const becca = require('../../becca/becca');
const TaskContext = require("../../services/task_context");
const log = require("../../services/log");

View file

@ -10,6 +10,7 @@ const utils = require('../utils');
const protectedSessionService = require('../protected_session');
const sanitize = require("sanitize-filename");
const fs = require("fs");
const becca = require("../../becca/becca");
const RESOURCE_DIR = require('../../services/resource_dir').RESOURCE_DIR;
const archiver = require('archiver');