This commit is contained in:
Fovway 2025-11-13 12:32:03 +07:00
parent a37f5cd2d0
commit 3346fae87d
3 changed files with 13 additions and 3 deletions

View File

@ -82,7 +82,7 @@ define(['./workbox-47da91e0'], (function (workbox) { 'use strict';
"revision": "3ca0b8505b4bec776b69afdba2768812"
}, {
"url": "/index.html",
"revision": "0.umqqd7sqgfg"
"revision": "0.rkgg11egm7o"
}], {
"ignoreURLParametersMatching": [/^utm_/, /^fbclid$/]
});

View File

@ -1087,7 +1087,12 @@ export const NoteEditor: React.FC<NoteEditorProps> = ({ onSave }) => {
type="checkbox"
checked={isPrivate}
onChange={(e) => setIsPrivate(e.target.checked)}
style={{ width: "18px", height: "18px", cursor: "pointer" }}
style={{
width: "18px",
height: "18px",
cursor: "pointer",
accentColor: "var(--accent-color, #007bff)",
}}
/>
<span style={{ fontSize: "14px", color: "var(--text-primary, #333)" }}>
Приватная заметка

View File

@ -1566,7 +1566,12 @@ export const NoteItem: React.FC<NoteItemProps> = ({
type="checkbox"
checked={editIsPrivate}
onChange={(e) => setEditIsPrivate(e.target.checked)}
style={{ width: "18px", height: "18px", cursor: "pointer" }}
style={{
width: "18px",
height: "18px",
cursor: "pointer",
accentColor: "var(--accent-color, #007bff)",
}}
/>
<span
style={{